Skip to content

Commit

Permalink
prepare v1.13.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Sep 3, 2024
1 parent 0cddcd7 commit e3f5d13
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .aux/test_with_lcg
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ CMTCONFIG=$2
source /cvmfs/sft.cern.ch/lcg/views/${LCG}/${CMTCONFIG}/setup.sh
source build/INSTALL/thisostap.sh
cd build
ctest -N && cmake .. -DCMAKE_INSTALL_PREFIX=./INSTALL/ && ctest -j4 -R toys --output-on-failure --test-output-size-failed=5000000
ctest -N && cmake .. -DCMAKE_INSTALL_PREFIX=./INSTALL/ && ctest -j4 --output-on-failure --test-output-size-failed=5000000
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ include(CTest)

set(OSTAP_VERSION_MAJOR 1)
set(OSTAP_VERSION_MINOR 13)
set(OSTAP_VERSION_PATCH 0)
set(OSTAP_VERSION_TWEAK 3)
set(OSTAP_VERSION_PATCH 1)
set(OSTAP_VERSION_TWEAK 0)

set(OSTAP_VERSION ${OSTAP_VERSION_MAJOR}.${OSTAP_VERSION_MINOR}.${OSTAP_VERSION_PATCH}.${OSTAP_VERSION_TWEAK})

Expand Down
2 changes: 2 additions & 0 deletions ReleaseNotes/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# v1.13.1.0

## New features

1. improve all toys machinery: toys, jackknife, bootstrapping and significance
Expand Down
21 changes: 21 additions & 0 deletions ReleaseNotes/v1.13.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# v1.13.1.0

## New features

1. improve all toys machinery: toys, jackknife, bootstrapping and significance
1. extend all tests for toys
1. add brute-force way to delete `RooDataSet` - needed for JAckknife and Bootstrap
1. add argument `delete=False` for `dataset.bootstrap` and `dataset.jackknife` method to delete the dataset
1. add new test `test_fitting_dataset2.py` to test interference of memory and jackknife/bootstraping
1. extend and improve machinery for toys
1. add `std.string` and `std.string_view` into `string_types`
1. improve `attention` printout from `dataset/tree` method `project`

## Backward incompatible

## Bug fixes

1. fix the typo in `ostap/tools/tests/test_tools_reweight3.py`
1. tiny fix for `progress_bar`
1. tiny fix for `ostap.utils.basic.isatty`

4 changes: 2 additions & 2 deletions ostap/fitting/tests/test_fitting_toys_simfit.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def test_toys_simfit_1 () :
## high statistic, low-background "control channel"
mean1 = 2.0
sigma1 = 0.50
NS1 = 1000
NB1 = 250
NS1 = 1000
NB1 = 250

for i in range ( NS1 ) :
v1 = random.gauss( mean1 , sigma1 )
Expand Down
3 changes: 0 additions & 3 deletions ostap/parallel/tests/test_parallel_toys.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,9 +590,6 @@ def test_db () :
title = 'Memory usage for various toys'
table = T.table ( rows , title = title , prefix = '# ' , alignment = 'lc' )
logger.info ( '%s:\n%s' % ( title , table ) )

raise TypeError ('Exception!')



# =============================================================================
Expand Down

0 comments on commit e3f5d13

Please sign in to comment.