Skip to content

Commit 48a758f

Browse files
authored
Run GH actions w/ Python 3.10 (#302)
1 parent c01e98b commit 48a758f

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.6", "3.7", "3.8", "3.9"]
15+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1616
os: [ubuntu-latest]
1717
runs-on: ${{ matrix.os }}
1818
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Dev
44

55
* Switch to Github Actions CI, remove travis-ci.
6-
* Add support for Django 3.2 and Python 3.9
6+
* Add support for Django 3.2 and Python 3.9 & 3.10
77

88
## v2.1.0 - August 22, 2020
99

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ include_trailing_comma = true
1515
[tool.tox]
1616
legacy_tox_ini = """
1717
[tox]
18-
envlist = {py36,py37,py38,py39}-django{220,300,310,320}-{end2end,unittests},py38-lint
18+
envlist = {py36,py37,py38,py39,py310}-django{220,300,310,320}-{end2end,unittests},py38-lint
1919
2020
[gh-actions]
2121
python =
2222
3.6: py36
2323
3.7: py37
2424
3.8: py38, py38-lint
2525
3.9: py39
26+
3.10: py310
2627
2728
[testenv]
2829
deps =

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def get_version():
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
"Framework :: Django :: 2.2",
4748
"Framework :: Django :: 3.0",
4849
"Framework :: Django :: 3.1",

0 commit comments

Comments
 (0)