ialdev-maths 0.2.0__tar.gz → 0.2.2__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.
@@ -1,17 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ialdev-maths
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: iad.maths — histograms, geometry, regression
5
5
  Author: ipcoder
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
- Requires-Dist: ialdev-core
8
+ Requires-Dist: ialdev-core>=0.2.3
9
9
  Requires-Dist: numpy>=1.20.0
10
10
  Requires-Dist: pandas>=1.3.0
11
11
  Requires-Dist: numba>=0.55.0
12
12
  Requires-Dist: scikit-learn>=1.0.0
13
13
  Requires-Dist: pytest>=7.0.0 ; extra == "dev"
14
- Requires-Dist: ialdev-vis ; extra == "dev"
14
+ Requires-Dist: ialdev-vis>=0.2.1 ; extra == "dev"
15
15
  Project-URL: Homepage, https://github.com/ipcoder/ialdev/tree/master/maths
16
16
  Project-URL: Issues, https://github.com/ipcoder/ialdev/issues
17
17
  Project-URL: Repository, https://github.com/ipcoder/ialdev
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
 
5
5
  [project]
6
6
  name = "ialdev-maths"
7
- version = "0.2.0"
7
+ version = "0.2.2"
8
8
  description = "iad.maths — histograms, geometry, regression"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -13,7 +13,7 @@ authors = [
13
13
  {name = "ipcoder"}
14
14
  ]
15
15
  dependencies = [
16
- "ialdev-core",
16
+ "ialdev-core>=0.2.3",
17
17
  "numpy>=1.20.0",
18
18
  "pandas>=1.3.0",
19
19
  "numba>=0.55.0",
@@ -23,7 +23,7 @@ dependencies = [
23
23
  [project.optional-dependencies]
24
24
  dev = [
25
25
  "pytest>=7.0.0",
26
- "ialdev-vis",
26
+ "ialdev-vis>=0.2.1",
27
27
  ]
28
28
 
29
29
  [project.urls]
@@ -1198,11 +1198,11 @@ class StatGather2D:
1198
1198
  case 'range':
1199
1199
  slc = np.s_[self.samplers[0].below:-2, self.samplers[1].below:-2]
1200
1200
  if self.hist.ndim == 3:
1201
- slc = np.s_[:, *slc]
1201
+ slc = (slice(None),) + slc
1202
1202
  case 'nonan':
1203
1203
  slc = np.s_[self.samplers[0].below:-1, self.samplers[1].below:-1]
1204
1204
  if self.hist.ndim == 3:
1205
- slc = np.s_[:, *slc]
1205
+ slc = (slice(None),) + slc
1206
1206
  case None | False:
1207
1207
  pass
1208
1208
  case _:
File without changes