Skip to content

Commit

Permalink
modernize, remove python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lociii committed Aug 22, 2023
1 parent e5413a0 commit 59490a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
strategy:
matrix:
python-version: [
"3.8",
"3.9",
"3.10"
"3.10",
"3.11"
]
django-version: [
'>=3.2<3.3',
'>=4.0<4.1',
'>=3.2<4.0',
'>=4.1<4.2',
'>=4.2<5.0'
]

steps:
Expand Down
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
History
=======

Unreleased
==========

* Remove support for Python < 3.9
* Remove support for Django 4.0
* Modernize build and test environment

4.0.1 (2023-01-02)
==================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def get_version(*file_paths):
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
test_suite='tests',
tests_require=test_requirements,
Expand Down

0 comments on commit 59490a4

Please sign in to comment.