Skip to content

Commit

Permalink
Drop tested support for legacy Python and Django versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
charettes committed Apr 13, 2024
1 parent 15386e6 commit cedf076
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
9 changes: 4 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ envlist =
mypy,
pypi,
py37-3.2-{sqlite,postgresql},
py{38,39}-{3.2,4.1,4.2}-{sqlite,postgresql},
py310-{3.2,4.1,4.2,5.0,main}-{sqlite,postgresql},
py311-{4.1,4.2,5.0,main}-{sqlite,postgresql},
py{38,39}-{3.2,4.2}-{sqlite,postgresql},
py310-{3.2,4.2,5.0,main}-{sqlite,postgresql},
py311-{4.2,5.0,main}-{sqlite,postgresql},

[gh-actions]
python =
Expand Down Expand Up @@ -40,9 +40,8 @@ commands =
deps =
coverage
3.2: Django>=3.2,<4
4.1: Django>=4.1,<4.2
4.2: Django>=4.2,<5
5.0: https://github.com/django/django/archive/stable/5.0.x.tar.gz
5.0: Django>=5,<5.1
main: https://github.com/django/django/archive/main.tar.gz
postgresql: psycopg2-binary
ignore_outcome =
Expand Down

0 comments on commit cedf076

Please sign in to comment.