From fa89cd8da81cbe56a85da43cfe4129a96d1bccfe Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 23 Mar 2014 02:10:03 -0400 Subject: [PATCH] Python 3.4 is good. --- CHANGELOG | 2 +- docs/changelog.rst | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a396f82..b4d810c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ v0.4 (unreleased): -- Added support for Python 2.6. +- Added support for Python 2.6 and 3.4. - Template.has() is now passed 'ignore_empty=False' by default instead of True. This fixes a bug when adding parameters to templates with empty fields, and is a breaking change if you rely on the default behavior. diff --git a/docs/changelog.rst b/docs/changelog.rst index 82f06c4..4a52f33 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,7 +7,7 @@ v0.4 Unreleased (`changes `__): -- Added support for Python 2.6. +- Added support for Python 2.6 and 3.4. - :py:meth:`.Template.has` is now passed *ignore_empty=False* by default instead of *True*. This fixes a bug when adding parameters to templates with empty fields, **and is a breaking change if you rely on the default diff --git a/setup.py b/setup.py index eaccdb2..5a45902 100644 --- a/setup.py +++ b/setup.py @@ -64,6 +64,7 @@ setup( "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", "Topic :: Text Processing :: Markup" ], )