Skip to content

Commit

Permalink
Merge pull request #128 from academic-innovation/drop-py38
Browse files Browse the repository at this point in the history
Drop support for Python 3.8
  • Loading branch information
michaelwheeler authored Jan 11, 2025
2 parents 811c612 + e74db6b commit 78b17f1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
django: ["4.2.0", "5.0.0", "5.1.0"]
exclude:
- django: "5.0.0"
python: "3.8"
- django: "5.0.0"
python: "3.9"
- django: "5.1.0"
python: "3.8"
- django: "5.1.0"
python: "3.9"
- django: "4.2.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Installation and Setup
Requirements
------------

* Python >= 3.8
* Django >= 3.2
* Python >= 3.9
* Django >= 4.2

Installation
------------
Expand Down
4 changes: 1 addition & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,10 @@ def types(session):
"python,django",
[
(python, django)
for python in ("3.8", "3.9", "3.10", "3.11", "3.12", "3.13")
for python in ("3.9", "3.10", "3.11", "3.12", "3.13")
for django in ("4.2.0", "5.0.0", "5.1.0")
if (python, django)
not in [
("3.8", "5.0.0"),
("3.8", "5.1.0"),
("3.9", "5.0.0"),
("3.9", "5.1.0"),
("3.13", "4.2.0"),
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
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

[options]
python_requires = >=3.8
python_requires = >=3.9
install_requires =
django >= 4.2
pylti1p3 >= 2.0
Expand Down

0 comments on commit 78b17f1

Please sign in to comment.