Skip to content

Commit

Permalink
Fix release to include pybloomfilter.c
Browse files Browse the repository at this point in the history
  • Loading branch information
axiak committed Nov 27, 2012
1 parent 9618c88 commit cbb7a93
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
kwargs = {}

try:
if '--no-cython' in sys.argv:
raise ImportError()
import Cython
sys.path.insert(0, os.path.join(here, 'fake_pyrex'))
except ImportError:
Expand All @@ -21,6 +23,9 @@
from setuptools import setup, Extension

try:
if '--no-cython' in sys.argv:
sys.argv.remove('--no-cython')
raise ImportError()
from Cython.Distutils import build_ext
print "info: Building from Cython"
ext_files.append("src/pybloomfilter.pyx")
Expand Down Expand Up @@ -50,7 +55,7 @@

setup(
name = 'pybloomfiltermmap',
version = "0.3.9",
version = "0.3.11",
author = "Michael Axiak, Rob Stacey",
author_email = "mike@axiak.net",
url = "http://github.com/axiak/pybloomfiltermmap/",
Expand Down
20 changes: 10 additions & 10 deletions src/pybloomfilter.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/pybloomfilter.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 3, 8)
VERSION = (0, 3, 11)
AUTHOR = "Michael Axiak"

__VERSION__ = VERSION
Expand Down

0 comments on commit cbb7a93

Please sign in to comment.