Skip to content

Commit

Permalink
Well that was silly - setup.py was trying to import indexed_gzip to get
Browse files Browse the repository at this point in the history
the version number before it had been compiled. Version number now set
directly in setup.py, can't be bothered with another method.
  • Loading branch information
pauldmccarthy committed Jun 16, 2016
1 parent 2707601 commit 210eb85
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions indexed_gzip.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ to gzip files.
"""


__version__ = '0.1'


from libc.stdio cimport (SEEK_SET,
FILE,
fdopen)
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
from Cython.Build import cythonize


import indexed_gzip as igzip

setup(
name='indexed_gzip',
version=str(igzip.__version__),
version='0.1',
author='Paul McCarthy',
author_email='[email protected]',
description='Fast random access of gzip files in Python',
Expand Down

0 comments on commit 210eb85

Please sign in to comment.