Skip to content

Commit

Permalink
removing support for unsupported Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dennybiasiolli committed Oct 8, 2024
1 parent f270d83 commit 70e3d87
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## [2.0.0]

### Potentially BREAKING CHANGES

- dropped support for python 3.8

## [1.2.0]

### Changed
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = django-reversion-rest-framework
version = 1.2.0
version = 2.0.0
author = Denny Biasiolli
author_email = [email protected]
description = A package for adding a django-reversion history endpoint to django-rest-framework ModelViewSet
Expand All @@ -22,7 +22,7 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >=3.8
python_requires = >=3.9
install_requires =
django-reversion>=4
djangorestframework>=3
Expand Down

0 comments on commit 70e3d87

Please sign in to comment.