histcmp 0.6.4__tar.gz → 0.6.6__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 (24) hide show
  1. {histcmp-0.6.4 → histcmp-0.6.6}/PKG-INFO +2 -2
  2. {histcmp-0.6.4 → histcmp-0.6.6}/pyproject.toml +2 -2
  3. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/root_helpers.py +1 -1
  4. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/__init__.py +0 -0
  5. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/checks.py +0 -0
  6. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/cli.py +0 -0
  7. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/compare.py +0 -0
  8. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/config.py +0 -0
  9. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/console.py +0 -0
  10. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/github.py +0 -0
  11. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/icons.py +0 -0
  12. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/plot.py +0 -0
  13. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/report.py +0 -0
  14. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/alpinejs.intersect.min.js +0 -0
  15. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/alpinejs.min.js +0 -0
  16. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/bulma/bulma-rtl.css +0 -0
  17. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/bulma/bulma-rtl.css.map +0 -0
  18. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/bulma/bulma-rtl.min.css +0 -0
  19. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/bulma/bulma.css +0 -0
  20. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/bulma/bulma.css.map +0 -0
  21. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/bulma/bulma.min.css +0 -0
  22. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/static/css/main.css +0 -0
  23. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/templates/base.html.j2 +0 -0
  24. {histcmp-0.6.4 → histcmp-0.6.6}/src/histcmp/templates/main.html.j2 +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: histcmp
3
- Version: 0.6.4
3
+ Version: 0.6.6
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Paul Gessinger
7
7
  Author-email: hello@paulgessinger.com
8
- Requires-Python: >=3.9,<3.12
8
+ Requires-Python: >=3.9
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.9
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "histcmp"
3
- version = "0.6.4"
3
+ version = "0.6.6"
4
4
  description = ""
5
5
  authors = ["Paul Gessinger <hello@paulgessinger.com>"]
6
6
  license = "MIT"
@@ -12,7 +12,7 @@ packages = [
12
12
  histcmp = 'histcmp.cli:app'
13
13
 
14
14
  [tool.poetry.dependencies]
15
- python = ">=3.9,<3.12"
15
+ python = ">=3.9"
16
16
  typer = "^0.9.0"
17
17
  wasabi = "^0.9.0"
18
18
  rich = "^13.4.2"
@@ -90,7 +90,7 @@ def _process_axis_title(s):
90
90
 
91
91
  def convert_axis(axis):
92
92
  if axis.IsVariableBinSize():
93
- print("variable")
93
+ # print("variable")
94
94
  edges = [axis.GetBinLowEdge(b) for b in range(1, axis.GetNbins() + 1)]
95
95
  edges.append(axis.GetBinUpEdge(axis.GetNbins()))
96
96
  axis = hist.axis.Variable(edges, name=_process_axis_title(axis.GetTitle()))
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes