Skip to content

Commit

Permalink
fix missing bzip2.h on PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Nov 23, 2019
1 parent 26551ef commit e3fe5a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include LICENSE
include README.md
include ratarmount.py
include bzip2.cpp
include bzip2.h
2 changes: 1 addition & 1 deletion ratarmount.py
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ def parseArgs( args = None ):
def cli( args = None ):
tmpArgs = sys.argv if args is None else args
if '--version' in tmpArgs or '-v' in tmpArgs:
print( "ratarmount 0.3.0" )
print( "ratarmount 0.3.1" )
return

args = parseArgs( args )
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name = 'ratarmount',
version = '0.3.0',
version = '0.3.1',

description = 'Random Access Read-Only Tar Mount',
url = 'https://github.com/mxmlnkn',
Expand Down

0 comments on commit e3fe5a4

Please sign in to comment.