diff --git a/CHANGES.md b/CHANGES.md index cf63318..c9bf8b0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,14 @@ Changelog ========= +0.0.8 (Apr 20th 2016) +------------------ + +### A few fixes for compatibility with python3 and using tox for testing + +- Tested on pthon 2.7, 3.4 and 3.5 + + 0.0.7 (Jan 18th 2016) ------------------ diff --git a/setup.py b/setup.py index 9d30b69..59c124c 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.0.7' +version = '0.0.8' setup( @@ -23,6 +23,8 @@ 'Intended Audience :: Developers', 'Natural Language :: English', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5' ], test_suite='runtests.run_tests', )