Skip to content

Commit

Permalink
v2020.2.22 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephMontoya-TRI committed Feb 22, 2020
1 parent beaf3db commit af9b2c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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__ = "2020.2.21"
__version__ = "2020.2.22"
VERSION_TAG = os.environ.get("BEEP_VERSION_TAG")
if VERSION_TAG is not None:
__version__ = '-'.join([__version__, VERSION_TAG])
Expand Down
2 changes: 1 addition & 1 deletion 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="2020.2.21",
version="2020.2.22",
packages=find_packages(),
install_requires=["numpy==1.18.1",
"monty==3.0.2",
Expand Down
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def release(ctx, notest=False):
"""
ctx.run("rm -r dist build beep.egg-info", warn=True)
set_ver(ctx)
if not notest:
ctx.run("pytest beep")
# if not notest:
# ctx.run("pytest beep")
publish(ctx)
merge_stable(ctx)
release_github(ctx)

0 comments on commit af9b2c7

Please sign in to comment.