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.
Files changed (30) hide show
  1. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/PKG-INFO +3 -1
  2. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pyproject.toml +5 -1
  3. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/LICENSE +0 -0
  4. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/README.md +0 -0
  5. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/__init__.py +0 -0
  6. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/auxiliary.py +0 -0
  7. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/backus_gilbert.py +0 -0
  8. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/checks/hilbert_space.py +0 -0
  9. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/checks/linear_operators.py +0 -0
  10. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/checks/nonlinear_operators.py +0 -0
  11. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/direct_sum.py +0 -0
  12. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/forward_problem.py +0 -0
  13. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/gaussian_measure.py +0 -0
  14. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/hilbert_space.py +0 -0
  15. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/inversion.py +0 -0
  16. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_bayesian.py +0 -0
  17. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_forms.py +0 -0
  18. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_operators.py +0 -0
  19. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_optimisation.py +0 -0
  20. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/linear_solvers.py +0 -0
  21. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/nonlinear_forms.py +0 -0
  22. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/nonlinear_operators.py +0 -0
  23. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/nonlinear_optimisation.py +0 -0
  24. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/parallel.py +0 -0
  25. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/plot.py +0 -0
  26. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/random_matrix.py +0 -0
  27. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/__init__.py +0 -0
  28. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/circle.py +0 -0
  29. {pygeoinf-1.3.2 → pygeoinf-1.3.3}/pygeoinf/symmetric_space/sphere.py +0 -0
  30. {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.2
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.2"
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