Skip to content

Commit

Permalink
Drop Python 3.6 support, which is no longer supported by JAX.
Browse files Browse the repository at this point in the history
(change 2 of 2)

Fixes #222

PiperOrigin-RevId: 410856130
  • Loading branch information
rosshemsley authored and OptaxDev committed Nov 18, 2021
1 parent c893e05 commit 46fbf8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.7", "3.8", "3.9"]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion optax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
from optax._src.wrappers import MultiSteps
from optax._src.wrappers import MultiStepsState

__version__ = "0.0.91"
__version__ = "0.1.0"

__all__ = (
"adabelief",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _parse_requirements(path):
tests_require=_parse_requirements(
os.path.join(_CURRENT_DIR, 'requirements', 'requirements-test.txt')),
zip_safe=False, # Required for full installation.
python_requires='>=3.6',
python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
Expand Down

0 comments on commit 46fbf8a

Please sign in to comment.