Skip to content

Commit

Permalink
v2020.2.21 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephMontoya-TRI committed Feb 21, 2020
1 parent a9fbef6 commit 69e3212
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions beep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Versioning. The python code version is frequently tagged
# with a commit hash from the repo, which is supplied via
# an environment variable by the integration build procedure
__version__ = "2019.09.19"
__version__ = "2020.2.21"
VERSION_TAG = os.environ.get("BEEP_VERSION_TAG")
if VERSION_TAG is not None:
__version__ = '-'.join([__version__, VERSION_TAG])
Expand Down Expand Up @@ -85,4 +85,4 @@
logger.addHandler(hdlr)

logger.setLevel('DEBUG')
logger.propagate = False
logger.propagate = False
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(name="beep",
url="https://github.com/ToyotaResearchInstitute/beep",
version="02.21.2020",
version="2020.2.21",
packages=find_packages(),
install_requires=["numpy==1.18.1",
"monty==3.0.2",
Expand Down Expand Up @@ -59,4 +59,4 @@
"materials", "battery", "chemistry", "science",
"electrochemistry", "energy", "AI", "artificial intelligence"
],
)
)
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 69e3212

Please sign in to comment.