pastastore 1.12.0__tar.gz → 1.12.1__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 (36) hide show
  1. {pastastore-1.12.0 → pastastore-1.12.1}/PKG-INFO +1 -1
  2. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/base.py +1 -1
  3. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/util.py +2 -0
  4. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/version.py +1 -1
  5. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore.egg-info/PKG-INFO +1 -1
  6. {pastastore-1.12.0 → pastastore-1.12.1}/LICENSE +0 -0
  7. {pastastore-1.12.0 → pastastore-1.12.1}/docs/conf.py +0 -0
  8. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/__init__.py +0 -0
  9. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/connectors.py +0 -0
  10. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/datasets.py +0 -0
  11. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/extensions/__init__.py +0 -0
  12. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/extensions/accessor.py +0 -0
  13. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/extensions/hpd.py +0 -0
  14. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/plotting.py +0 -0
  15. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/store.py +0 -0
  16. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/styling.py +0 -0
  17. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/typing.py +0 -0
  18. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/validator.py +0 -0
  19. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore/yaml_interface.py +0 -0
  20. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore.egg-info/SOURCES.txt +0 -0
  21. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore.egg-info/dependency_links.txt +0 -0
  22. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore.egg-info/requires.txt +0 -0
  23. {pastastore-1.12.0 → pastastore-1.12.1}/pastastore.egg-info/top_level.txt +0 -0
  24. {pastastore-1.12.0 → pastastore-1.12.1}/pyproject.toml +0 -0
  25. {pastastore-1.12.0 → pastastore-1.12.1}/readme.md +0 -0
  26. {pastastore-1.12.0 → pastastore-1.12.1}/setup.cfg +0 -0
  27. {pastastore-1.12.0 → pastastore-1.12.1}/tests/conftest.py +0 -0
  28. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_001_import.py +0 -0
  29. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_002_connectors.py +0 -0
  30. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_003_pastastore.py +0 -0
  31. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_004_yaml.py +0 -0
  32. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_005_maps_plots.py +0 -0
  33. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_006_benchmark.py +0 -0
  34. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_007_hpdextension.py +0 -0
  35. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_008_stressmodels.py +0 -0
  36. {pastastore-1.12.0 → pastastore-1.12.1}/tests/test_009_parallel.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pastastore
3
- Version: 1.12.0
3
+ Version: 1.12.1
4
4
  Summary: Tools for managing Pastas time series models.
5
5
  Author: D.A. Brakenhoff
6
6
  Maintainer-email: "D.A. Brakenhoff" <d.brakenhoff@artesia-water.nl>, "R. Calje" <r.calje@artesia-water.nl>, "M.A. Vonk" <m.vonk@artesia-water.nl>
@@ -665,7 +665,7 @@ class BaseConnector(ABC, ConnectorUtil):
665
665
  self._add_item(libname, series, name, metadata=metadata)
666
666
  self._clear_cache(libname)
667
667
  elif (libname == "oseries" and self._item_exists("oseries_models", name)) or (
668
- libname == "stresses" and self._item_exists("stresses_model", name)
668
+ libname == "stresses" and self._item_exists("stresses_models", name)
669
669
  ):
670
670
  raise SeriesUsedByModel(
671
671
  f"Time series with name '{name}' is used by a model! "
@@ -567,6 +567,8 @@ def compare_models(
567
567
  counter += 1
568
568
 
569
569
  for p in ml.parameters.index:
570
+ df.loc[f"param: {p} (pmin)", f"model {i}"] = ml.parameters.loc[p, "pmin"]
571
+ df.loc[f"param: {p} (pmax)", f"model {i}"] = ml.parameters.loc[p, "pmax"]
570
572
  df.loc[f"param: {p} (init)", f"model {i}"] = ml.parameters.loc[p, "initial"]
571
573
  df.loc[f"param: {p} (opt)", f"model {i}"] = ml.parameters.loc[p, "optimal"]
572
574
 
@@ -8,7 +8,7 @@ from packaging.version import parse as parse_version
8
8
  PASTAS_VERSION = parse_version(ps.__version__)
9
9
  PASTAS_GEQ_150 = PASTAS_VERSION >= parse_version("1.5.0")
10
10
 
11
- __version__ = "1.12.0"
11
+ __version__ = "1.12.1"
12
12
 
13
13
 
14
14
  def show_versions(optional=False) -> None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pastastore
3
- Version: 1.12.0
3
+ Version: 1.12.1
4
4
  Summary: Tools for managing Pastas time series models.
5
5
  Author: D.A. Brakenhoff
6
6
  Maintainer-email: "D.A. Brakenhoff" <d.brakenhoff@artesia-water.nl>, "R. Calje" <r.calje@artesia-water.nl>, "M.A. Vonk" <m.vonk@artesia-water.nl>
File without changes
File without changes
File without changes
File without changes
File without changes