Skip to content
Closed
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v1
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ Targets & testing

The codebase is targeted and tested against:

* Django 3.2.x against Python 3.8, 3.9, 3.10
* Django 4.2.x against Python 3.8, 3.9, 3.10, 3.11, 3.12
* Django 5.2.x against Python 3.10, 3.11, 3.12, 3.13
* Django 4.2.x against Python 3.10, 3.11, 3.12
* Django 5.2.x against Python 3.10, 3.11, 3.12, 3.13, 3.14
* Django 6.0.x against Python 3.12, 3.13, 3.14

To run the tests against all target environments, install `tox
<https://testrun.org/tox/latest/>`_ and then execute the command::
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = [
]
description = "Group accounts for Django"
readme = "README.rst"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = {text = "BSD License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand All @@ -15,15 +15,15 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"Django>=3.2",
"Django>=4.2",
"django-extensions>=2.0.8",
]
dynamic = ["version"]
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ classifiers =
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
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
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: Implementation :: CPython
Development Status :: 5 - Production/Stable

Expand All @@ -30,7 +31,7 @@ packages = find:
package_dir=
=src
install_requires =
Django>=3.2.0
Django>=4.2.0
django-extensions>=2.0.8
python_requires = >=3.8

Expand Down
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[tox]
envlist =
flake8,
py{39,310}-django{32},
py{39}-django{42},
py{310}-django{32}
py{310,311,312}-django{42}
py{310,311,312,313}-django{52}
py{310,311,312,313,314}-django{52}
py{312,313,314}-django{60}

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314

[build-system]
build-backend = "hatchling.build"
Expand All @@ -24,16 +24,16 @@ setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/organizations
commands = pytest {posargs} --cov=organizations
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13
py314: python3.14
deps =
hatch>=1.7.0
django32: Django>=3.2,<4
django42: Django>=4.2,<5
django52: Django>=5.2,<6
django42: Django>=4.2.8,<5 # Django 4.2.8 is required for Python 3.12 support
django52: Django>=5.2.8,<6 # Django 5.2.8 is required for Python 3.14 support
django60: Django>=6.0,<6.1
extras = tests

[testenv:flake8]
Expand Down
Loading