Skip to content

Commit

Permalink
fix: update numpy to 1.21.0 and add numpy 1.26 for newer versions of …
Browse files Browse the repository at this point in the history
…python (#64)

* fix: update numpy to 1.21.0
	- include numpy 1.26 for newer versions of python

* chore: add python 3.10 to the python-version testing matrix

* chore: increase timeout for executeprocessor

* chore: change timeout back to original

---------

Co-authored-by: Pratyush Singh <[email protected]>
Co-authored-by: Pratyush Singh <[email protected]>
  • Loading branch information
3 people authored Oct 12, 2023
1 parent a418033 commit e35c6e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
scikit-learn~=1.2.2
numpy<=1.20.0
numpy~=1.21.0 ; python_version <= "3.9"
numpy~=1.26.0 ; python_version > "3.9"
pandas~=1.4.3
tabulate
matplotlib
Expand Down

0 comments on commit e35c6e9

Please sign in to comment.