From 4ed9500f00c02d2429f1e0aaa236c28db0d23a8b Mon Sep 17 00:00:00 2001 From: Val Neekman Date: Sun, 31 Mar 2019 10:14:44 -0400 Subject: Add Python 3.7 Support (#77) * enable raw re pattern * conditional text_unidecode install * update readme, changelog, manifest * update ci * readme * drop test for py 2.6 and 3.3 * clean up readme * readme * add support user-specific replacements (#66) thx * clean up, up version * add text-unidecode option as extra * Upgrade Unidecode, add text-unidecode as extra option (#71) * Add replacements option (#67) * add text-unidecode option as extra * remove req.txt files * Optional Extra Requirements (#72) * Add replacements option (#67) * Upgrade Unidecode, add text-unidecode as extra option (#71) * Add replacements option (#67) * add text-unidecode option as extra * remove req.txt files * use text-unidecode as primary decoding package * add dev reqs * up version * add pypy3.5 test --- .travis.yml | 1 + CHANGELOG.md | 3 +++ slugify/__init__.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 695c4b9..c821af2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ python: - "3.6" - "3.7" - "pypy2.7-6.0" + - "pypy3.5-6.0" install: - pip install pip -U diff --git a/CHANGELOG.md b/CHANGELOG.md index a426d10..82ed7ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.0.2 + - Add official support of Py 3.7 + ## 3.0.1 - Add test.py to manifest diff --git a/slugify/__init__.py b/slugify/__init__.py index 3ad56fe..0859113 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.1' +__version__ = '3.0.2' -- cgit v1.2.1