Skip to content

Commit 2f9d4eb

Browse files
authored
Remove references to premium primitives (#2674)
* Remove references to premium primitives * add release note * remove other prims from docs
1 parent d78c9a4 commit 2f9d4eb

File tree

5 files changed

+4
-35
lines changed

5 files changed

+4
-35
lines changed

.github/workflows/install_test.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,10 @@ jobs:
5050
- name: Test by importing packages
5151
run: |
5252
python -c "import alteryx_open_src_update_checker"
53-
python -c "import premium_primitives"
54-
python -c "from premium_primitives import PolarityScore"
55-
python -c "from featuretools.primitives import PolarityScore"
56-
python -c "from featuretools.primitives import CountryCodeToContinent"
5753
python -c "from featuretools_sql import DBConnector"
5854
- name: Check package conflicts
5955
run: |
6056
python -m pip check
6157
- name: Verify extra_requires commands
6258
run: |
63-
python -m pip install "unpacked_sdist/[nlp,spark,updater,sql,premium]"
59+
python -m pip install "unpacked_sdist/[nlp,spark,updater,sql]"

docs/source/api_reference.rst

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -312,27 +312,6 @@ Time Series Transform Primitives
312312
RollingTrend
313313

314314

315-
.. currentmodule:: premium_primitives
316-
317-
.. autosummary::
318-
:nosignatures:
319-
320-
Natural Language Processing Primitives
321-
--------------------------------------
322-
Natural Language Processing primitives create features for textual data. For more information on how to use and install these primitives, see `here <https://github.com/alteryx/premium_primitives>`__.
323-
324-
Primitives in standard install
325-
******************************
326-
.. autosummary::
327-
:toctree: generated/
328-
329-
DiversityScore
330-
LSA
331-
PartOfSpeechCount
332-
PolarityScore
333-
StopwordCount
334-
335-
336315
Feature methods
337316
---------------
338317
.. currentmodule:: featuretools.feature_base

docs/source/install.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ Be sure to install [Scala and Spark](#scala-and-spark) if you want to use Spark
2929
```console
3030
$ python -m pip install "featuretools[complete]"
3131
```
32-
```{tab} Premium Primitives
33-
```console
34-
$ python -m pip install "featuretools[premium]"
35-
```
3632
```{tab} Dask
3733
```console
3834
$ python -m pip install "featuretools[dask]"

docs/source/release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ v1.29.0 Feb 16, 2024
2626
* Remove woodwork, pyarrow, numpy, and pandas pins for spark installation (:pr:`2661`)
2727
* Documentation Changes
2828
* Update Featuretools logo to display properly in dark mode (:pr:`2632`)
29+
* Remove references to premium primitives while release isnt possible (:pr:`2674`)
2930
* Testing Changes
3031
* Update tests for compatibility with new versions of ``holidays`` (:pr:`2636`)
3132
* Update ruff to 0.1.6 and use ruff linter/formatter (:pr:`2639`)

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ updater = [
8080
tsfresh = [
8181
"featuretools-tsfresh-primitives >= 1.0.0",
8282
]
83-
premium = [
84-
"premium_primitives @ git+https://github.com/alteryx/premium_primitives.git@99e42b78e163abb0519d65184027515923a94576",
85-
]
8683
autonormalize = [
8784
"autonormalize >= 2.0.1",
8885
]
@@ -106,7 +103,7 @@ docs = [
106103
"myst-parser == 0.18.0",
107104
"autonormalize >= 2.0.1",
108105
"click >= 7.0.0",
109-
"featuretools[dask,spark,test,premium]",
106+
"featuretools[dask,spark,test]",
110107
]
111108
dev = [
112109
"ruff >= 0.1.6",
@@ -115,7 +112,7 @@ dev = [
115112
"featuretools[docs,dask,spark,test]",
116113
]
117114
complete = [
118-
"featuretools[autonormalize,premium,sklearn,dask,spark,sql,tsfresh,updater]",
115+
"featuretools[autonormalize,sklearn,dask,spark,sql,tsfresh,updater]",
119116
]
120117

121118
[tool.setuptools]

0 commit comments

Comments
 (0)