From 512a714df6b036db82ec835f02058250d731ba7b Mon Sep 17 00:00:00 2001 From: Dan Jacob Date: Wed, 6 Jan 2021 22:24:42 +0200 Subject: [PATCH] Setup fixes --- CHANGES.md | 4 ++++ setup.py | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 92e949e..cc256fd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +## [0.0.14] - 2021-1-6 + +Dependency bugfix + ## [0.0.13] - 2021-1-6 Added type hinting, tidy up of mixin class inheritance. diff --git a/setup.py b/setup.py index 89b280a..dbf4515 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # Third Party Libraries from setuptools import setup -version = "0.0.13" +version = "0.0.14" setup( name="django-turbo-response", @@ -15,7 +15,8 @@ long_description_content_type="text/markdown", license="MIT", python_requires=">=3.8", - requires=["django (>=3.1)", "typing_extensions"], + requires=["django (>=3.1)"], + install_requires=["typing_extensions"], packages=["turbo_response"], package_dir={"": "src"}, classifiers=[