Skip to content

Commit

Permalink
add Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
serl committed Oct 12, 2021
1 parent c6d344c commit d62017f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
django-version: [2.2, 2.2.8, 3.0, 3.1, 3.2]
exclude:
- python-version: 3.5
Expand All @@ -22,11 +22,19 @@ jobs:
django-version: 3.2
- python-version: 3.8
django-version: 2.2
- python-version: 3.10
django-version: 2.2
- python-version: 3.10
django-version: 2.2.8
- python-version: 3.10
django-version: 3.0
- python-version: 3.10
django-version: 3.1

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)

0 comments on commit d62017f

Please sign in to comment.