-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Well that was silly - setup.py was trying to import indexed_gzip to get
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
1 parent
2707601
commit 210eb85
Showing
2 changed files
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,6 @@ to gzip files. | |
""" | ||
|
||
|
||
__version__ = '0.1' | ||
|
||
|
||
from libc.stdio cimport (SEEK_SET, | ||
FILE, | ||
fdopen) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|