Skip to content
Snippets Groups Projects
Verified Commit 9120f2f3 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Allow Django 5.0, drop support for Django <4.2 and bump version to 0.6

parent 14b26a2a
No related branches found
No related tags found
1 merge request!12Allow Django 5.0, drop support for Django <4.2 and bump version to 0.6
...@@ -7,6 +7,19 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/>`__ ...@@ -7,6 +7,19 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
and this project adheres to `Semantic and this project adheres to `Semantic
Versioning <http://semver.org/>`__. Versioning <http://semver.org/>`__.
0.6
---
Changed
~~~~~~~
* Allow Django 5.0
Removed
~~~~~~~
* Drop support for Django versions <4.2
0.5.3 0.5.3
----- -----
......
[tool.poetry] [tool.poetry]
name = "calendarweek" name = "calendarweek"
version = "0.5.3" version = "0.6"
description = "Utilities for working with calendar weeks in Python and Django" description = "Utilities for working with calendar weeks in Python and Django"
authors = ["Dominik George <nik@naturalnet.de>", "Jonathan Weth <git@jonathanweth.de>"] authors = ["Dominik George <nik@naturalnet.de>", "Jonathan Weth <git@jonathanweth.de>"]
license = "Apache-2.0" license = "Apache-2.0"
...@@ -20,8 +20,8 @@ classifiers = [ ...@@ -20,8 +20,8 @@ classifiers = [
] ]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7" python = "^3.10"
Django = {version = ">=2.2, <5.0", optional = true} Django = {version = ">=4.2, <6.0", optional = true}
[tool.poetry.extras] [tool.poetry.extras]
django = ["Django"] django = ["Django"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment