Skip to content

Commit 135576d

Browse files
committed
👷 Fixed #4 -- Added Django 3.2.14 LTS Support
1 parent b099cf3 commit 135576d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

django_ptpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.1"
1+
__version__ = "1.0.2"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django_ptpython"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "PtPython as default Django shell."
55
authors = ["Reganto <tell.reganto@gmail.com>"]
66
license = "Apache-2.0"
@@ -31,7 +31,7 @@ classifiers = [
3131

3232
[tool.poetry.dependencies]
3333
python = "^3.8"
34-
django = "^4.0"
34+
django = "^3.2.14"
3535
ptpython = "^3.0"
3636

3737
[tool.poetry.dev-dependencies]

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
class TestVersion(unittest.TestCase):
77
def test_django_ptpython_version(self):
8-
assert __version__ == "1.0.0"
8+
assert __version__ == "1.0.2"

0 commit comments

Comments
 (0)