Skip to content

Commit

Permalink
Restrict numpy to <2.0.0 (#41)
Browse files Browse the repository at this point in the history
* Restrict numpy to <2.0.0

* update release notes

* no need to force reinstall featuretools for release test
  • Loading branch information
thehomebrewnerd authored Jun 20, 2024
1 parent 9f2df22 commit c259c8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/unit_tests_with_latest_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 5 additions & 3 deletions release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===================
Expand Down

0 comments on commit c259c8f

Please sign in to comment.