Skip to content

Commit 3d764f7

Browse files
committed
Added support for py311
1 parent d068f9e commit 3d764f7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python: ['3.8', '3.9', '3.10']
20+
python: ['3.8', '3.9', '3.10', '3.11']
2121
steps:
2222
- uses: actions/checkout@v2
2323
- uses: actions/setup-python@v2

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest]
18-
python: ['3.8', '3.9', '3.10']
18+
python: ['3.8', '3.9', '3.10', '3.11']
1919
steps:
2020
- uses: actions/checkout@v2
2121
- uses: actions/setup-python@v2

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
project = detect_secrets
33
# These should match the ci python env list
4-
envlist = py{38,39,310},mypy
4+
envlist = py{38,39,310,311},mypy
55
skip_missing_interpreters = true
66

77
[testenv]

0 commit comments

Comments
 (0)