pygeoinf 1.3.2__tar.gz → 1.3.3__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.
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/PKG-INFO +3 -1
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pyproject.toml +5 -1
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/LICENSE +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/README.md +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/__init__.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/auxiliary.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/backus_gilbert.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/checks/hilbert_space.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/checks/linear_operators.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/checks/nonlinear_operators.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/direct_sum.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/forward_problem.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/gaussian_measure.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/hilbert_space.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/inversion.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_bayesian.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_forms.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_operators.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_optimisation.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_solvers.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/nonlinear_forms.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/nonlinear_operators.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/nonlinear_optimisation.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/parallel.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/plot.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/random_matrix.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/__init__.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/circle.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/sphere.py +0 -0
- {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/symmetric_space.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pygeoinf
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
4
4
|
Summary: A package for solving geophysical inference and inverse problems
|
|
5
5
|
License: BSD-3-Clause
|
|
6
6
|
License-File: LICENSE
|
|
@@ -13,10 +13,12 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.14
|
|
15
15
|
Provides-Extra: sphere
|
|
16
|
+
Requires-Dist: Cartopy (>=0.23.0,<0.24.0) ; extra == "sphere"
|
|
16
17
|
Requires-Dist: joblib (>=1.5.2,<2.0.0)
|
|
17
18
|
Requires-Dist: matplotlib (>=3.0.0)
|
|
18
19
|
Requires-Dist: numpy (>=1.26.0)
|
|
19
20
|
Requires-Dist: pyqt6 (>=6.0.0)
|
|
21
|
+
Requires-Dist: pyshtools (>=4.0.0) ; extra == "sphere"
|
|
20
22
|
Requires-Dist: scipy (>=1.16.1)
|
|
21
23
|
Description-Content-Type: text/markdown
|
|
22
24
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pygeoinf"
|
|
3
|
-
version = "1.3.
|
|
3
|
+
version = "1.3.3"
|
|
4
4
|
description = "A package for solving geophysical inference and inverse problems"
|
|
5
5
|
authors = ["David Al-Attar and Dan Heathcote"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -14,6 +14,10 @@ matplotlib = ">=3.0.0"
|
|
|
14
14
|
pyqt6 = ">=6.0.0"
|
|
15
15
|
joblib = "^1.5.2"
|
|
16
16
|
|
|
17
|
+
# Define optional dependencies WITH versions
|
|
18
|
+
pyshtools = { version = ">=4.0.0", optional = true }
|
|
19
|
+
Cartopy = { version = "^0.23.0", optional = true }
|
|
20
|
+
|
|
17
21
|
[tool.poetry.extras]
|
|
18
22
|
sphere = ["pyshtools", "Cartopy"]
|
|
19
23
|
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|