Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit be1882e

Browse filesBrowse files
committed
Start supporting Python 3.10
1 parent e93b6de commit be1882e
Copy full SHA for be1882e

File tree

4 files changed

+4
-3
lines changed
Filter options

4 files changed

+4
-3
lines changed

‎.github/workflows/python-testing.yml

Copy file name to clipboardExpand all lines: .github/workflows/python-testing.yml
+1-1Lines 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

‎pyproject.toml

Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines 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

Copy file name to clipboardExpand all lines: setup.cfg
+1Lines 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

Copy file name to clipboardExpand all lines: tox.ini
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.