Skip to content

Commit

Permalink
fix string quoting in init
Browse files Browse the repository at this point in the history
  • Loading branch information
ljwolf committed Sep 22, 2022
1 parent 88c9ae1 commit 29f2cb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cenpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.0post3"
__version__ = "1.0.1"
__author__ = "Levi John Wolf [email protected]"

from . import explorer
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
with open(init, "r") as initfile:
firstline = initfile.readline()
init_version = firstline.split("=")[-1].strip()
init_version = init_version.replace("'", "")
init_version = init_version.replace('"', '')

with open(os.path.join(basepath, "README.rst"), "r") as readme:
long_description = readme.readlines()
Expand Down

0 comments on commit 29f2cb6

Please sign in to comment.