From 50cea703f4d7865c5b3f1d5027e7369af7068c49 Mon Sep 17 00:00:00 2001 From: Alex Gr?nholm Date: Tue, 14 Jan 2014 11:06:23 +0200 Subject: Fixed files missing from the source distribution --- CHANGES | 6 ++++++ MANIFEST.in | 5 +++++ docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in diff --git a/CHANGES b/CHANGES index 1e75eaa..4418f07 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +2.1.6 +===== + +- Fixed a problem with files missing from the source distribution + + 2.1.5 ===== diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..52860d0 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +recursive-include docs * +include *.py +include tox.ini +include CHANGES +include LICENSE diff --git a/docs/conf.py b/docs/conf.py index 124cd51..5cea44c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,9 +45,9 @@ copyright = u'2009-2011, Brian Quinlan' # built documents. # # The short X.Y version. -version = '2.1.3' +version = '2.1.6' # The full version, including alpha/beta/rc tags. -release = '2.1.3' +release = '2.1.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 16ea890..79be06c 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except ImportError: from distutils.core import setup setup(name='futures', - version='2.1.5', + version='2.1.6', description='Backport of the concurrent.futures package from Python 3.2', author='Brian Quinlan', author_email='brian@sweetapp.com', -- cgit v1.2.1