Skip to content

Commit

Permalink
v2021.7.21.18 release
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickherring-TRI committed Jul 21, 2021
1 parent f9b6cf7 commit 5509a93
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@


v2021.7.21.18
-------------
* Adds CV_time and CV_current summary stats - Thanks Dan Cogswell!
* Tolerances for CV segment extraction are now input variables.
* Adds dtypes for CV_time and CV_current.
* CV time stat now set to None for cycles which don't have charge steps.
* Adds CV_time and CV_current as summary stats, and a helper function to extract the CV portion of charge.
* Converts test_time from float32 to float64. It can get large enough that decimal points are truncated with float32, producing data points with exactly the same test_time.
* Add file copy to test so that generation can run automatically
* Working version of intracell features - thanks Patrick Asinger!

v2021.7.21.14
-------------
* use correct test file and cycle_index column
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__ = "2021.7.21.14"
__version__ = "2021.7.21.18"
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 beep/tests/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

BIG_FILE_TESTS = os.environ.get("BEEP_BIG_TESTS", False) == "True"
SKIP_MSG = "Tests requiring large files with diagnostic cycles are disabled, set BIG_FILE_TESTS=True to run full tests"
SKIP_MSG = "Tests requiring large files with diagnostic cycles are disabled, set BEEP_BIG_TESTS=True to run full tests"
TEST_DIR = os.path.dirname(os.path.abspath(__file__))
TEST_FILE_DIR = os.path.join(TEST_DIR, "test_files")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

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

0 comments on commit 5509a93

Please sign in to comment.