Skip to content

Commit

Permalink
Setup fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danjac committed Jan 6, 2021
1 parent a592bcc commit 512a714
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Third Party Libraries
from setuptools import setup

version = "0.0.13"
version = "0.0.14"

setup(
name="django-turbo-response",
Expand All @@ -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=[
Expand Down

0 comments on commit 512a714

Please sign in to comment.