Skip to content

Commit

Permalink
update package name and version admin task
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephMontoya-TRI committed Feb 22, 2020
1 parent 8211b59 commit beaf3db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

setup(name="beep-ep",
setup(name="beep",
url="https://github.com/ToyotaResearchInstitute/beep",
version="2020.2.21",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def set_ver(ctx):
lines = []
with open("beep/__init__.py", "rt") as f:
for l in f:
if "__version__" in l:
if l.startswith("__version__"):
lines.append('__version__ = "%s"' % NEW_VER)
else:
lines.append(l.rstrip())
Expand Down

0 comments on commit beaf3db

Please sign in to comment.