Skip to content

Commit dd8f5f3

Browse files
authored
Merge pull request #347 from python-semver/feature/tests-for-py310
Start supporting Python 3.10
2 parents e93b6de + 4d2df08 commit dd8f5f3

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.github/workflows/python-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
max-parallel: 5
5151
matrix:
52-
python-version: [3.6, 3.7, 3.8, 3.9]
52+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
5353

5454
steps:
5555
- uses: actions/checkout@v1

changelog.d/347.trivial.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python 3.10 in GitHub Action and other config files.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[tool.black]
1111
line-length = 88
12-
target-version = ['py36', 'py37', 'py38']
12+
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
1313
# diff = true
1414
exclude = '''
1515
(

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers =
3030
Programming Language :: Python :: 3.7
3131
Programming Language :: Python :: 3.8
3232
Programming Language :: Python :: 3.9
33+
Programming Language :: Python :: 3.10
3334
Topic :: Software Development :: Libraries :: Python Modules
3435
license = BSD
3536

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
checks
4-
py{36,37,38,39}
4+
py{36,37,38,39,310}
55
isolated_build = True
66

77
[gh-actions]
@@ -10,7 +10,7 @@ python =
1010
3.7: py37
1111
3.8: py38
1212
3.9: py39
13-
# 3.10: py310
13+
3.10: py310
1414

1515

1616
[testenv]

0 commit comments

Comments
 (0)