Skip to content

Commit

Permalink
Merge tag 'v0.2.1' into develop
Browse files Browse the repository at this point in the history
Fix setup.py script exception
  • Loading branch information
ylogx committed Jun 13, 2017
2 parents adc6948 + d1c2ed8 commit 1780716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


def get_version():
return '0.2.0'
return '0.2.1'


def get_requirements():
Expand All @@ -31,7 +31,7 @@ def get_long_description():
if os.path.isfile(generated_rst_file):
os.remove(generated_rst_file)
except (IOError, ImportError) as e:
raise e
# raise e
with open('README.md') as fhan:
long_description = fhan.read()
return long_description
Expand Down

0 comments on commit 1780716

Please sign in to comment.