Skip to content

Commit

Permalink
[REF] Change setup to use old numpy version for python <3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mccwdev committed Jul 6, 2023
1 parent 5a06154 commit 19309ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

strategy:
matrix:
python: ["3.9", "3.10", "3.11"]
python: ["3.8", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
'ecdsa>=0.17;platform_system=="Windows"',
'pycryptodome>=3.14.1',
'SQLAlchemy>=1.4.28',
'numpy==1.19.5;python_version<"3.8"',
'numpy>=1.22.0;python_version>="3.8"'
'numpy==1.19.5;python_version<"3.9"',
'numpy>=1.22.0;python_version>="3.9"'
]

kwargs['install_requires'] = install_requires
Expand Down

0 comments on commit 19309ed

Please sign in to comment.