atlas-ftag-tools 0.1.16__tar.gz → 0.1.16.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/PKG-INFO +1 -1
  2. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/atlas_ftag_tools.egg-info/PKG-INFO +1 -1
  3. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/__init__.py +1 -1
  4. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/wps/discriminant.py +1 -1
  5. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/MANIFEST.in +0 -0
  6. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/README.md +0 -0
  7. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/atlas_ftag_tools.egg-info/SOURCES.txt +0 -0
  8. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/atlas_ftag_tools.egg-info/dependency_links.txt +0 -0
  9. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/atlas_ftag_tools.egg-info/entry_points.txt +0 -0
  10. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/atlas_ftag_tools.egg-info/requires.txt +0 -0
  11. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/atlas_ftag_tools.egg-info/top_level.txt +0 -0
  12. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/cuts.py +0 -0
  13. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/flavour.py +0 -0
  14. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/flavours.yaml +0 -0
  15. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/git_check.py +0 -0
  16. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/hdf5/__init__.py +0 -0
  17. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/hdf5/h5move.py +0 -0
  18. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/hdf5/h5reader.py +0 -0
  19. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/hdf5/h5split.py +0 -0
  20. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/hdf5/h5utils.py +0 -0
  21. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/hdf5/h5writer.py +0 -0
  22. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/mock.py +0 -0
  23. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/region.py +0 -0
  24. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/sample.py +0 -0
  25. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/transform.py +0 -0
  26. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/vds.py +0 -0
  27. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/ftag/wps/working_points.py +0 -0
  28. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/pyproject.toml +0 -0
  29. {atlas-ftag-tools-0.1.16 → atlas-ftag-tools-0.1.16.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: atlas-ftag-tools
3
- Version: 0.1.16
3
+ Version: 0.1.16.1
4
4
  Summary: ATLAS Flavour Tagging Tools
5
5
  Author: Sam Van Stroud, Philipp Gadow
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: atlas-ftag-tools
3
- Version: 0.1.16
3
+ Version: 0.1.16.1
4
4
  Summary: ATLAS Flavour Tagging Tools
5
5
  Author: Sam Van Stroud, Philipp Gadow
6
6
  License: MIT
@@ -1,7 +1,7 @@
1
1
  """atlas-ftag-tools - Common tools for ATLAS flavour tagging software."""
2
2
  from __future__ import annotations
3
3
 
4
- __version__ = "v0.1.16"
4
+ __version__ = "v0.1.16.1"
5
5
 
6
6
 
7
7
  from ftag import hdf5
@@ -58,7 +58,7 @@ def get_discriminant(
58
58
  np.ndarray
59
59
  Array of discriminant values.
60
60
  """
61
- if not isinstance(fx, tuple | list):
61
+ if not isinstance(fx, (tuple, list)):
62
62
  fx = (fx,)
63
63
  tagger_funcs = {
64
64
  "bjets": btag_discriminant,