Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

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"]

steps:
- uses: actions/checkout@v2
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Changelog
#########

next
====

Maintenance
-----------

* Support Python 3.13. (`#63 <https://github.com/clokep/django-render-block/pull/63>`_)
* Drop support for Python 3.8. (`#63 <https://github.com/clokep/django-render-block/pull/63>`_)
* Support Django 5.2. (`#63 <https://github.com/clokep/django-render-block/pull/63>`_)
* Drop support for Django 5.0. (`#63 <https://github.com/clokep/django-render-block/pull/63>`_)

0.10 (July 15, 2024)
====================

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Features
Requirements
============

Django Render Block supports Django 4.2, 5.0, and 5.1 on Python 3.8, 3.9, 3.10,
3.11 and 3.12 (see the Django documentation for which versions of Python are
supported by particular Django versions).
Django Render Block supports Django 4.2, 5.1, and 5.2 on Python 3.9, 3.10, 3.11,
3.12, and 3.13 (see the `Django documentation <https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django>`_
for which versions of Python are supported by particular Django versions).

Examples
========
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ classifiers =
Environment :: Web Environment
Topic :: Internet
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.1
Framework :: Django :: 5.2
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
License :: OSI Approved :: ISC License (ISCL)
project_urls =
Documentation = https://github.com/clokep/django-render-block/blob/main/README.rst
Expand Down
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

[tox]
envlist =
py{38,39,310,311,312}-django42,
# Django 5.0 drops support for Python 3.8 and 3.9.
py{310,311,312}-django{50,51,main},
# Django 4.1.3 adds support for Python 3.11.
py311-django{41,42,main}
# See https://www.djangoproject.com/download/#supported-versions
# See https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
py{39,310,311,312}-django42,
py{310,311,312,313}-django{51,52},
py{312,313}-djangomain
isolated_build = True
skip_missing_interpreters = True

Expand All @@ -18,7 +18,7 @@ commands =
python manage.py test
deps =
Jinja2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
django51: Django>=5.1b1,<5.2
django42: Django>=4.2.8,<4.3
django51: Django>=5.1.3,<5.2
django52: Django>=5.2,<5.3
djangomain: https://codeload.github.com/django/django/zip/main