From 67c16a409063578d38bf69ee345254e67b237206 Mon Sep 17 00:00:00 2001 From: Val Neekman Date: Fri, 20 Sep 2019 12:41:06 -0400 Subject: upgrade to consume the latest version of dependencies --- CHANGELOG.md | 6 +++--- setup.py | 4 ++-- slugify/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96ed05d..cc98d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -## 3.0.3 - - Add Options to readme - - Add more unit tests +## 3.0.4 + - Now supporting text-unidecode>=1.3 + - Now supporting Unidecode>=1.1.1 ## 3.0.2 - Add official support of Py 3.7 diff --git a/setup.py b/setup.py index 9f49764..83fcf63 100755 --- a/setup.py +++ b/setup.py @@ -14,8 +14,8 @@ url = 'https://github.com/un33k/python-slugify' author = 'Val Neekman' author_email = 'info@neekware.com' license = 'MIT' -install_requires = ['text-unidecode==1.3'] -extras_require = {'unidecode': ['Unidecode==1.0.23']} +install_requires = ['text-unidecode>=1.3'] +extras_require = {'unidecode': ['Unidecode>=1.1.1']} classifiers = [ 'Development Status :: 5 - Production/Stable', diff --git a/slugify/__init__.py b/slugify/__init__.py index c351e2e..52a07b4 100644 --- a/slugify/__init__.py +++ b/slugify/__init__.py @@ -3,4 +3,4 @@ from .slugify import * __author__ = 'Val Neekman @ Neekware Inc. [@vneekman]' __description__ = 'A Python slugify application that also handles Unicode' -__version__ = '3.0.3' +__version__ = '3.0.4' -- cgit v1.2.1