Skip to content

Commit

Permalink
Fixed #304
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Dec 4, 2017
1 parent 7a6e168 commit 1641f65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mimesis/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Metadata of Mimesis. Don't modify this file."""

__version__ = '1.0.0'
__version__ = '1.0.1'
__title__ = 'mimesis'
__description__ = 'Mimesis: mock data for developers.'
__url__ = 'https://github.com/lk-geimfari/mimesis'
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@

here = abspath(dirname(__file__))

with open('dev_requirements.txt') as f:
tests_requirements = f.read().splitlines()
try:
with open('dev_requirements.txt') as f:
tests_requirements = f.read().splitlines()
except FileNotFoundError:
tests_requirements = []

# Long description.
with open('PYPI_README.rst', 'r', encoding='utf-8') as f:
Expand Down

0 comments on commit 1641f65

Please sign in to comment.