Skip to content

Commit

Permalink
Merge pull request #775 from claudep/python_vers
Browse files Browse the repository at this point in the history
  • Loading branch information
dulmandakh authored Nov 2, 2024
2 parents 6fc7575 + 0df1039 commit a2c7e57
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Get pip cache dir
id: pip-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
target: [pil, imagemagick, graphicsmagick, redis, wand, dbm]

include:
- python-version: '3.8'
- python-version: '3.9'
target: 'qa'
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Unreleased
==========
* ``THUMBNAIL_STORAGE`` should now be an alias in the Django ``STORAGES`` setting.
The old way of specifying a dotted path to a Storage module is still supported.
* Confirmed support for Python 3.13 (on Django 5.1+).
* Drop support for Python 3.8.

12.11.0
=======
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Requirements

Base requirements
=================
- `Python`_ 3.8+
- `Python`_ 3.9+
- `Django`_
- :ref:`kvstore-requirements`
- :ref:`image-library`
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ authors = [
maintainers = [
{name = "Jazzband", email = "[email protected]"}
]
requires-python = ">= 3.8"
requires-python = ">= 3.9"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics',
'Framework :: Django',
Expand Down
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[gh-actions:env]
DJANGO =
Expand All @@ -23,9 +23,10 @@ TARGET =
[tox]
skipsdist = True
envlist =
py38-qa,
py{38,39,310,311,312}-django{42}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
py{310,311,312}-django{50,51}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
py39-qa,
py{39,310,311,312}-django{42}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
py{310,311,312}-django{50}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
py{310,311,312,313}-django{51}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}

[testenv]
deps =
Expand Down Expand Up @@ -55,7 +56,7 @@ commands =
coverage report -m
coverage xml

[testenv:py38-qa]
[testenv:py39-qa]
skip_install = True
deps =
ruff
Expand Down

0 comments on commit a2c7e57

Please sign in to comment.