Skip to content

Commit

Permalink
Merge pull request #192 from ticosax/maintain
Browse files Browse the repository at this point in the history
Drop support for python3.7 and bring support for django3.12
  • Loading branch information
ticosax authored Dec 10, 2024
2 parents 26e1a65 + 174f935 commit 8be2264
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def readfile(filename):
url="https://github.com/jazzband/django-fsm-log",
license="MIT",
packages=find_packages(exclude=["tests"]),
install_requires=["django>=3.2", "django_fsm>=2", "django_appconf"],
install_requires=["django>=3.2", "django-fsm-2", "django_appconf"],
extras_require={
"testing": [
"pytest",
Expand All @@ -37,17 +37,17 @@ def readfile(filename):
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"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 :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tox]
envlist =
py{37,38,39,310}-dj-3.2
py{38,39,310,311}-dj-4.1
py{310,311}-dj-master
py{38,39,310,311}-dj-4.2
py{310,311,312}-5.0
py{310,311,312}-dj-master

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
usedevelop = true
Expand All @@ -20,6 +20,6 @@ setenv=
DJANGO_SETTINGS_MODULE = tests.settings
PYTHONPATH = {toxinidir}
deps =
dj-3.2: Django>=3.2,<3.3
dj-4.1: Django>=4.1,<4.2
dj-4.2: Django>=4.2,<5
dj-5.0: Django>=5,<5.1
dj-master: https://github.com/django/django/archive/master.tar.gz

0 comments on commit 8be2264

Please sign in to comment.