Skip to content

Commit

Permalink
Python 3.11 support (#370)
Browse files Browse the repository at this point in the history
* build: Run tests on Python 3.11.

Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>

* feat: Add official support for Python 3.11.

Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
  • Loading branch information
seifertm committed Jun 26, 2022
1 parent 860ff51 commit b463f72
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -51,11 +51,11 @@ jobs:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
env:
USING_COVERAGE: 3.7,3.8,3.9,3.10
USING_COVERAGE: 3.7,3.8,3.9,3.10,3.11

strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', 3.11-dev]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -5,6 +5,7 @@ Changelog
UNRELEASED
=================
- Removes `setup.py` since all relevant configuration is present `setup.cfg`. Users requiring an editable installation of pytest-asyncio need to use pip v21.1 or newer. `#283 <https://github.com/pytest-dev/pytest-asyncio/issues/283>`_
- Add support for Python 3.11.

0.18.3 (22-03-25)
=================
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -22,6 +22,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

Topic :: Software Development :: Testing

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 3.14.0
envlist = py37, py38, py39, py310, lint, version-info, pytest-min
envlist = py37, py38, py39, py310, py311, lint, version-info, pytest-min
isolated_build = true
passenv =
CI
Expand Down Expand Up @@ -52,4 +52,5 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11-dev: py311
pypy3: pypy3

0 comments on commit b463f72

Please sign in to comment.