Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for python3.7 and bring support for django3.12 #192

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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