Skip to content

Commit

Permalink
add higher python version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinyu Wang authored and Jinyu Wang committed Sep 16, 2021
1 parent eb0527f commit b01c1ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04, windows-latest, macos-latest]
python-version: [3.6, 3.7]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Install torch on Windows
if: runner.os == 'Windows'
run: |
pip install torch===1.6.0 torchvision===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
pip install torch===1.7.0 torchvision===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html
- name: Install test dependencies
run: |
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,10 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence"],
python_requires=">=3.6,<3.8",
python_requires=">=3.6",
setup_requires=[
"numpy<1.20.0",
],
Expand Down

1 comment on commit b01c1ca

@anukaal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

check #396

Please sign in to comment.