Skip to content

Commit

Permalink
change Python and Django supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pix666 committed Dec 12, 2023
1 parent 7311fc6 commit 38c90d0
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [0.18.0](https://github.com/dldevinc/paper-streamfield/tree/v0.18.0) - 2023-12-12

### ⚠ BREAKING CHANGES

- Dropped support for Python 3.8.
- Dropped support for Django versions below 3.2.
- Added support for Python 3.12.
- Added support for Django 5.0.

## [0.17.1](https://github.com/dldevinc/paper-streamfield/tree/v0.17.1) - 2023-11-07

### Features
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

## Requirements

- Python >= 3.8
- Django >= 2.2
- [paper-admin][paper-admin] >= 6.0
- Python >= 3.9
- Django >= 3.2
- [paper-admin][paper-admin] >= 7.0
- [variations][variations]

## Features
Expand Down
10 changes: 4 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,29 @@ classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
Topic :: Software Development :: Libraries :: Python Modules

[bdist_wheel]
universal = 1

[options]
zip_safe = false
python_requires = >= 3.8
python_requires = >= 3.9
include_package_data = true
install_requires =
Django>=2.2
Django>=3.2
paper-admin>=6.0rc
variations>=0.0.15
Pillow
Expand Down
11 changes: 5 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[tox]
envlist =
py{38,39}-django{22,30,31,32,40,41,42}
py{310}-django{32,40,41,42}
py{311}-django{41,42}
py{39}-django{32,40,41,42}
py{310}-django{32,40,41,42,50}
py{311}-django{41,42,50}
py{312}-django{42,50}

[testenv]
usedevelop = true
Expand All @@ -19,13 +20,11 @@ setenv =

deps =
setuptools
django22: Django==2.2.*
django30: Django==3.0.*
django31: Django==3.1.*
django32: Django==3.2.*
django40: Django==4.0.*
django41: Django==4.1.*
django42: Django==4.2.*
django50: Django==5.0.*
-r{toxinidir}/requirements.txt

extras =
Expand Down

0 comments on commit 38c90d0

Please sign in to comment.