Skip to content

Commit

Permalink
v2020.10.22.16 release
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickherring-TRI committed Oct 22, 2020
1 parent 63ade4f commit 84bb89c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@


v2020.10.22.15
--------------
* Add diagnostic parameters for PHEV cells
* Update interpolation for time axis (TODO: make step specific) (Thanks Chirru Gopal)
* Add documentation and better tutorial (Thanks Alex Dunn)

v2020.10.19.20
--------------
* Change the method for ensuring monotonicity and add testing
Expand Down
2 changes: 1 addition & 1 deletion beep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.10.19.20"
__version__ = "2020.10.22.16"
VERSION_TAG = os.environ.get("BEEP_VERSION_TAG")
if VERSION_TAG is not None:
__version__ = "-".join([__version__, VERSION_TAG])
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
os.path.join(this_dir, "requirements.txt"), PipSession())
pip_requirements_test = parse_requirements(
os.path.join(this_dir, "requirements-test.txt"), PipSession())

reqs = [pii.requirement for pii in pip_requirements]
reqs_test = [pii.requirement for pii in pip_requirements_test]

Expand All @@ -21,7 +22,7 @@

setup(name="beep",
url="https://github.com/TRI-AMDD/beep",
version="2020.10.19.20",
version="2020.10.22.16",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 84bb89c

Please sign in to comment.