Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Django 4.1 #41

Merged
merged 3 commits into from
Oct 18, 2022
Merged
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
7 changes: 5 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
#########

next
====
0.9.2 (October 14, 2022)
========================

Maintenance
-----------
Expand All @@ -15,6 +15,9 @@ Maintenance
and `flake8 <https://flake8.pycqa.org>`_, and `pyupgrade <https://github.com/asottile/pyupgrade>`_.
(`#38 <https://github.com/clokep/django-render-block/pull/38>`_,
`#39 <https://github.com/clokep/django-render-block/pull/39>`_)
* Update to include and run tests for Django 4.1. Contributed by
`Jack Linke <https://github.com/jacklinke>`_.
(`#41 <https://github.com/clokep/django-render-block/pull/41>`_)

0.9.1 (December 15, 2021)
=========================
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Features
Requirements
============

Django Render Block supports Django 2.2, 3.1, 3.2, and 4.0 on Python 3.7, 3.8,
Django Render Block supports Django 2.2, 3.1, 3.2, 4.0, and 4.1 on Python 3.7, 3.8,
3.9, and 3.10 (see the Django documentation for which versions of Python are
supported by particular Django versions).

Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = django-render-block
version = 0.9.1
version = 0.9.2
description = Render a particular block from a template to a string.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
Expand All @@ -19,6 +19,7 @@ classifiers =
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ envlist =
# Django 3.2.9 added support for Python 3.10.
py310-django32,
# Django 4.0 drops support for Python 3.7.
py{38,39,310}-django{40,main}
py{38,39,310}-django{40,41,main}
isolated_build = True
skip_missing_interpreters = True

Expand All @@ -22,4 +22,5 @@ deps =
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
djangomain: https://codeload.github.com/django/django/zip/main