geolysis 0.18.0__tar.gz → 0.19.0__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 (33) hide show
  1. {geolysis-0.18.0 → geolysis-0.19.0}/PKG-INFO +1 -1
  2. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/__init__.py +1 -1
  3. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/_core.py +2 -2
  4. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis.egg-info/PKG-INFO +1 -1
  5. {geolysis-0.18.0 → geolysis-0.19.0}/LICENSE.txt +0 -0
  6. {geolysis-0.18.0 → geolysis-0.19.0}/README.md +0 -0
  7. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/__init__.py +0 -0
  8. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/__init__.py +0 -0
  9. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/__init__.py +0 -0
  10. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/bowles_abc.py +0 -0
  11. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/meyerhof_abc.py +0 -0
  12. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/abc/_cohl/terzaghi_abc.py +0 -0
  13. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/__init__.py +0 -0
  14. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/_core.py +0 -0
  15. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/_terzaghi_ubc.py +0 -0
  16. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/bearing_capacity/ubc/_vesic_ubc.py +0 -0
  17. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/exceptions.py +0 -0
  18. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/foundation.py +0 -0
  19. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/soil_classifier.py +0 -0
  20. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/spt.py +0 -0
  21. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/utils/__init__.py +0 -0
  22. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis/utils/math.py +0 -0
  23. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis.egg-info/SOURCES.txt +0 -0
  24. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis.egg-info/dependency_links.txt +0 -0
  25. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis.egg-info/requires.txt +0 -0
  26. {geolysis-0.18.0 → geolysis-0.19.0}/geolysis.egg-info/top_level.txt +0 -0
  27. {geolysis-0.18.0 → geolysis-0.19.0}/pyproject.toml +0 -0
  28. {geolysis-0.18.0 → geolysis-0.19.0}/setup.cfg +0 -0
  29. {geolysis-0.18.0 → geolysis-0.19.0}/setup.py +0 -0
  30. {geolysis-0.18.0 → geolysis-0.19.0}/tests/test_docs.py +0 -0
  31. {geolysis-0.18.0 → geolysis-0.19.0}/tests/test_foundation.py +0 -0
  32. {geolysis-0.18.0 → geolysis-0.19.0}/tests/test_soil_classifier.py +0 -0
  33. {geolysis-0.18.0 → geolysis-0.19.0}/tests/test_spt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.18.0
3
+ Version: 0.19.0
4
4
  Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
5
5
  Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
6
6
  License: MIT License
@@ -1,5 +1,5 @@
1
1
  from . import bearing_capacity, foundation, soil_classifier, spt
2
2
 
3
- __version__ = "0.18.0"
3
+ __version__ = "0.19.0"
4
4
 
5
5
  __all__ = ["foundation", "soil_classifier", "spt", "bearing_capacity"]
@@ -4,7 +4,6 @@ from typing import Annotated
4
4
 
5
5
  from func_validator import (
6
6
  validate_params,
7
- MustBePositive,
8
7
  MustBeNonNegative,
9
8
  MustBeLessThanOrEqual,
10
9
  )
@@ -58,7 +57,8 @@ class AllowableBearingCapacity(ABC):
58
57
  def tol_settlement(
59
58
  self,
60
59
  tol_settlement: Annotated[
61
- float, MustBePositive, MustBeLessThanOrEqual(25.4)],
60
+ float, MustBeNonNegative, MustBeLessThanOrEqual(25.4)
61
+ ],
62
62
  ):
63
63
  self._tol_settlement = tol_settlement
64
64
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: geolysis
3
- Version: 0.18.0
3
+ Version: 0.19.0
4
4
  Summary: geolysis is an opensource software for geotechnical engineering analysis and modeling.
5
5
  Author-email: Patrick Boateng <boatengpato.pb@gmail.com>
6
6
  License: MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes