Skip to content

Commit a1bc4a9

Browse files
committed
Setup Python 3.10 support
1 parent 9827df7 commit a1bc4a9

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@ jobs:
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v2
25-
- name: Setup Python 3.8
25+
- name: Setup Python
2626
uses: actions/setup-python@v2
27-
with:
28-
python-version: 3.8
2927
- name: Cache PyPI
3028
uses: actions/cache@v2
3129
with:
@@ -76,7 +74,7 @@ jobs:
7674
needs: [lint]
7775
strategy:
7876
matrix:
79-
pyver: [3.6, 3.7, 3.8, 3.9]
77+
pyver: ['3.6', '3.7', '3.8', '3.9', '3.10']
8078
os: [ubuntu, macos, windows]
8179
include:
8280
- pyver: pypy3
@@ -138,18 +136,16 @@ jobs:
138136
steps:
139137
- name: Checkout
140138
uses: actions/checkout@v2
141-
- name: Setup Python 3.8
139+
- name: Setup Python
142140
uses: actions/setup-python@v2
143-
with:
144-
python-version: 3.8
145141
- name: Install dependencies
146142
run:
147143
python -m pip install -U pip wheel
148144
- name: Make dists
149145
run:
150146
python setup.py sdist bdist_wheel
151147
- name: Release
152-
uses: aio-libs/create-release@master
148+
uses: aio-libs/create-release@v1.2.2
153149
with:
154150
changes_file: CHANGES.rst
155151
name: aiosignal

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def read(f):
4343
'Programming Language :: Python :: 3.7',
4444
'Programming Language :: Python :: 3.8',
4545
'Programming Language :: Python :: 3.9',
46+
'Programming Language :: Python :: 3.10',
4647
'Development Status :: 5 - Production/Stable',
4748
'Operating System :: POSIX',
4849
'Operating System :: MacOS :: MacOS X',

0 commit comments

Comments
 (0)