Skip to content

Commit 06395d6

Browse files
committed
Support Django >= 4.2, Python > 3.10
1 parent a7ac4b9 commit 06395d6

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ all share password ``password``.
3030
Meta
3131
----
3232

33+
Requires Python >= 3.10, Django >= 4.2
34+
3335
Distributed under the MIT License, see ``LICENSE`` file for more information.
3436

3537
https://github.com/dakrauth/picker

picker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 1, 0)
1+
VERSION = (2, 0, 0)
22
default_app_config = "picker.apps.PickerConfig"
33

44

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
platforms=["any"],
2020
license="MIT License",
2121
install_requires=[
22-
"Django>=4.2,<5.0",
22+
"Django>=4.2",
2323
"django-bootstrap3>=12.0.1",
2424
"Pillow>=6.2.1",
2525
"python-dateutil>=2.8.1",
@@ -42,6 +42,8 @@
4242
"Programming Language :: Python",
4343
"Programming Language :: Python :: 3",
4444
"Programming Language :: Python :: 3.10",
45+
"Programming Language :: Python :: 3.11",
46+
"Programming Language :: Python :: 3.12",
4547
),
4648
packages=find_packages(),
4749
include_package_data=True,

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
isolated_build = true
33
skip_missing_interpreters = true
44
parallel_show_output = true
5-
envlist = py{310,311,312}-django{42}
5+
envlist = py{310,311,312}-django{42,50,51}
66

77
[testenv]
88
skip_install = true
@@ -46,3 +46,5 @@ commands =
4646
[gh-actions]
4747
python =
4848
3.10: py310
49+
3.11: py311
50+
3.12: py312

0 commit comments

Comments
 (0)