Skip to content

Commit c530f07

Browse files
committed
Python 3.10 support
1 parent 6cb2ed0 commit c530f07

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: [3.7, 3.8, 3.9]
17+
python-version: [3.7, 3.8, 3.9, 3.10.0-rc.1]
1818
os: [ubuntu-latest, macos-latest]
1919

2020
steps:
21-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v2
2222
with:
2323
fetch-depth: 50
2424
submodules: true
2525

2626
- name: Check if release PR.
2727
uses: edgedb/action-release/validate-pr@master
28-
continue-on-error: true
2928
id: release
3029
with:
3130
github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}
31+
missing_version_ok: yes
3232
version_file: uvloop/_version.py
3333
version_line_pattern: |
3434
__version__\s*=\s*(?:['"])([[:PEP440:]])(?:['"])
3535
3636
- name: Set up Python ${{ matrix.python-version }}
37-
uses: actions/setup-python@v1
37+
uses: actions/setup-python@v2
3838
if: steps.release.outputs.version == 0
3939
with:
4040
python-version: ${{ matrix.python-version }}
@@ -60,7 +60,7 @@ jobs:
6060
regression-tests:
6161
name: "Regression Tests"
6262
needs: [test]
63-
runs-on: ubuntu-20.04
63+
runs-on: ubuntu-latest
6464

6565
steps:
6666
- run: echo OK

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ def build_extensions(self):
311311
'Programming Language :: Python :: 3.7',
312312
'Programming Language :: Python :: 3.8',
313313
'Programming Language :: Python :: 3.9',
314+
'Programming Language :: Python :: 3.10',
314315
'License :: OSI Approved :: Apache Software License',
315316
'License :: OSI Approved :: MIT License',
316317
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)