Skip to content

Commit

Permalink
feat(#236): Confirm support for python 3.10
Browse files Browse the repository at this point in the history
- also, use python 3.10 for environments in  github actions.
  • Loading branch information
abhiabhi94 authored and Radi85 committed Nov 8, 2021
1 parent f5bfbcd commit 39f6fb6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'

- name: Cache dependencies
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.10'

- name: Ensure latest setuptools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.10'

- name: Ensure latest setuptools
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- 3.7
- 3.8
- 3.9
- '3.10'

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
keywords = django comment comments ajax
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ envlist =
py37-django{21, 22, 30, 31, 32}
py38-django{21, 22, 30, 31, 32, main}
py39-django{21, 22, 30, 31, 32, main}
py310-django{main}

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310

[testenv:docs]
allowlist_externals =
Expand Down

0 comments on commit 39f6fb6

Please sign in to comment.