diff --git a/.github/workflows/install_test.yaml b/.github/workflows/install_test.yaml index 72685290a5..a7eeb17ee8 100644 --- a/.github/workflows/install_test.yaml +++ b/.github/workflows/install_test.yaml @@ -50,14 +50,10 @@ jobs: - name: Test by importing packages run: | python -c "import alteryx_open_src_update_checker" - python -c "import premium_primitives" - python -c "from premium_primitives import PolarityScore" - python -c "from featuretools.primitives import PolarityScore" - python -c "from featuretools.primitives import CountryCodeToContinent" python -c "from featuretools_sql import DBConnector" - name: Check package conflicts run: | python -m pip check - name: Verify extra_requires commands run: | - python -m pip install "unpacked_sdist/[nlp,spark,updater,sql,premium]" + python -m pip install "unpacked_sdist/[nlp,spark,updater,sql]" diff --git a/docs/source/api_reference.rst b/docs/source/api_reference.rst index 2fdcf23a57..0c2683cfd6 100644 --- a/docs/source/api_reference.rst +++ b/docs/source/api_reference.rst @@ -312,15 +312,6 @@ Time Series Transform Primitives RollingTrend -.. currentmodule:: premium_primitives - -.. autosummary:: - :nosignatures: - -Natural Language Processing Primitives --------------------------------------- -Natural Language Processing primitives create features for textual data. For more information on how to use and install these primitives, see `here `__. - Primitives in standard install ****************************** .. autosummary:: diff --git a/docs/source/install.md b/docs/source/install.md index 207a74e6cc..9ef8e1d076 100644 --- a/docs/source/install.md +++ b/docs/source/install.md @@ -29,10 +29,6 @@ Be sure to install [Scala and Spark](#scala-and-spark) if you want to use Spark ```console $ python -m pip install "featuretools[complete]" ``` -```{tab} Premium Primitives -```console -$ python -m pip install "featuretools[premium]" -``` ```{tab} Dask ```console $ python -m pip install "featuretools[dask]" diff --git a/pyproject.toml b/pyproject.toml index c1c75bca94..ec823285a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,9 +80,6 @@ updater = [ tsfresh = [ "featuretools-tsfresh-primitives >= 1.0.0", ] -premium = [ - "premium_primitives @ git+https://github.com/alteryx/premium_primitives.git@99e42b78e163abb0519d65184027515923a94576", -] autonormalize = [ "autonormalize >= 2.0.1", ] @@ -106,7 +103,7 @@ docs = [ "myst-parser == 0.18.0", "autonormalize >= 2.0.1", "click >= 7.0.0", - "featuretools[dask,spark,test,premium]", + "featuretools[dask,spark,test]", ] dev = [ "ruff >= 0.1.6", @@ -115,7 +112,7 @@ dev = [ "featuretools[docs,dask,spark,test]", ] complete = [ - "featuretools[autonormalize,premium,sklearn,dask,spark,sql,tsfresh,updater]", + "featuretools[autonormalize,sklearn,dask,spark,sql,tsfresh,updater]", ] [tool.setuptools]