Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tf & tfp compatibility with python version #186

Merged
merged 11 commits into from
Nov 18, 2021
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [3.9, 3.8, 3.7, 3.6]
python-version: ["3.9", "3.8", "3.7"]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
satra marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -30,7 +29,7 @@ project_urls =
Source Code = https://github.com/neuronets/nobrainer

[options]
python_requires = >= 3.6
python_requires = >= 3.7
install_requires =
click
fsspec
Expand Down