Skip to content

Commit

Permalink
Merge pull request #897 from kevinmarsh/feature/test-against-3.10
Browse files Browse the repository at this point in the history
Python 3.10: run automated tests for Django 4.0.x against Python 3.10
  • Loading branch information
etianen committed Oct 30, 2021
2 parents c55c0eb + e3a7ec7 commit 8b9b141
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
DJANGO_DATABASE_PASSWORD_MYSQL: root
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
django-version:
- '>=4.0a1,<4.1'
- '>=3.2,<4.0'
Expand All @@ -54,7 +54,19 @@ jobs:
- python-version: 3.6
django-version: '>=4.0a1,<4.1'
- python-version: 3.7
django-version: '>=4.0a1,<4.1'
django-version: '>=4.0a1,<4.1'
- python-version: '3.10'
django-version: '>=3.2,<4.0'
- python-version: '3.10'
django-version: '>=3.1,<3.2'
- python-version: '3.10'
django-version: '>=3.0,<3.1'
- python-version: '3.10'
django-version: '>=2.2,<3.0'
- python-version: '3.10'
django-version: '>=2.1,<2.2'
- python-version: '3.10'
django-version: '>=2.0,<2.1'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def read(filepath):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Framework :: Django",
]
)

0 comments on commit 8b9b141

Please sign in to comment.