Skip to content

Commit 8be2264

Browse files
authored
Merge pull request #192 from ticosax/maintain
Drop support for python3.7 and bring support for django3.12
2 parents 26e1a65 + 174f935 commit 8be2264

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/test_suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
strategy:
1111
matrix:
1212
python-version:
13-
- "3.7"
1413
- "3.8"
1514
- "3.9"
1615
- "3.10"
1716
- "3.11"
17+
- "3.12"
1818
steps:
1919
- uses: actions/checkout@v4
2020

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def readfile(filename):
1919
url="https://github.com/jazzband/django-fsm-log",
2020
license="MIT",
2121
packages=find_packages(exclude=["tests"]),
22-
install_requires=["django>=3.2", "django_fsm>=2", "django_appconf"],
22+
install_requires=["django>=3.2", "django-fsm-2", "django_appconf"],
2323
extras_require={
2424
"testing": [
2525
"pytest",
@@ -37,17 +37,17 @@ def readfile(filename):
3737
"Development Status :: 5 - Production/Stable",
3838
"Environment :: Web Environment",
3939
"Framework :: Django",
40-
"Framework :: Django :: 3.2",
41-
"Framework :: Django :: 4.1",
40+
"Framework :: Django :: 4.2",
41+
"Framework :: Django :: 5.0",
4242
"Intended Audience :: Developers",
4343
"License :: OSI Approved :: MIT License",
4444
"Operating System :: OS Independent",
4545
"Programming Language :: Python :: 3",
46-
"Programming Language :: Python :: 3.7",
4746
"Programming Language :: Python :: 3.8",
4847
"Programming Language :: Python :: 3.9",
4948
"Programming Language :: Python :: 3.10",
5049
"Programming Language :: Python :: 3.11",
50+
"Programming Language :: Python :: 3.12",
5151
"Topic :: Software Development :: Libraries :: Python Modules",
5252
],
5353
)

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310}-dj-3.2
4-
py{38,39,310,311}-dj-4.1
5-
py{310,311}-dj-master
3+
py{38,39,310,311}-dj-4.2
4+
py{310,311,312}-5.0
5+
py{310,311,312}-dj-master
66

77
[gh-actions]
88
python =
9-
3.7: py37
109
3.8: py38
1110
3.9: py39
1211
3.10: py310
1312
3.11: py311
13+
3.12: py312
1414

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

0 commit comments

Comments
 (0)