Skip to content

Commit

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


v2021.7.21.14
-------------
* use correct test file and cycle_index column
* update to biologic data file parsing
* update biologic test to new requirements
* Remove RPTdQdVFeature and HPPCRelaxationFeature for futher development
* Update HPPCResistanceFeature - Thanks Xiao Cui!
* adding in some numerical values
* add one numerical value
* add IndexError for except
* in order to pass the test, changed the name of the strings (column names)
* make the fitting better for the initial part
* I changed the resistance features with the current code and also changed the features to be percentage change

v2021.6.3.21
------------
* Update threshold method per Patrick Asinger's suggestion
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.6.3.21"
__version__ = "2021.7.21.14"
VERSION_TAG = os.environ.get("BEEP_VERSION_TAG")
if VERSION_TAG is not None:
__version__ = "-".join([__version__, VERSION_TAG])
Expand Down
7 changes: 4 additions & 3 deletions beep/tests/test_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,8 @@ def test_raw_to_features(self):
import pprint
pprint.pprint(reloaded)

result_list = ['success'] * 7
result_list = ['success'] * 5
self.assertEqual(reloaded['result_list'], result_list)
rpt_df = loadfn(reloaded['file_list'][0])
self.assertEqual(np.round(rpt_df.X['m0_Amp_rpt_0.2C_1'].iloc[0], 6), 0.867371)
res_df = loadfn(reloaded['file_list'][0])
print(res_df.X)
self.assertAlmostEqual(res_df.X['r_c_0s_00'].iloc[0], -0.098951, 6)
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.6.3.21",
version="2021.7.21.14",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit e10bdc9

Please sign in to comment.