Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #373 from PalNilsson/next
Browse files Browse the repository at this point in the history
2.12.8.1
  • Loading branch information
PalNilsson authored Nov 8, 2021
2 parents cfdf370 + f0f797a commit 594047f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PILOTVERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.7.8
2.12.8.1
2 changes: 1 addition & 1 deletion pilot/api/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def get_fitted_data(self, filename, x_name='Time', y_name='pss+swap', precision=
else:
if _slope:
slope = float_to_rounded_string(fit.slope(), precision=precision)
chi2 = float_to_rounded_string(fit.chi2(), precision=0) # decimals are not needed for chi2
chi2 = float_to_rounded_string(fit.chi2(), precision=precision)
if slope != "":
logger.info('current memory leak: %s B/s (using %d data points, chi2=%s)', slope, len(x), chi2)
else:
Expand Down
4 changes: 2 additions & 2 deletions pilot/util/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# Pilot version
RELEASE = '2' # released number should be fixed at 2 for Pilot 2
VERSION = '12' # version number is '1' for first real Pilot 2 release, '0' until then, increased for bigger updates
REVISION = '7' # revision number should be reset to '1' for every new version release, increased for small updates
BUILD = '8' # build number should be reset to '1' for every new development cycle
REVISION = '8' # revision number should be reset to '1' for every new version release, increased for small updates
BUILD = '1' # build number should be reset to '1' for every new development cycle

SUCCESS = 0
FAILURE = 1
Expand Down

0 comments on commit 594047f

Please sign in to comment.