From b533c29cf2a9fca8745425957a5da8d8f84ec69a Mon Sep 17 00:00:00 2001 From: Harald Nezbeda Date: Tue, 14 Jan 2020 18:30:57 +0100 Subject: [PATCH] Fixes installation for older python versions --- CHANGELOG.md | 4 ++++ setup.py | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6fcb88..abd02bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 1.3.2 +- Fixes installation for older python versions + +## 1.3.2 + - Fixes migrations for Django >=2.1 ## 1.3.1 diff --git a/setup.py b/setup.py index 36590fd..d836418 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup, Command -VERSION = '1.3.2' +VERSION = '1.3.3' here = os.path.abspath(os.path.dirname(__file__)) with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: @@ -64,7 +64,6 @@ def run(self): url='https://github.com/anexia-it/django-rest-multitokenauth', author='Harald Nezbeda', author_email='hnezbeda@anexia-it.com', - python_requires='>=3.4.0', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment',