diff --git a/.github/workflows/unit_tests_with_latest_deps.yaml b/.github/workflows/unit_tests_with_latest_deps.yaml index e967f67..3c81271 100644 --- a/.github/workflows/unit_tests_with_latest_deps.yaml +++ b/.github/workflows/unit_tests_with_latest_deps.yaml @@ -36,10 +36,6 @@ jobs: name: Install Featuretools from main run: | python -m pip install --force-reinstall git+https://github.com/alteryx/featuretools - - if: ${{ matrix.featuretools_version == 'release' }} - name: Install latest release of Featuretools - run: | - python -m pip install --force-reinstall featuretools - if: ${{ matrix.python_version == 3.9 && matrix.featuretools_version == 'release'}} name: Generate coverage args run: echo "coverage_args=--cov=premium_primitives --cov-config=../pyproject.toml --cov-report=xml:../coverage.xml" >> $GITHUB_ENV diff --git a/pyproject.toml b/pyproject.toml index 05d9e92..ae2aa27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ keywords = ["feature engineering", "data science", "machine learning"] license = {text = "BSD 3-clause"} requires-python = ">=3.9,<4" dependencies = [ - "numpy >= 1.21.0", + "numpy >= 1.21.0, < 2.0.0", "pandas >= 1.5.0", "featuretools >= 1.5.0", "woodwork >= 0.8.1", diff --git a/release_notes.rst b/release_notes.rst index ca326c1..bd05ef0 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -3,15 +3,17 @@ Release Notes ------------- -.. Future Release - ============== +Future Release +============== * Enhancements * Fixes * Changes + * Restrict numpy to <2.0.0 (:pr:`41`) * Documentation Changes * Testing Changes -.. Thanks to the following people for contributing to this release: + Thanks to the following people for contributing to this release: + :user:`thehomebrewnerd` v0.1.0 May 14, 2024 ===================