From 2e6e631f9f59a68b724c62907cf342c4a5a11e29 Mon Sep 17 00:00:00 2001 From: rsokl Date: Tue, 10 May 2022 10:03:54 -0400 Subject: [PATCH 1/3] add support for python 3.10 --- .github/workflows/tox_run.yml | 4 ++-- README.md | 2 +- setup.cfg | 3 ++- setup.py | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tox_run.yml b/.github/workflows/tox_run.yml index 06efc5b1..a15e38c6 100644 --- a/.github/workflows/tox_run.yml +++ b/.github/workflows/tox_run.yml @@ -17,9 +17,9 @@ jobs: runs-on: ubuntu-latest strategy: - max-parallel: 4 + max-parallel: 5 matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10] fail-fast: false steps: diff --git a/README.md b/README.md index 882e58f2..5cfa84cd 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ PyPI - Python version support + Python version support GitHub Actions diff --git a/setup.cfg b/setup.cfg index 02fe5625..65d6b8b3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,7 @@ omit = src/hydra_zen/_version.py [tox:tox] -envlist = py36, py37, py38, py39, ml-env +envlist = py36, py37, py38, py39, 310, ml-env [gh-actions] python = @@ -31,6 +31,7 @@ python = 3.7: py37 3.8: py38 3.9: py38 + 3.10: py310 [testenv] diff --git a/setup.py b/setup.py index f0608869..e6d10aa9 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering", ] KEYWORDS = ( From 8d3677c65fc74954d477b280ff8ea233769946ab Mon Sep 17 00:00:00 2001 From: rsokl Date: Tue, 10 May 2022 10:07:58 -0400 Subject: [PATCH 2/3] fix env --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 65d6b8b3..f89ff04a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,7 @@ omit = src/hydra_zen/_version.py [tox:tox] -envlist = py36, py37, py38, py39, 310, ml-env +envlist = py36, py37, py38, py39, py310, ml-env [gh-actions] python = From af0d608844a3c95d380132eb380a1e57b3f89148 Mon Sep 17 00:00:00 2001 From: rsokl Date: Tue, 10 May 2022 10:09:17 -0400 Subject: [PATCH 3/3] fix python version --- .github/workflows/tox_run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox_run.yml b/.github/workflows/tox_run.yml index a15e38c6..cb2549f5 100644 --- a/.github/workflows/tox_run.yml +++ b/.github/workflows/tox_run.yml @@ -19,7 +19,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.10] + python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] fail-fast: false steps: