Skip to content

Commit

Permalink
add support for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gruebel committed Oct 1, 2022
1 parent f8f3068 commit 1171275
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["pypy-3.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# pypy3 randomly fails on Windows builds
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="arrow date time datetime timestamp timezone humanize",
project_urls={
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.18.0
envlist = py{py3,36,37,38,39,310}
envlist = py{py3,36,37,38,39,310,311}
skip_missing_interpreters = true

[gh-actions]
Expand All @@ -11,6 +11,7 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11-dev: py311

[testenv]
deps = -r requirements/requirements-tests.txt
Expand Down

0 comments on commit 1171275

Please sign in to comment.