Skip to content

Commit

Permalink
Drop python 3.6 support from v0.1.0, per [JAX deprecation policy](htt…
Browse files Browse the repository at this point in the history
  • Loading branch information
hbq1 authored and ChexDev committed Nov 18, 2021
1 parent 1245d00 commit 75b0f54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.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 chex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
from chex._src.variants import variants


__version__ = "0.0.9"
__version__ = "0.1.0"

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

0 comments on commit 75b0f54

Please sign in to comment.