Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit 12238df

Browse files
committed
Add django 2.2 support
1 parent e90b4ad commit 12238df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pg_partitioning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
A Django extension that supports PostgreSQL 11 time ranges and list partitioning.
33
"""
4-
REQUIRED_DJANGO_VERSION = [(2, 0), (2, 1)]
4+
REQUIRED_DJANGO_VERSION = [(2, 0), (3, 0)]
55
DJANGO_VERSION_ERROR = "django-pg-partitioning isn't available on the currently installed version of Django."
66

77
try:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def rel(*xs):
2828

2929
extra_dependencies = {
3030
"django": [
31-
"Django>=2.0,<2.2"
31+
"Django>=2.0,<3.0"
3232
],
3333
}
3434

0 commit comments

Comments
 (0)