Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/automated-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,17 @@ jobs:
- '3.11' # [EOL] End of Life: 31 Dec 2027
- '3.12' # [EOL] End of Life: 31 Dec 2028
- '3.13' # [EOL] End of Life: 31 Oct 2029
- '3.14' # [EOL] End of Life: 31 Oct 2030
# # MySQL versions to test against
# database:
# # https://endoflife.date/mysql
# - mysql:8.4 # [LTS] Maintained until: 30 Apr 2032
# - mysql:9.7 # [LTS] Maintained until: 21 Apr 2034
# # https://endoflife.date/mariadb and https://mariadb.com/kb/en/mariadb-server-release-dates/
# - mariadb:10.6 # [LTS] Maintained until: 06 Jul 2026
# - mariadb:10.11 # [LTS] Maintained until: 16 Feb 2028
# - mariadb:11.4 # [LTS] Maintained until: 29 May 2029
# - mariadb:11.8 # [LTS] Maintained until: 04 Jun 2028
# - mariadb:12.3 # [LTS] Maintained until: 30 Jun 2029
#
## continue-on-error: ${{ matrix.python-version == '3.12' }}
#
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = { file = "LICENSE" }
authors = [
{ name = "Peter Pfeufer", email = "develop@ppfeufer.de" },
]
requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
Expand All @@ -30,6 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires =
tox>=4.2
env_list =
py{313, 312, 311, 310}
py{314, 313, 312, 311, 310}

[testenv]
deps =
Expand Down
Loading