Skip to content

Commit d30a00b

Browse files
committed
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.
1 parent 7b54ee3 commit d30a00b

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2.7.1
2+
=====
3+
August 25, 2015
4+
5+
Bug Fixes
6+
---------
7+
* Explicitly include extension source files in Manifest
8+
19
2.7.0
210
=====
311
August 25, 2015

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
include setup.py README.rst MANIFEST.in LICENSE ez_setup.py
2+
include cassandra/cmurmur3.c
3+
include cassandra/io/libevwrapper.c
24
include cassandra/*.pyx
35
include cassandra/*.pxd
6+
include cassandra/*.h

cassandra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def emit(self, record):
2323
logging.getLogger('cassandra').addHandler(NullHandler())
2424

2525

26-
__version_info__ = (2, 7, 0, 'post0')
26+
__version_info__ = (2, 7, 1)
2727
__version__ = '.'.join(map(str, __version_info__))
2828

2929

0 commit comments

Comments
 (0)