Skip to content

Commit 88d28f4

Browse files
committed
Use released version of Python 3.10
1 parent 3342e86 commit 88d28f4

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
35-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
35+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636

3737
steps:
3838
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3434
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
36-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
36+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3737

3838
steps:
3939
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
35-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
35+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636

3737
steps:
3838
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ base-classifiers = [
4444
"Topic :: Scientific/Engineering :: Visualization",
4545
"Topic :: Software Development :: Libraries :: Python Modules",
4646
]
47-
python-versions = [ "3.6", "3.7", "3.8", "3.9",]
47+
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10",]
4848
python-implementations = [ "CPython",]
4949
platforms = [ "Windows", "macOS", "Linux",]
5050
license-key = "GPL-2.0-only"

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ python_versions:
2828
- 3.7
2929
- 3.8
3030
- 3.9
31-
- 3.10-dev
31+
- '3.10'
3232

3333
classifiers:
3434
- "Development Status :: 5 - Production/Stable"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
# * check-wheel-contents
1717

1818
[tox]
19-
envlist = py36, py37, py38, py39, py310-dev, mypy, build
19+
envlist = py36, py37, py38, py39, py310, mypy, build
2020
skip_missing_interpreters = True
2121
isolated_build = True
2222
requires =
2323
pip>=21
2424
tox-envlist>=0.2.1
2525

2626
[envlists]
27-
test = py36, py37, py38, py39, py310-dev
27+
test = py36, py37, py38, py39, py310
2828
qa = mypy, lint
2929
cov = py37, coverage
3030

0 commit comments

Comments
 (0)