Skip to content

Commit c259c8f

Browse files
Restrict numpy to <2.0.0 (#41)
* Restrict numpy to <2.0.0 * update release notes * no need to force reinstall featuretools for release test
1 parent 9f2df22 commit c259c8f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/unit_tests_with_latest_deps.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ jobs:
3636
name: Install Featuretools from main
3737
run: |
3838
python -m pip install --force-reinstall git+https://github.com/alteryx/featuretools
39-
- if: ${{ matrix.featuretools_version == 'release' }}
40-
name: Install latest release of Featuretools
41-
run: |
42-
python -m pip install --force-reinstall featuretools
4339
- if: ${{ matrix.python_version == 3.9 && matrix.featuretools_version == 'release'}}
4440
name: Generate coverage args
4541
run: echo "coverage_args=--cov=premium_primitives --cov-config=../pyproject.toml --cov-report=xml:../coverage.xml" >> $GITHUB_ENV

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ keywords = ["feature engineering", "data science", "machine learning"]
2929
license = {text = "BSD 3-clause"}
3030
requires-python = ">=3.9,<4"
3131
dependencies = [
32-
"numpy >= 1.21.0",
32+
"numpy >= 1.21.0, < 2.0.0",
3333
"pandas >= 1.5.0",
3434
"featuretools >= 1.5.0",
3535
"woodwork >= 0.8.1",

release_notes.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@
33
Release Notes
44
-------------
55

6-
.. Future Release
7-
==============
6+
Future Release
7+
==============
88
* Enhancements
99
* Fixes
1010
* Changes
11+
* Restrict numpy to <2.0.0 (:pr:`41`)
1112
* Documentation Changes
1213
* Testing Changes
1314

14-
.. Thanks to the following people for contributing to this release:
15+
Thanks to the following people for contributing to this release:
16+
:user:`thehomebrewnerd`
1517

1618
v0.1.0 May 14, 2024
1719
===================

0 commit comments

Comments
 (0)