From: Steven Tobin Date: Thu, 17 Jan 2019 22:40:07 +0000 (+0000) Subject: fix compatibility with 2.x/3.x X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=148ce14c44555d5ce398d740fe46a0515d2efba8;p=redacted-XKCD-password-generator.git fix compatibility with 2.x/3.x --- diff --git a/README.rst b/README.rst index b14d5c4..70059ba 100644 --- a/README.rst +++ b/README.rst @@ -187,6 +187,7 @@ or setting the appropriate environment variable:: Changelog ========= +- **1.17.2** Compatibility fix for 2.x/3.x - **1.17.1** Fix issue with README and unicode encoding - **1.17.0** Add French, Norwegian, and Portuguese dictionaries. Bugfixes and improvements to tests (WIP). - **1.16.5** Adds title case option for `--case` diff --git a/setup.py b/setup.py index 2c752a0..40fc4a2 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,10 @@ from setuptools import setup +from io import open import sys setup( name='xkcdpass', - version='1.17.1', + version='1.17.2', author='Steven Tobin', author_email='steventtobin@gmail.com', url='https://github.com/redacted/XKCD-password-generator',