Skip to content

Commit

Permalink
build: remove the requirement limitation "numpy <= 1.20.3"
Browse files Browse the repository at this point in the history
PR Closed: #1265
  • Loading branch information
linjiX committed Sep 23, 2022
1 parent 3ca76c4 commit df744b4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install -r requirements.txt
- name: Run pytest
run: pytest tensorbay
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

click >= 7.0.0
filetype >= 1.0.0
numpy >= 1.20.0, <= 1.20.3; python_version >= '3.7'
numpy >= 1.16.0; python_version < '3.7'
numpy >= 1.16.0
numpy-quaternion >= 2021.3.17.16.51.43, <= 2021.11.4.15.26.3
requests >= 2.4.2
requests_toolbelt >= 0.3.0
Expand Down
2 changes: 2 additions & 0 deletions requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ pytest == 6.2.2
pytest-cov == 2.11.1
pytest-mock == 3.5.1
coveralls == 2.2

numpy <= 1.20.3
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ python_requires = >=3.6
install_requires =
click >= 7.0.0
filetype >= 1.0.0
numpy >= 1.20.0, <= 1.20.3; python_version >= '3.7'
numpy >= 1.16.0; python_version < '3.7'
numpy >= 1.16.0
numpy-quaternion >= 2021.3.17.16.51.43, <= 2021.11.4.15.26.3
requests >= 2.4.2
requests_toolbelt >= 0.3.0
Expand Down

0 comments on commit df744b4

Please sign in to comment.