Skip to content

Commit 5b7a343

Browse files
Add Python 3.11-3.13 (#986)
1 parent cba7d3b commit 5b7a343

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
strategy:
4949
matrix:
50-
python-version: ['3.8', '3.9', '3.10', '3.11']
50+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
5151

5252
steps:
5353
- name: Checkout
@@ -56,6 +56,7 @@ jobs:
5656
uses: actions/setup-python@v4
5757
with:
5858
python-version: ${{ matrix.python-version }}
59+
allow-prereleases: true
5960
cache: 'pip'
6061
cache-dependency-path: '**/requirements*.txt'
6162
- name: Install dependencies

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ def read(f):
4343
"Programming Language :: Python :: 3.8",
4444
"Programming Language :: Python :: 3.9",
4545
"Programming Language :: Python :: 3.10",
46+
"Programming Language :: Python :: 3.11",
47+
"Programming Language :: Python :: 3.12",
48+
"Programming Language :: Python :: 3.13",
4649
"Topic :: Internet :: WWW/HTTP",
4750
"Framework :: AsyncIO",
4851
"Framework :: aiohttp",

0 commit comments

Comments
 (0)