-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove deprecated Django imports and make compatible with Django 4.0 * Drop EOL Django 3.1 * Fix tox-gh-actions configuration * Don't require Django to be installed in order to run setup.py * Add explicit install_requires to aid in pip dependency resolution
- Loading branch information
1 parent
421e318
commit a01ceeb
Showing
7 changed files
with
34 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
# Configure which test environments are run for each Github Actions Python version. | ||
[gh-actions] | ||
python = | ||
3.6: py36 | ||
3.7: py37 | ||
3.8: py38 | ||
3.9: py39 | ||
3.10: py310 | ||
3.6: py36-django{22,32} | ||
3.7: py37-django{22,32} | ||
3.8: py38-django{22,32,40} | ||
3.9: py39-django{22,32,40} | ||
3.10: py310-django{22,32,40} | ||
|
||
[tox] | ||
envlist = | ||
py{36,37,38,39,310}-django{22,31,32} | ||
py{36,37}-django{22,32} | ||
py{38,39,310}-django{22,32,40} | ||
|
||
[testenv] | ||
deps = | ||
django22: Django>=2.2,<2.3 | ||
django31: Django>=3.1,<3.2 | ||
django32: Django>=3.2,<3.3 | ||
django22: Django>=2.2,<3.0 | ||
django32: Django>=3.2,<4.0 | ||
django40: Django>=4.0,<4.1 | ||
commands = | ||
{envpython} {toxinidir}/manage.py test solo --settings=solo.tests.settings |