Skip to content

Commit 5232d3a

Browse files
committed
Test on Python 3.11
1 parent abb9c6e commit 5232d3a

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

.github/workflows/python_ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11.0-beta.1'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,7 +31,8 @@ jobs:
3131
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11.0-beta.1", testenvs: "py311-dev,build", experimental: True}
3536

3637
steps:
3738
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.7,3.8,3.9,3.10'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11.0-beta.1'
2727

2828
strategy:
2929
fail-fast: False
@@ -32,7 +32,8 @@ jobs:
3232
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
35-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
35+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36+
- {python-version: "3.11.0-beta.1", testenvs: "py311-dev,build", experimental: True}
3637

3738
steps:
3839
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11.0-beta.1'
2626

2727
strategy:
2828
fail-fast: False
@@ -31,7 +31,8 @@ jobs:
3131
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: True}
34+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11.0-beta.1", testenvs: "py311-dev,build", experimental: True}
3536

3637
steps:
3738
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ base-classifiers = [
3333
"Topic :: Software Development :: Testing :: Unit",
3434
"Typing :: Typed",
3535
]
36-
python-versions = [ "3.7", "3.8", "3.9",]
36+
python-versions = [ "3.7", "3.8", "3.9", "3.10",]
3737
python-implementations = [ "CPython",]
3838
platforms = [ "Windows", "macOS", "Linux",]
3939
license-key = "MIT"

repo_helper.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ python_versions:
2020
- 3.7
2121
- 3.8
2222
- 3.9
23-
- 3.10-dev
23+
- "3.10"
24+
- 3.11-dev
2425

2526
classifiers:
2627
- 'Development Status :: 4 - Beta'

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
# * pytest
1414

1515
[tox]
16-
envlist = py37, py38, py39, py310-dev, mypy, build
16+
envlist = py37, py38, py39, py310, py311-dev, mypy, build
1717
skip_missing_interpreters = True
1818
isolated_build = True
1919
requires =
2020
pip>=21
2121
tox-envlist>=0.2.1
2222

2323
[envlists]
24-
test = py37, py38, py39, py310-dev
24+
test = py37, py38, py39, py310, py311-dev
2525
qa = mypy, lint
2626

2727
[testenv]

0 commit comments

Comments
 (0)