Skip to content

Commit 10e8970

Browse files
authored
Add support for Python 3.10 (#1049)
1 parent 4962416 commit 10e8970

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["pypy-3.7", "3.6", "3.7", "3.8", "3.9", "3.10-dev"]
19+
python-version: ["pypy-3.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
2020
os: [ubuntu-latest, macos-latest, windows-latest]
2121
exclude:
2222
# pypy3 randomly fails on Windows builds
@@ -73,7 +73,7 @@ jobs:
7373

7474
# Upload coverage report
7575
- name: Upload coverage to Codecov
76-
uses: codecov/codecov-action@v1
76+
uses: codecov/codecov-action@v2
7777
with:
7878
file: coverage.xml
7979

@@ -85,10 +85,10 @@ jobs:
8585
- uses: actions/checkout@v2
8686

8787
# Set up Python
88-
- name: Set up Python 3.9
88+
- name: Set up Python 3.10
8989
uses: actions/setup-python@v2
9090
with:
91-
python-version: "3.9"
91+
python-version: "3.10"
9292

9393
# Configure pip cache
9494
- name: Cache pip

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ build36: PYTHON_VER = python3.6
66
build37: PYTHON_VER = python3.7
77
build38: PYTHON_VER = python3.8
88
build39: PYTHON_VER = python3.9
9+
build310: PYTHON_VER = python3.10
910

10-
build36 build37 build38 build39: clean
11+
build36 build37 build38 build39 build310: clean
1112
$(PYTHON_VER) -m venv venv
1213
. venv/bin/activate; \
1314
pip install -U pip setuptools wheel; \

0 commit comments

Comments
 (0)