Skip to content

Commit

Permalink
Add: Add official support for Python 3.10
Browse files Browse the repository at this point in the history
We already run Python 3.10 by default in the CI workflows.
  • Loading branch information
bjoernricks committed Dec 12, 2022
1 parent e8cf1de commit 7ea6551
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down Expand Up @@ -43,7 +44,7 @@ coverage = "^6.5"

[tool.black]
line-length = 80
target-version = ['py37', 'py38', 'py39']
target-version = ['py37', 'py38', 'py39', 'py310']
skip-string-normalization = true
exclude = '''
/(
Expand Down

0 comments on commit 7ea6551

Please sign in to comment.