patch release 2.7.1

resolves an issue where extension sources were not being included in
source distribution

Since the extension list is now dynamic, they are not implicitly
included when processing the manifest template.
This commit is contained in:
Adam Holmberg 2015-08-25 17:31:33 -05:00
parent 7b54ee3e9e
commit d30a00bde6
3 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2.7.1
=====
August 25, 2015
Bug Fixes
---------
* Explicitly include extension source files in Manifest
2.7.0
=====
August 25, 2015

View File

@ -1,3 +1,6 @@
include setup.py README.rst MANIFEST.in LICENSE ez_setup.py
include cassandra/cmurmur3.c
include cassandra/io/libevwrapper.c
include cassandra/*.pyx
include cassandra/*.pxd
include cassandra/*.h

View File

@ -23,7 +23,7 @@ class NullHandler(logging.Handler):
logging.getLogger('cassandra').addHandler(NullHandler())
__version_info__ = (2, 7, 0, 'post0')
__version_info__ = (2, 7, 1)
__version__ = '.'.join(map(str, __version_info__))