Skip to content

Commit

Permalink
version bump 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Nov 10, 2019
1 parent 79fe2cf commit 81416d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pentapy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Provide a central version."""
__version__ = "1.0.3.dev1"
__version__ = "1.0.3"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@


def read(*parts):
"""read file data"""
"""Read file data."""
with codecs.open(os.path.join(HERE, *parts), "r") as fp:
return fp.read()


def find_version(*file_paths):
"""find version without importing module"""
"""Find version without importing module."""
version_file = read(*file_paths)
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M
Expand Down

0 comments on commit 81416d1

Please sign in to comment.