Skip to content

Commit

Permalink
Add support for Django 4.2.
Browse files Browse the repository at this point in the history
This results in the need to remove python versions less than 3.8 otherwise it won't install.
  • Loading branch information
trauty-is-me authored and jheld committed Aug 21, 2023
1 parent 1aac182 commit cdf271d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 29 deletions.
28 changes: 3 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,11 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
django-version: [2.2, 2.2.8, 3.0, 3.1, 3.2, 4.0]
python-version: [3.8, 3.9, '3.10', 3.11]
django-version: [3.2, 4.1, 4.2]
exclude:
- python-version: 3.5
django-version: 2.2.8
- python-version: 3.5
django-version: 3.0
- python-version: 3.5
django-version: 3.1
- python-version: 3.5
- python-version: 3.11
django-version: 3.2
- python-version: 3.5
django-version: 4.0
- python-version: 3.6
django-version: 4.0
- python-version: 3.7
django-version: 4.0
- python-version: 3.8
django-version: 2.2
- python-version: 3.10
django-version: 2.2
- python-version: 3.10
django-version: 2.2.8
- python-version: 3.10
django-version: 3.0
- python-version: 3.10
django-version: 3.1

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"beautifulsoup4",
"django>=2.2,<5.0"
],
python_requires=">=3.5",
python_requires=">=3.8",
license='GPL3',
description='Yet another Django audit log app, hopefully the simplest one.',
long_description=README,
Expand All @@ -37,12 +37,10 @@
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)

0 comments on commit cdf271d

Please sign in to comment.