histcmp 0.6.2__tar.gz → 0.6.4__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.2 → histcmp-0.6.4}/PKG-INFO +5 -5
  2. {histcmp-0.6.2 → histcmp-0.6.4}/pyproject.toml +5 -4
  3. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/compare.py +0 -1
  4. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/__init__.py +0 -0
  5. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/checks.py +0 -0
  6. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/cli.py +0 -0
  7. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/config.py +0 -0
  8. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/console.py +0 -0
  9. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/github.py +0 -0
  10. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/icons.py +0 -0
  11. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/plot.py +0 -0
  12. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/report.py +0 -0
  13. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/root_helpers.py +0 -0
  14. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/alpinejs.intersect.min.js +0 -0
  15. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/alpinejs.min.js +0 -0
  16. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/bulma/bulma-rtl.css +0 -0
  17. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/bulma/bulma-rtl.css.map +0 -0
  18. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/bulma/bulma-rtl.min.css +0 -0
  19. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/bulma/bulma.css +0 -0
  20. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/bulma/bulma.css.map +0 -0
  21. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/bulma/bulma.min.css +0 -0
  22. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/static/css/main.css +0 -0
  23. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/templates/base.html.j2 +0 -0
  24. {histcmp-0.6.2 → histcmp-0.6.4}/src/histcmp/templates/main.html.j2 +0 -0
@@ -1,24 +1,24 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: histcmp
3
- Version: 0.6.2
3
+ Version: 0.6.4
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Paul Gessinger
7
7
  Author-email: hello@paulgessinger.com
8
- Requires-Python: >=3.8,<3.12
8
+ Requires-Python: >=3.9,<3.12
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.8
12
11
  Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Requires-Dist: Jinja2 (>=3.0.3,<4.0.0)
16
15
  Requires-Dist: PyYAML (>=6.0,<7.0)
17
- Requires-Dist: click (==8.0.4)
16
+ Requires-Dist: click (>=8.1.4,<9.0.0)
18
17
  Requires-Dist: hist[plot] (>=2.6.0,<3.0.0)
19
18
  Requires-Dist: matplotlib (>=3.5.1,<4.0.0)
20
19
  Requires-Dist: mplhep (>=0.3.26,<0.4.0)
21
- Requires-Dist: numpy (>=1.23.2,<2.0.0)
20
+ Requires-Dist: numpy (>=1.25.0,<2.0.0)
21
+ Requires-Dist: pandas (>=2.0.3,<3.0.0)
22
22
  Requires-Dist: pydantic (>=1.9.0,<2.0.0)
23
23
  Requires-Dist: requests (>=2.27.1,<3.0.0)
24
24
  Requires-Dist: rich (>=13.4.2,<14.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "histcmp"
3
- version = "0.6.2"
3
+ version = "0.6.4"
4
4
  description = ""
5
5
  authors = ["Paul Gessinger <hello@paulgessinger.com>"]
6
6
  license = "MIT"
@@ -12,20 +12,21 @@ packages = [
12
12
  histcmp = 'histcmp.cli:app'
13
13
 
14
14
  [tool.poetry.dependencies]
15
- python = ">=3.8,<3.12"
15
+ python = ">=3.9,<3.12"
16
16
  typer = "^0.9.0"
17
17
  wasabi = "^0.9.0"
18
18
  rich = "^13.4.2"
19
- numpy = "^1.23.2"
19
+ numpy = "^1.25.0"
20
20
  Jinja2 = "^3.0.3"
21
21
  requests = "^2.27.1"
22
22
  matplotlib = "^3.5.1"
23
23
  hist = {extras = ["plot"], version = "^2.6.0"}
24
24
  pydantic = "^1.9.0"
25
25
  PyYAML = "^6.0"
26
- click = "8.0.4"
26
+ click = "^8.1.4"
27
27
  scipy = "^1.9.1"
28
28
  mplhep = "^0.3.26"
29
+ pandas = "^2.0.3"
29
30
 
30
31
  [tool.poetry.dev-dependencies]
31
32
  black = "^20.8b1"
@@ -11,7 +11,6 @@ from rich.text import Text
11
11
  from rich.panel import Panel
12
12
  from matplotlib import pyplot
13
13
  import numpy
14
- import mplhep.atlas
15
14
 
16
15
  from histcmp.console import console, fail, info, good, warn
17
16
  from histcmp.root_helpers import (
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