Skip to content

Commit adf9e28

Browse files
authored
Add support for Python 3.11 (#333)
1 parent b45e3da commit adf9e28

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Dependabot metadata
1414
id: metadata
15-
uses: dependabot/fetch-metadata@v1.1.1
15+
uses: dependabot/fetch-metadata@v1.3.4
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818
- name: Enable auto-merge for Dependabot PRs

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
needs: lint
5050
strategy:
5151
matrix:
52-
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
52+
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11"]
5353
os: [ubuntu, macos, windows]
5454
include:
5555
- pyver: pypy-3.9
@@ -84,7 +84,7 @@ jobs:
8484
python -m pytest tests
8585
python -m coverage xml
8686
- name: Upload coverage
87-
uses: codecov/codecov-action@v1
87+
uses: codecov/codecov-action@v3
8888
with:
8989
file: ./coverage.xml
9090
flags: unit
@@ -110,7 +110,7 @@ jobs:
110110
run:
111111
python -m build
112112
- name: Make Release
113-
uses: aio-libs/create-release@v1.2.3
113+
uses: aio-libs/create-release@v1.6.6
114114
with:
115115
changes_file: CHANGES.rst
116116
name: async-timeout

CHANGES/333.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for Python 3.11.

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers =
3232
Programming Language :: Python :: 3.8
3333
Programming Language :: Python :: 3.9
3434
Programming Language :: Python :: 3.10
35+
Programming Language :: Python :: 3.11
3536

3637
[options]
3738
python_requires = >=3.7

0 commit comments

Comments
 (0)