From 14611190f5569019296295a451bfbd08d75f889a Mon Sep 17 00:00:00 2001 From: saicheran Date: Wed, 27 Aug 2025 20:26:51 -0400 Subject: [PATCH 1/5] [DEVOPS-545] Update versioning strategy and implement dynamic versioning support --- .gitignore | 3 +++ pyproject.toml | 38 ++++++++++++++++++++++---- recipe.yaml | 6 +++-- simpeg_drivers/__init__.py | 12 ++++++--- tests/version_test.py | 55 ++++++++++++++++++++++++++++---------- 5 files changed, 90 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index 052dc9336..5cb6fcc40 100644 --- a/.gitignore +++ b/.gitignore @@ -144,3 +144,6 @@ dmypy.json # tempory generated files pyproject-sha.toml + +#version ignore +simpeg_drivers/_version.py diff --git a/pyproject.toml b/pyproject.toml index b5e4bb638..ea1d6cb13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,8 @@ -[build-system] -requires = ["poetry-core>=1.8.0"] -build-backend = "poetry.core.masonry.api" +requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning>=1.9.0,<2.0.0"] +build-backend = "poetry_dynamic_versioning.backend" [project] name = "simpeg-drivers" -version = "0.4.0a1" requires-python = '>=3.10,<4.0' description = "Application to run SimPEG inversions with geoh5 files from Geoscience Analyst." @@ -24,7 +22,7 @@ keywords = [ "simpeg", ] readme = "package.rst" -dynamic = ["dependencies", "classifiers"] +dynamic = ["version", "dependencies", "classifiers"] authors = [{ name = "Mira Geoscience", email = "support@mirageoscience.com" }] maintainers = [ { name = "Benjamin Kary", email = "benjamink@mirageoscience.com" }, @@ -64,6 +62,8 @@ include = [ { path = "docs/**/THIRD_PARTY_SOFTWARE.rst" }, ] +version = "0.0.0.dev0" + [tool.poetry.dependencies] # note: py-deps-clock defines custom mapping from dask to dask-core dask = ">=2025.3, <2025.4.dev" # also in simpeg[dask] @@ -143,6 +143,34 @@ pydantic = ">=2.5.2, <3.0.dev" # from geoh5py, geoapps-utils pymatsolver = ">=0.3.0, <0.4.dev" # from simpeg zarr = ">=2.14.2, <2.15.dev" # from simpeg[dask] +[tool.poetry.requires-plugins] +poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] } + +[tool.poetry-dynamic-versioning] +bump = true +enable = true +fix-shallow-repository = true +strict = true +style = "pep440" +vcs = "git" + +[tool.poetry-dynamic-versioning.substitution] +files = ["simpeg_drivers/_version.py", "recipe.yaml"] +patterns = [ + { value = '''(^__version__\s*(?::.*?)?=\s*['"])[^'"]*(['"])''', mode = "str" }, + { value = '''(^\s*version\s*(?::.*?)?:\s*['"])[^'"]*(['"])''', mode = "str" }, +] + +[tool.poetry-dynamic-versioning.files."simpeg_drivers/_version.py"] +persistent-substitution = true +initial-content = """ + # Version placeholder that will be replaced during substitution + __version__ = "0.0.0" +""" + +[tool.poetry-dynamic-versioning.files."recipe.yaml"] +persistent-substitution = true + [tool.ruff] target-version = "py310" diff --git a/recipe.yaml b/recipe.yaml index 9fa5195a3..6198bf422 100644 --- a/recipe.yaml +++ b/recipe.yaml @@ -2,7 +2,7 @@ schema_version: 1 context: name: "simpeg-drivers" - version: "0.4.0a1" + version: "0.0.0.dev0" # This will be replaced by the actual version in the build process python_min: "3.10" package: @@ -20,7 +20,8 @@ build: requirements: host: - python 3.10.* - - poetry-core >=1.0.0 + - poetry-core >=1.8.0 + - poetry-dynamic-versioning >=1.9, <2.0.dev - setuptools - pip run: @@ -57,6 +58,7 @@ tests: - python: imports: - simpeg_drivers + - simpeg_drivers._version - simpeg - geoh5py - dask diff --git a/simpeg_drivers/__init__.py b/simpeg_drivers/__init__.py index 0658a454f..ea4e98175 100644 --- a/simpeg_drivers/__init__.py +++ b/simpeg_drivers/__init__.py @@ -11,12 +11,18 @@ from __future__ import annotations +import logging +from importlib.metadata import PackageNotFoundError, version +from pathlib import Path -__version__ = "0.4.0a1" +try: + from ._version import __version__ +except ModuleNotFoundError: # pragma: no cover + from datetime import datetime -import logging -from pathlib import Path + __date_str = datetime.today().strftime("%Y%m%d") + __version__ = "0.0.0.dev0+" + __date_str logging.basicConfig(level=logging.INFO) diff --git a/tests/version_test.py b/tests/version_test.py index 71fd152fe..7f967740e 100644 --- a/tests/version_test.py +++ b/tests/version_test.py @@ -11,9 +11,10 @@ from __future__ import annotations +import importlib from pathlib import Path -import tomli as toml +import pytest import yaml from jinja2 import Template from packaging.version import InvalidVersion, Version @@ -21,15 +22,6 @@ import simpeg_drivers -def get_pyproject_version(): - path = Path(__file__).resolve().parents[1] / "pyproject.toml" - - with open(str(path), encoding="utf-8") as file: - pyproject = toml.loads(file.read()) - - return pyproject["project"]["version"] - - def get_conda_recipe_version(): path = Path(__file__).resolve().parents[1] / "recipe.yaml" @@ -45,10 +37,45 @@ def get_conda_recipe_version(): def test_version_is_consistent(): - assert simpeg_drivers.__version__ == get_pyproject_version() - normalized_conda_version = Version(get_conda_recipe_version()) - normalized_version = Version(simpeg_drivers.__version__) - assert normalized_conda_version == normalized_version + project_version = Version(simpeg_drivers.__version__) + conda_version = Version(get_conda_recipe_version()) + assert conda_version.base_version == project_version.base_version + + +def _version_module_exists(): + try: + importlib.import_module("simpeg_drivers._version") + + return True + except ModuleNotFoundError: + return False + + +@pytest.mark.skipif( + _version_module_exists(), + reason="simpeg_drivers._version can be found: package is built", +) +def test_fallback_version_is_zero(): + project_version = Version(simpeg_drivers.__version__) + fallback_version = Version("0.0.0.dev0") + assert project_version.base_version == fallback_version.base_version + assert project_version.pre is None + assert project_version.post is None + assert project_version.dev == fallback_version.dev + + +@pytest.mark.skipif( + not _version_module_exists(), + reason="simpeg_drivers._version cannot be found: uses a fallback version", +) +def test_conda_version_is_consistent(): + project_version = Version(simpeg_drivers.__version__) + conda_version = Version(get_conda_recipe_version()) + + assert conda_version.is_devrelease == project_version.is_devrelease + assert conda_version.is_prerelease == project_version.is_prerelease + assert conda_version.is_postrelease == project_version.is_postrelease + assert conda_version == project_version def test_conda_version_is_pep440(): From 65cafac09fb9db1eae7461c1e89bda211d5535a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Wed, 27 Aug 2025 23:10:17 -0400 Subject: [PATCH 2/5] [DEVOPS-545] only set public version in ui.json (cherry picked from commit 13cac9473b7df4201358f7d97112e63c779a7dbd) --- simpeg_drivers/__init__.py | 11 +++++++++-- simpeg_drivers/options.py | 8 ++++---- simpeg_drivers/uijson.py | 11 +++++++---- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/simpeg_drivers/__init__.py b/simpeg_drivers/__init__.py index ea4e98175..220e12ecd 100644 --- a/simpeg_drivers/__init__.py +++ b/simpeg_drivers/__init__.py @@ -12,9 +12,10 @@ from __future__ import annotations import logging -from importlib.metadata import PackageNotFoundError, version from pathlib import Path +from packaging.version import Version + try: from ._version import __version__ @@ -27,7 +28,13 @@ logging.basicConfig(level=logging.INFO) -__all__ = ["DRIVER_MAP", "assets_path"] + +__all__ = ["DRIVER_MAP", "assets_path", "public_version"] + + +def public_version() -> str: + """Return the current public version.""" + return Version(__version__).public def assets_path() -> Path: diff --git a/simpeg_drivers/options.py b/simpeg_drivers/options.py index 42c9e2e83..057221536 100644 --- a/simpeg_drivers/options.py +++ b/simpeg_drivers/options.py @@ -42,8 +42,8 @@ model_validator, ) -import simpeg_drivers -from simpeg_drivers.utils.regularization import direction_and_dip +from . import public_version +from .utils.regularization import direction_and_dip logger = getLogger(__name__) @@ -175,7 +175,7 @@ class CoreOptions(Options): ) title: str | None = None - version: str = simpeg_drivers.__version__ + version: str = public_version() icon: str | None = None inversion_type: str documentation: str | None = None @@ -259,7 +259,7 @@ def padding_cells(self) -> int: def _create_input_file_from_attributes(self) -> InputFile: ifile = super()._create_input_file_from_attributes() - ifile.set_data_value("version", simpeg_drivers.__version__) + ifile.set_data_value("version", public_version()) return ifile diff --git a/simpeg_drivers/uijson.py b/simpeg_drivers/uijson.py index 9593fd9fd..7f63168c6 100644 --- a/simpeg_drivers/uijson.py +++ b/simpeg_drivers/uijson.py @@ -15,7 +15,7 @@ from packaging.version import Version from pydantic import field_validator -import simpeg_drivers +from . import public_version logger = logging.getLogger(__name__) @@ -30,14 +30,17 @@ class SimPEGDriversUIJson(BaseUIJson): @field_validator("version", mode="before") @classmethod def verify_and_update_version(cls, value: str) -> str: - package_version = cls.comparable_version(simpeg_drivers.__version__) + package_version = cls.comparable_version(public_version()) + if package_version == "0.0.0": # dynamic version did not get generated + return value + input_version = cls.comparable_version(value) if input_version != package_version: logger.warning( "Provided ui.json file version '%s' does not match the current " "simpeg-drivers version '%s'. This may lead to unpredictable behavior.", value, - simpeg_drivers.__version__, + public_version(), ) return value @@ -71,7 +74,7 @@ def write_default(cls): with open(cls.default_ui_json, encoding="utf-8") as file: data = json.load(file) - data["version"] = simpeg_drivers.__version__ + data["version"] = public_version() uijson = cls.model_construct(**data) data = uijson.model_dump_json(indent=4, exclude_unset=False) From a979bd478e58c1728b5f9c1131d7906d142dd387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Wed, 27 Aug 2025 23:10:53 -0400 Subject: [PATCH 3/5] [DEVOPS-545] augment docstring and tests (cherry picked from commit 6eea62046298be556708f44ec27d99467e87d1b2) --- simpeg_drivers/uijson.py | 14 +++++++++----- tests/uijson_test.py | 10 +++++++++- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/simpeg_drivers/uijson.py b/simpeg_drivers/uijson.py index 7f63168c6..9db58492f 100644 --- a/simpeg_drivers/uijson.py +++ b/simpeg_drivers/uijson.py @@ -48,12 +48,16 @@ def verify_and_update_version(cls, value: str) -> str: def comparable_version(value: str) -> str: """Normalize the version string for comparison. - Remove the post-release information, or the pre-release information if it is an rc version. - For example, if the version is "0.2.0.post1", it will return "0.2.0". - If the version is "0.2.0rc1", it will return "0.2.0". - + Remove the dev and post-release information, or the pre-release information if it is an rc version. Then, it will return the public version of the version object. - For example, if the version is "0.2.0+local", it will return "0.2.0". + + Examples: + * for version "0.2.0.post1", return "0.2.0" + * for version "0.2.0.dev1", return "0.2.0" + * for version "0.2.0a1.dev1", return "0.2.0a1" + * for version "0.2.0a1", return "0.2.0a1" (unchanged) + * for version "0.2.0rc1", return "0.2.0" + * for version "0.2.0+local", return "0.2.0" """ version = Version(value) diff --git a/tests/uijson_test.py b/tests/uijson_test.py index dc1a40892..486d3a813 100644 --- a/tests/uijson_test.py +++ b/tests/uijson_test.py @@ -82,6 +82,8 @@ def _create_uijson(version: str | None = None, **kwargs): [ # Normal version ("1.2.3", "1.2.3"), + # Dev version + ("1.2.3.dev1", "1.2.3"), # Post-release version ("1.2.3.post1", "1.2.3"), # RC pre-release version @@ -92,8 +94,14 @@ def _create_uijson(version: str | None = None, **kwargs): ("1.2.3b1", "1.2.3b1"), # Local version ("1.2.3+local", "1.2.3"), - # Combined cases + # Combined cases with RC and post ("1.2.3rc1.post2+local", "1.2.3"), + # Combined cases with RC and dev + ("1.2.3rc1.dev2+local", "1.2.3"), + # Combined cases with pre non-RC and post + ("1.2.3b1.post2+local", "1.2.3b1"), + # Combined cases with pre non-RC and dev + ("1.2.3b1.dev2+local", "1.2.3b1"), ], ) def test_comparable_version(version_input, expected): From 9e9836fa9c1f14e9dc13f4144229834066b944ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 28 Aug 2025 00:14:00 -0400 Subject: [PATCH 4/5] [DEVOPS-545] support dynamic-versioning with PIP_NO_DEPS=1 --- pyproject.toml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ea1d6cb13..21843076e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,14 @@ -requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning>=1.9.0,<2.0.0"] +[build-system] +requires = [ + "poetry-core>=1.8.0", + "poetry-dynamic-versioning>=1.9.1,<2.0", + # list dependencies to work with PIP_NO_DEPS=1 + "MarkupSafe>=2.0", + "dunamai>=1.25,<2.0", + "jinja2>=3.0,<4.0", + "packaging>=24.0", + "tomlkit>=0.13", +] build-backend = "poetry_dynamic_versioning.backend" [project] @@ -61,7 +71,6 @@ include = [ { path = "THIRD_PARTY_SOFTWARE.rst" }, { path = "docs/**/THIRD_PARTY_SOFTWARE.rst" }, ] - version = "0.0.0.dev0" [tool.poetry.dependencies] @@ -144,7 +153,7 @@ pymatsolver = ">=0.3.0, <0.4.dev" # from simpeg zarr = ">=2.14.2, <2.15.dev" # from simpeg[dask] [tool.poetry.requires-plugins] -poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] } +poetry-dynamic-versioning = { version = ">=1.9.1,<2.0.0", extras = ["plugin"] } [tool.poetry-dynamic-versioning] bump = true From ffe8df47f31e25f17c1cbc244ba52783709bef5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Thu, 28 Aug 2025 00:16:43 -0400 Subject: [PATCH 5/5] [DEVOPS-545] relock conda envs --- .../py-3.10-linux-64-dev.conda.lock.yml | 38 +- environments/py-3.10-linux-64.conda.lock.yml | 22 +- .../py-3.10-win-64-dev.conda.lock.yml | 38 +- environments/py-3.10-win-64.conda.lock.yml | 22 +- .../py-3.11-linux-64-dev.conda.lock.yml | 38 +- environments/py-3.11-linux-64.conda.lock.yml | 22 +- .../py-3.11-win-64-dev.conda.lock.yml | 38 +- environments/py-3.11-win-64.conda.lock.yml | 22 +- .../py-3.12-linux-64-dev.conda.lock.yml | 43 +- environments/py-3.12-linux-64.conda.lock.yml | 22 +- .../py-3.12-win-64-dev.conda.lock.yml | 42 +- environments/py-3.12-win-64.conda.lock.yml | 22 +- py-3.10.conda-lock.yml | 370 +++++++------ py-3.11.conda-lock.yml | 434 ++++++++------- py-3.12.conda-lock.yml | 517 ++++++++++-------- 15 files changed, 878 insertions(+), 812 deletions(-) diff --git a/environments/py-3.10-linux-64-dev.conda.lock.yml b/environments/py-3.10-linux-64-dev.conda.lock.yml index e3d12e7c5..a79660753 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: df903f8d5f97aa53e048a59653b36a5acf8ff615a3b907992eb74b753d8cf30a +# input_hash: c8f7ae0bddeffc0ce95aebb250579b216dcf022feb26f8e2d841be6b05442f87 channels: - conda-forge @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.2=py310h3788b33_0 - - coverage=7.10.4=py310h3406613_0 + - coverage=7.10.5=py310h3406613_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha75aee5_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310h3406613_0 + - fonttools=4.59.2=py310h3406613_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 @@ -82,7 +82,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py310hff52083_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -151,7 +151,7 @@ dependencies: - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 @@ -187,16 +187,16 @@ dependencies: - pandas=2.3.2=py310h0158d43_0 - pandoc=3.7.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_1 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py310hebfe307_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py310h7c4b9e2_1 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 @@ -224,7 +224,7 @@ dependencies: - python_abi=3.10=8_cp310 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py310h89163eb_2 - - pyzmq=27.0.2=py310h9a5fd63_0 + - pyzmq=27.0.2=py310h4f33d48_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -232,7 +232,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py310hd8f68c5_0 + - rpds-py=0.27.1=py310hd8f68c5_0 - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.6.1=py310h27f47ee_0 - scipy=1.14.1=py310hfcf56fc_2 @@ -242,7 +242,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -278,9 +278,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -301,13 +301,13 @@ dependencies: - zeromq=4.3.5=h3b0a872_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha75aee5_2 + - zstandard=0.23.0=py310h7c4b9e2_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index df5fd5176..d0df4d2e1 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: df903f8d5f97aa53e048a59653b36a5acf8ff615a3b907992eb74b753d8cf30a +# input_hash: c8f7ae0bddeffc0ce95aebb250579b216dcf022feb26f8e2d841be6b05442f87 channels: - conda-forge @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py310ha2bacc8_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310h3406613_0 + - fonttools=4.59.2=py310h3406613_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py310ha2bacc8_0 @@ -41,7 +41,7 @@ dependencies: - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py310haaf941d_0 - krb5=1.21.3=h659f571_0 @@ -88,7 +88,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h89163eb_1 - matplotlib-base=3.8.4=py310hef631a5_2 @@ -139,9 +139,9 @@ dependencies: - tornado=6.5.2=py310h7c4b9e2_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py310ha75aee5_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -153,13 +153,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha75aee5_2 + - zstandard=0.23.0=py310h7c4b9e2_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64-dev.conda.lock.yml b/environments/py-3.10-win-64-dev.conda.lock.yml index c4cf68d20..7c4e30e45 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 03d1f3ef4c61f2960917993a4919e1b140142b11a1eb751062ca845672f6e6b4 +# input_hash: 0e4eae48731ca9e26a194a0b731d4cbb5666ce7bac7a5003b542681283abdc39 channels: - conda-forge @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.2=py310hc19bc0b_0 - - coverage=7.10.4=py310hdb0e946_0 + - coverage=7.10.5=py310hdb0e946_0 - cpython=3.10.18=py310hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py310ha8f682b_0 @@ -55,7 +55,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310hdb0e946_0 + - fonttools=4.59.2=py310hdb0e946_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 @@ -82,7 +82,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py310h5588dad_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -139,7 +139,7 @@ dependencies: - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 @@ -172,15 +172,15 @@ dependencies: - pandas=2.3.2=py310hed136d8_0 - pandoc=3.7.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py310h3e38d90_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py310h29418f3_1 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 @@ -209,14 +209,14 @@ dependencies: - pywin32=311=py310h282bd7d_0 - pywinpty=2.0.15=py310h9e98ed7_0 - pyyaml=6.0.2=py310h38315fa_2 - - pyzmq=27.0.2=py310h49f0f51_0 + - pyzmq=27.0.2=py310h535538e_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.5=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py310h034784e_0 + - rpds-py=0.27.1=py310h034784e_0 - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.6.1=py310hf2a6c47_0 - scipy=1.14.1=py310hbd0dde3_2 @@ -226,7 +226,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -262,9 +262,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -291,13 +291,13 @@ dependencies: - zeromq=4.3.5=ha9f60a1_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha8f682b_2 + - zstandard=0.23.0=py310h29418f3_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 44583d3e9..272759b49 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 03d1f3ef4c61f2960917993a4919e1b140142b11a1eb751062ca845672f6e6b4 +# input_hash: 0e4eae48731ca9e26a194a0b731d4cbb5666ce7bac7a5003b542681283abdc39 channels: - conda-forge @@ -29,7 +29,7 @@ dependencies: - discretize=0.11.3=py310h3e8ed56_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py310hdb0e946_0 + - fonttools=4.59.2=py310hdb0e946_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py310h3e8ed56_0 @@ -40,7 +40,7 @@ dependencies: - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - kiwisolver=1.4.9=py310h1e1005b_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 @@ -75,7 +75,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py310h38315fa_1 - matplotlib-base=3.8.4=py310hadb10a8_2 @@ -122,9 +122,9 @@ dependencies: - tornado=6.5.2=py310h29418f3_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py310ha8f682b_0 @@ -141,13 +141,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py310ha8f682b_2 + - zstandard=0.23.0=py310h29418f3_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64-dev.conda.lock.yml b/environments/py-3.11-linux-64-dev.conda.lock.yml index 0421cb2e1..9a6a45ada 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3dbea284166720deb24b29cf2170db9a32f056b8075113cae4cc86949c2d551b +# input_hash: c3c882ab7106f1ac6d6821bf96f16035a0c501482813360bc7738edf05725ab9 channels: - conda-forge @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -40,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py311hdf67eae_1 - - coverage=7.10.4=py311h3778330_0 + - coverage=7.10.5=py311h3778330_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311h9ecbd09_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3778330_0 + - fonttools=4.59.2=py311h3778330_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 @@ -84,7 +84,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py311h38be061_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -153,7 +153,7 @@ dependencies: - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 @@ -189,16 +189,16 @@ dependencies: - pandas=2.3.2=py311hed34c8f_0 - pandoc=3.7.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_1 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py311h82a398c_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py311h49ec1c0_1 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 @@ -226,7 +226,7 @@ dependencies: - python_abi=3.11=8_cp311 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py311h2dc5d0c_2 - - pyzmq=27.0.2=py311hc251a9f_0 + - pyzmq=27.0.2=py311h2315fbb_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -234,7 +234,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py311h902ca64_0 + - rpds-py=0.27.1=py311h902ca64_0 - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.6.1=py311h57cc02b_0 - scipy=1.14.1=py311he9a78e4_2 @@ -244,7 +244,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -280,9 +280,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -304,13 +304,13 @@ dependencies: - zeromq=4.3.5=h3b0a872_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311h9ecbd09_2 + - zstandard=0.23.0=py311h49ec1c0_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 2abb80a49..6a438ad82 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 3dbea284166720deb24b29cf2170db9a32f056b8075113cae4cc86949c2d551b +# input_hash: c3c882ab7106f1ac6d6821bf96f16035a0c501482813360bc7738edf05725ab9 channels: - conda-forge @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py311h5b7b71f_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3778330_0 + - fonttools=4.59.2=py311h3778330_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h5b7b71f_0 @@ -42,7 +42,7 @@ dependencies: - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py311h724c32c_0 - krb5=1.21.3=h659f571_0 @@ -89,7 +89,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h2dc5d0c_1 - matplotlib-base=3.8.4=py311ha4ca890_2 @@ -140,9 +140,9 @@ dependencies: - tornado=6.5.2=py311h49ec1c0_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py311h9ecbd09_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -155,13 +155,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311h9ecbd09_2 + - zstandard=0.23.0=py311h49ec1c0_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64-dev.conda.lock.yml b/environments/py-3.11-win-64-dev.conda.lock.yml index 26902a54c..926f0adde 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a3ef3af1bb1d93eb8d5ac7e146beec4f1bc5d2f0f6af964c6b9d67be798ff119 +# input_hash: 106a2623766605c1a3c6aa7c479d1dd64f6d252df48e62b2a77761f8e247f0c4 channels: - conda-forge @@ -20,7 +20,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py311h3fd045d_1 - - coverage=7.10.4=py311h3f79411_0 + - coverage=7.10.5=py311h3f79411_0 - cpython=3.11.13=py311hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py311he736701_0 @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3f79411_0 + - fonttools=4.59.2=py311h3f79411_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 @@ -84,7 +84,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py311h1ea47a8_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -141,7 +141,7 @@ dependencies: - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 @@ -174,15 +174,15 @@ dependencies: - pandas=2.3.2=py311h11fd7f3_0 - pandoc=3.7.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py311h5592be9_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py311h3485c13_1 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 @@ -211,14 +211,14 @@ dependencies: - pywin32=311=py311hefeebc8_0 - pywinpty=2.0.15=py311hda3d55a_0 - pyyaml=6.0.2=py311h5082efb_2 - - pyzmq=27.0.2=py311ha362a94_0 + - pyzmq=27.0.2=py311hb77b9c8_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.5=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py311hf51aa87_0 + - rpds-py=0.27.1=py311hf51aa87_0 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.6.1=py311hdcb8d17_0 - scipy=1.14.1=py311hf16d85f_2 @@ -228,7 +228,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -264,9 +264,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -294,13 +294,13 @@ dependencies: - zeromq=4.3.5=ha9f60a1_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311he736701_2 + - zstandard=0.23.0=py311h3485c13_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index cbb3751ba..6ac7a61f3 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: a3ef3af1bb1d93eb8d5ac7e146beec4f1bc5d2f0f6af964c6b9d67be798ff119 +# input_hash: 106a2623766605c1a3c6aa7c479d1dd64f6d252df48e62b2a77761f8e247f0c4 channels: - conda-forge @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py311h9b10771_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py311h3f79411_0 + - fonttools=4.59.2=py311h3f79411_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h9b10771_0 @@ -41,7 +41,7 @@ dependencies: - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - kiwisolver=1.4.9=py311h275cad7_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 @@ -76,7 +76,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py311h5082efb_1 - matplotlib-base=3.8.4=py311h9b31f6e_2 @@ -123,9 +123,9 @@ dependencies: - tornado=6.5.2=py311h3485c13_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py311he736701_0 @@ -143,13 +143,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py311he736701_2 + - zstandard=0.23.0=py311h3485c13_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64-dev.conda.lock.yml b/environments/py-3.12-linux-64-dev.conda.lock.yml index eaa6087db..59d8fd01f 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: faba276316c29373b2d6b7b8c7642398283e4ca103c3aa3df2fd0358aea7e262 +# input_hash: 81aedccfb6112401b5a94619d03cb65bd3c0a1242f995c2c22516fc86dbbaec5 channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=3_kmp_llvm + - _python_abi3_support=1.0=hd8ed1ab_2 - accessible-pygments=0.0.5=pyhd8ed1ab_1 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 @@ -20,7 +21,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -40,7 +41,8 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py312hd9148b4_1 - - coverage=7.10.4=py312h8a5da7c_0 + - coverage=7.10.5=py312h8a5da7c_0 + - cpython=3.12.11=py312hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h66e93f0_0 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -52,11 +54,11 @@ dependencies: - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - - docutils=0.18.1=py312h7900ff3_0 + - docutils=0.18.1=py312h7900ff3_1 - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h8a5da7c_0 + - fonttools=4.59.2=py312h8a5da7c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 @@ -84,7 +86,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py312h7900ff3_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -153,7 +155,7 @@ dependencies: - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 @@ -189,16 +191,16 @@ dependencies: - pandas=2.3.2=py312hf79963d_0 - pandoc=3.7.0.2=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pexpect=4.9.0=pyhd8ed1ab_1 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py312h287a98d_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py312h4c3975b_1 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 @@ -220,13 +222,14 @@ dependencies: - python=3.12.11=h9e4cc4f_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.2=pyhe01879c_0 + - python-gil=3.12.11=hd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h6ad3ee3_0 - python-tzdata=2025.2=pyhd8ed1ab_0 - python_abi=3.12=8_cp312 - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.2=py312h178313f_2 - - pyzmq=27.0.2=py312h6748674_0 + - pyzmq=27.0.2=py312hfb55c3c_2 - readline=8.2=h8c095d6_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 @@ -234,7 +237,7 @@ dependencies: - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py312h868fb18_0 + - rpds-py=0.27.1=py312h868fb18_0 - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.6.1=py312h7a48858_0 - scipy=1.14.1=py312h62794b6_2 @@ -244,7 +247,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -280,9 +283,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -304,13 +307,13 @@ dependencies: - zeromq=4.3.5=h3b0a872_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h66e93f0_2 + - zstandard=0.23.0=py312h4c3975b_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index beb520472..8bf87b023 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: faba276316c29373b2d6b7b8c7642398283e4ca103c3aa3df2fd0358aea7e262 +# input_hash: 81aedccfb6112401b5a94619d03cb65bd3c0a1242f995c2c22516fc86dbbaec5 channels: - conda-forge @@ -31,7 +31,7 @@ dependencies: - discretize=0.11.3=py312hc39e661_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h8a5da7c_0 + - fonttools=4.59.2=py312h8a5da7c_0 - freetype=2.13.3=ha770c72_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hc39e661_0 @@ -42,7 +42,7 @@ dependencies: - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py312h0a2e395_0 - krb5=1.21.3=h659f571_0 @@ -89,7 +89,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.8=h2cb61b6_1 - libzlib=1.3.1=hb9d3cd8_2 - - llvm-openmp=20.1.8=h4922eb0_1 + - llvm-openmp=20.1.8=h4922eb0_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h178313f_1 - matplotlib-base=3.8.4=py312h20ab3a6_2 @@ -140,9 +140,9 @@ dependencies: - tornado=6.5.2=py312h4c3975b_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - unicodedata2=16.0.0=py312h66e93f0_0 - urllib3=2.5.0=pyhd8ed1ab_0 @@ -155,13 +155,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h66e93f0_2 + - zstandard=0.23.0=py312h4c3975b_3 - zstd=1.5.7=hb8e6e7a_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64-dev.conda.lock.yml b/environments/py-3.12-win-64-dev.conda.lock.yml index 52554c975..9e3de0d3b 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,12 +1,13 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e6a7f9b65a8eab774bcc6e97dd60c58d129bef69f0979db3e945d74561748784 +# input_hash: 1184306731b94290082a07ff69198b9bab01231154ed953a92d9f4ce512366a2 channels: - conda-forge - nodefaults dependencies: - _openmp_mutex=4.5=2_gnu + - _python_abi3_support=1.0=hd8ed1ab_2 - accessible-pygments=0.0.5=pyhd8ed1ab_1 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 @@ -20,7 +21,7 @@ dependencies: - async-lru=2.0.5=pyh29332c3_0 - attrs=25.3.0=pyh71513ae_0 - babel=2.17.0=pyhd8ed1ab_0 - - beautifulsoup4=4.13.4=pyha770c72_0 + - beautifulsoup4=4.13.5=pyha770c72_0 - bleach=6.2.0=pyh29332c3_4 - bleach-with-css=6.2.0=h82add2a_4 - bokeh=3.6.3=pyhd8ed1ab_0 @@ -39,7 +40,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - contourpy=1.3.3=py312hf90b1b7_1 - - coverage=7.10.4=py312h05f76fc_0 + - coverage=7.10.5=py312h05f76fc_0 - cpython=3.12.11=py312hd8ed1ab_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.1=py312h4389bb4_0 @@ -52,11 +53,11 @@ dependencies: - dill=0.4.0=pyhd8ed1ab_0 - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - - docutils=0.18.1=py312h2e8e312_0 + - docutils=0.18.1=py312h2e8e312_1 - exceptiongroup=1.3.0=pyhd8ed1ab_0 - executing=2.2.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h05f76fc_0 + - fonttools=4.59.2=py312h05f76fc_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 @@ -84,7 +85,7 @@ dependencies: - isort=6.0.1=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - json5=0.12.1=pyhd8ed1ab_0 - jsonpointer=3.0.0=py312h2e8e312_1 - jsonschema=4.25.1=pyhe01879c_0 @@ -141,7 +142,7 @@ dependencies: - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - linkify-it-py=2.0.3=pyhd8ed1ab_1 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markdown-it-py=2.2.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 @@ -174,15 +175,15 @@ dependencies: - pandas=2.3.2=py312hc128f0a_0 - pandoc=3.7.0.2=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - - parso=0.8.4=pyhd8ed1ab_1 + - parso=0.8.5=pyhcf101f3_0 - partd=1.4.2=pyhd8ed1ab_0 - pickleshare=0.7.5=pyhd8ed1ab_1004 - pillow=10.3.0=py312h381445a_1 - pip=25.2=pyh8b19718_0 - - platformdirs=4.3.8=pyhe01879c_0 + - platformdirs=4.4.0=pyhcf101f3_0 - pluggy=1.6.0=pyhd8ed1ab_0 - prometheus_client=0.22.1=pyhd8ed1ab_0 - - prompt-toolkit=3.0.51=pyha770c72_0 + - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.0.0=py312he06e257_1 - pthread-stubs=0.4=h0e40799_1002 - pure_eval=0.2.3=pyhd8ed1ab_1 @@ -203,6 +204,7 @@ dependencies: - python=3.12.11=h3f84c4b_0_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 - python-fastjsonschema=2.21.2=pyhe01879c_0 + - python-gil=3.12.11=hd8ed1ab_0 - python-json-logger=2.0.7=pyhd8ed1ab_0 - python-mumps=0.0.3=py312h8095395_0 - python-tzdata=2025.2=pyhd8ed1ab_0 @@ -211,14 +213,14 @@ dependencies: - pywin32=311=py312h829343e_0 - pywinpty=2.0.15=py312h275cf98_0 - pyyaml=6.0.2=py312h31fea79_2 - - pyzmq=27.0.2=py312h5b324a9_0 + - pyzmq=27.0.2=py312hbb5da91_2 - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_1 - referencing=0.36.2=pyh29332c3_0 - requests=2.32.5=pyhd8ed1ab_0 - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rfc3987-syntax=1.1.0=pyhe01879c_1 - - rpds-py=0.27.0=py312hdabe01f_0 + - rpds-py=0.27.1=py312hdabe01f_0 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.6.1=py312h816cc57_0 - scipy=1.14.1=py312h337df96_2 @@ -228,7 +230,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_1 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.7=pyhd8ed1ab_0 + - soupsieve=2.8=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinx-book-theme=1.1.3=pyhd8ed1ab_1 - sphinx-comments=0.0.3=pyhd8ed1ab_1 @@ -264,9 +266,9 @@ dependencies: - traitlets=5.14.3=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - types-python-dateutil=2.9.0.20250822=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2025b=h78e105d_0 - uc-micro-py=1.0.3=pyhd8ed1ab_1 @@ -294,13 +296,13 @@ dependencies: - zeromq=4.3.5=ha9f60a1_7 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h4389bb4_2 + - zstandard=0.23.0=py312he06e257_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 61aa0e02f..e83a30206 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: e6a7f9b65a8eab774bcc6e97dd60c58d129bef69f0979db3e945d74561748784 +# input_hash: 1184306731b94290082a07ff69198b9bab01231154ed953a92d9f4ce512366a2 channels: - conda-forge @@ -30,7 +30,7 @@ dependencies: - discretize=0.11.3=py312hbaa7e33_0 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - - fonttools=4.59.1=py312h05f76fc_0 + - fonttools=4.59.2=py312h05f76fc_0 - freetype=2.13.3=h57928b3_1 - fsspec=2025.7.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hbaa7e33_0 @@ -41,7 +41,7 @@ dependencies: - hyperframe=6.1.0=pyhd8ed1ab_0 - importlib-metadata=8.7.0=pyhe01879c_1 - jinja2=3.1.6=pyhd8ed1ab_0 - - joblib=1.5.1=pyhd8ed1ab_0 + - joblib=1.5.2=pyhd8ed1ab_0 - kiwisolver=1.4.9=py312h78d62e6_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.17=hbcf6048_0 @@ -76,7 +76,7 @@ dependencies: - libxcb=1.17.0=h0e4246c_0 - libxml2=2.13.8=h741aa76_1 - libzlib=1.3.1=h2466b09_2 - - llvm-openmp=20.1.8=hfa2b4ca_1 + - llvm-openmp=20.1.8=hfa2b4ca_2 - locket=1.0.0=pyhd8ed1ab_0 - markupsafe=3.0.2=py312h31fea79_1 - matplotlib-base=3.8.4=py312hfee7060_2 @@ -123,9 +123,9 @@ dependencies: - tornado=6.5.2=py312he06e257_0 - tqdm=4.67.1=pyhd8ed1ab_1 - trimesh=4.1.8=pyhd8ed1ab_0 - - typing-extensions=4.14.1=h4440ef1_0 + - typing-extensions=4.15.0=h396c80c_0 - typing-inspection=0.4.1=pyhd8ed1ab_0 - - typing_extensions=4.14.1=pyhe01879c_0 + - typing_extensions=4.15.0=pyhcf101f3_0 - tzdata=2025b=h78e105d_0 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=16.0.0=py312h4389bb4_0 @@ -143,13 +143,13 @@ dependencies: - zarr=2.14.2=pyhd8ed1ab_0 - zict=3.0.0=pyhd8ed1ab_1 - zipp=3.23.0=pyhd8ed1ab_0 - - zstandard=0.23.0=py312h4389bb4_2 + - zstandard=0.23.0=py312he06e257_3 - zstd=1.5.7=hbeecb71_2 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 - - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 + - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@b950dd55b4fb70d2ef28488a3f684c374a170b9f + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 031cb6b56..f93d3d258 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: 03d1f3ef4c61f2960917993a4919e1b140142b11a1eb751062ca845672f6e6b4 - linux-64: df903f8d5f97aa53e048a59653b36a5acf8ff615a3b907992eb74b753d8cf30a + win-64: 0e4eae48731ca9e26a194a0b731d4cbb5666ce7bac7a5003b542681283abdc39 + linux-64: c8f7ae0bddeffc0ce95aebb250579b216dcf022feb26f8e2d841be6b05442f87 channels: - url: conda-forge used_env_vars: [] @@ -153,7 +153,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.10.0-pyhe01879c_0.conda @@ -345,7 +345,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -404,31 +404,31 @@ package: category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: bleach @@ -449,7 +449,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -907,7 +907,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda hash: md5: 2da13f2b299d8e1995bafbbe9689a2f7 @@ -949,7 +949,7 @@ package: category: main optional: false - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: linux-64 dependencies: @@ -958,14 +958,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.4-py310h3406613_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.5-py310h3406613_0.conda hash: - md5: ac9c681b16e9b9d24eca83a367b52fcd - sha256: caf25a0e293b86d93ff036f6e0b0769673031e136716faa0b7bae9fda125ff76 + md5: 8d397b33a3a90f52182807e04234ea10 + sha256: 1cfe98f11884062729c9b861ed3d4e9c771f6809d8fed8be68d8c585216fa147 category: dev optional: true - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: win-64 dependencies: @@ -975,10 +975,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.4-py310hdb0e946_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.5-py310hdb0e946_0.conda hash: - md5: 31ceebbc098babf2d50d2745205c633b - sha256: a3887e59288526c8230a036af4f317bbc188ae11101ff2c00996eb5919ddcf89 + md5: df429c46178f2ac242180da4c4d2c821 + sha256: eb6013687b9940940d3b3292d14b77266bf5551de09cd8f32e4cf7ccf555c0e4 category: dev optional: true - name: cpython @@ -1412,7 +1412,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: linux-64 dependencies: @@ -1423,14 +1423,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py310h3406613_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py310h3406613_0.conda hash: - md5: 14e450afac608165ced4b0b93cfc1df1 - sha256: b634c855e3308e3463d75d57ef8188b023c14778c6ede7fc2ddddd22f7ee2df7 + md5: 32dab042830c3c31f89cdb6273585165 + sha256: afbdc6fd696ce74a94dd558512f532a8e71c653a18f226b1bae9b37e447ae4f0 category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: win-64 dependencies: @@ -1442,10 +1442,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.1-py310hdb0e946_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py310hdb0e946_0.conda hash: - md5: 6df5bf934873bcf1d2d2208a364afe1b - sha256: 67bb84f9aeb1ba4f2efced2cc3059faabc878d6d4a25bbcffc0a1134b702ab56 + md5: 2072c4ef8b99bee252d62c4bfbf6c2e6 + sha256: 93eaf4c063327cb9a47ed383608e34c79329eb1fcc030f4fa5c1d945c7878269 category: main optional: false - name: fqdn @@ -1773,7 +1773,7 @@ package: certifi: '' h11: '>=0.16' h2: '>=3,<5' - python: '>=3.9' + python: '' sniffio: 1.* url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: @@ -1903,7 +1903,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -2047,7 +2047,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.10' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2220,29 +2220,29 @@ package: category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json5 @@ -2318,7 +2318,7 @@ package: dependencies: attrs: '>=22.2.0' jsonschema-specifications: '>=2023.3.6' - python: '>=3.9' + python: '' referencing: '>=0.28.4' rpds-py: '>=0.7.1' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda @@ -2345,7 +2345,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: @@ -2518,7 +2518,7 @@ package: dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda hash: md5: 7129ed52335cc7164baf4d6508a3f233 @@ -2620,7 +2620,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2680,7 +2680,7 @@ package: overrides: '>=5.0' packaging: '>=22.0' prometheus_client: '>=0.9' - python: '>=3.10' + python: '' pyzmq: '>=24' send2trash: '>=1.8.2' terminado: '>=0.8.3' @@ -4136,10 +4136,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_2.conda hash: - md5: 5d5099916a3659a46cca8f974d0455b9 - sha256: 4539fd52a5f59039cd575caf222e22ebe57ab168cd102d182a970c1f1a72fe51 + md5: fab9b7d973248580e0300196a80c9a24 + sha256: fd5a656cfa064add64455e3b7ea046376046911c56d14dc04049e670f3b48190 category: main optional: false - name: llvm-openmp @@ -4150,10 +4150,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda hash: - md5: 2c3afd82c44b0bf59fa8f924e30c0513 - sha256: 568e9dec9078055adebf6c07202be079884b85780a4542f0f326763e6f642a2d + md5: 2dc2edf349464c8b83a576175fc2ad42 + sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b category: main optional: false - name: locket @@ -4425,7 +4425,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4599,7 +4599,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4751,7 +4751,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -5093,7 +5093,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -5187,27 +5187,27 @@ package: category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: partd @@ -5352,27 +5352,27 @@ package: category: main optional: false - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: pluggy @@ -5424,29 +5424,29 @@ package: category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: psutil @@ -5624,7 +5624,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5831,7 +5831,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5890,7 +5890,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: md5: aa0028616c0750c773698fdc254b2b8d @@ -6063,7 +6063,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -6088,7 +6088,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda hash: md5: 23029aae904a2ba587daba708208012f @@ -6299,15 +6299,14 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=14' - python: '>=3.10,<3.11.0a0' + python: '' python_abi: 3.10.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py310h9a5fd63_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py310h4f33d48_2.conda hash: - md5: 2abed91a0b6093e3f7d126f2c5d42e13 - sha256: c4831e0452782df790595c4a913ec58128f84fbfb98b1b6b81aaa63e3e28f535 + md5: 7fcd143231388aedb718be86b7e52ff7 + sha256: 0c3a0383ca8de17d927c942f42a945c764a9a2fdd23499ad5f851c5a03f46658 category: dev optional: true - name: pyzmq @@ -6315,17 +6314,16 @@ package: manager: conda platform: win-64 dependencies: - libsodium: '>=1.0.20,<1.0.21.0a0' - python: '>=3.10,<3.11.0a0' + python: '' python_abi: 3.10.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py310h49f0f51_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py310h535538e_2.conda hash: - md5: 9dbada9f62cb38ba7bb0fb9140a85435 - sha256: 49d0b9cbff51911d85913cbd1de778868cf6aefab6c7d0c5f1c8a77883326dc4 + md5: 02bd7492b1146dd5a477b9dc15d9a30d + sha256: c945ad5518af5dc7eae2d3b21be2a32c7a2623e2d2806729f3b9fd2ea9727fff category: dev optional: true - name: readline @@ -6392,7 +6390,7 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda @@ -6502,7 +6500,7 @@ package: platform: win-64 dependencies: lark: '>=1.2.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda hash: md5: 7234f99325263a5af6d4cd195035e8f2 @@ -6510,7 +6508,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: linux-64 dependencies: @@ -6518,14 +6516,14 @@ package: libgcc: '>=14' python: '' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.0-py310hd8f68c5_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py310hd8f68c5_0.conda hash: - md5: 40a2626d9988362dfaa3c5e888735bc8 - sha256: b306b7781493ed219a313ac82c8e16860beb077bce193b08aaa30242022a7ce7 + md5: 4eed975c85e20068274d3c7a94072b8a + sha256: a4b7cc6656138c7a89a74f60a086f99abc013876fa57ebfff5f60c416aa8f14c category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: win-64 dependencies: @@ -6534,10 +6532,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.0-py310h034784e_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py310h034784e_0.conda hash: - md5: 351aba0937fb0ad39baafa89093fa134 - sha256: 12123ac68d90cdd4dfe79708860655bbc27551aea5ee6c8bc0d4de6e3456a016 + md5: 36c1dd306aae307a2ed6e4101012910e + sha256: 2ec9d6e3fee68ab5e781a2df706ac7c1c323b2b524fa6d4443443e986bd348a8 category: dev optional: true - name: rtree @@ -6719,7 +6717,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -6799,27 +6797,27 @@ package: category: main optional: false - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: sphinx @@ -7606,7 +7604,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: md5: 30a0a26c8abccf4b7991d590fe17c699 @@ -7793,27 +7791,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-inspection @@ -7843,27 +7841,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_utils @@ -8465,13 +8463,13 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.11' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310ha75aee5_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py310h7c4b9e2_3.conda hash: - md5: f9254b5b0193982416b91edcb4b2676f - sha256: f9b76c2f8a0f96e656843553272e547170182f5b8aba1a6bcba28f7611d87c23 + md5: 64c494618303717a9a08e3238bcb8d68 + sha256: 0653ad7d53d8c7b85ef2dd38c01c78b6c9185cd688be06cd6315e76530310635 category: main optional: false - name: zstandard @@ -8483,12 +8481,12 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310ha8f682b_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py310h29418f3_3.conda hash: - md5: fdc36a989175bb166109e400c106defa - sha256: 76bf75ef83e952ef4974e0e6656a7a90b4c4c1c22cea984cb9fc29aca05e5999 + md5: c7ced46235127f2ec7ea29b95840c343 + sha256: 1282801d99392c8e674151633c3120c12452a4ca6c2141b90b164c6b8a7f1724 category: main optional: false - name: zstd @@ -8522,41 +8520,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.5.1.dev157+111b167 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 111b167f8d9a185ff6f140f055297f0a6945de6e source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.5.1.dev157+111b167 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 111b167f8d9a185ff6f140f055297f0a6945de6e source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev42+ae647668 manager: pip platform: linux-64 dependencies: @@ -8564,16 +8562,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: ae6476684d48892a7ce863c1165b8f6f488a3867 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev42+ae647668 manager: pip platform: win-64 dependencies: @@ -8581,12 +8579,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: ae6476684d48892a7ce863c1165b8f6f488a3867 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 category: main optional: false - name: grid-apps @@ -8595,8 +8593,8 @@ package: platform: linux-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.5.1.dev157+111b167 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8614,8 +8612,8 @@ package: platform: win-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.5.1.dev157+111b167 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8628,44 +8626,44 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: linux-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: win-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index f67b7248c..210a9b8b7 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: a3ef3af1bb1d93eb8d5ac7e146beec4f1bc5d2f0f6af964c6b9d67be798ff119 - linux-64: 3dbea284166720deb24b29cf2170db9a32f056b8075113cae4cc86949c2d551b + win-64: 106a2623766605c1a3c6aa7c479d1dd64f6d252df48e62b2a77761f8e247f0c4 + linux-64: c3c882ab7106f1ac6d6821bf96f16035a0c501482813360bc7738edf05725ab9 channels: - url: conda-forge used_env_vars: [] @@ -137,7 +137,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.10.0-pyhe01879c_0.conda @@ -153,7 +153,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.10.0-pyhe01879c_0.conda @@ -330,7 +330,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -343,7 +343,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -402,31 +402,31 @@ package: category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: bleach @@ -434,7 +434,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -447,7 +447,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -893,7 +893,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda hash: md5: 2da13f2b299d8e1995bafbbe9689a2f7 @@ -905,7 +905,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda hash: md5: 2da13f2b299d8e1995bafbbe9689a2f7 @@ -947,7 +947,7 @@ package: category: main optional: false - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: linux-64 dependencies: @@ -956,14 +956,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.4-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.5-py311h3778330_0.conda hash: - md5: 9b03916fb3692cfed283361d809b8d56 - sha256: 121a56fcc30a295ca96f160925325d5611c06a70363d98dce1693e50497c9c32 + md5: f2d902e3e28e59a8a281b84ba7c74419 + sha256: bcd74f7a948bd189aa4517e3e03520adfa020bdcb91ef63e418cddbc45c162c7 category: dev optional: true - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: win-64 dependencies: @@ -973,10 +973,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.4-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.5-py311h3f79411_0.conda hash: - md5: 81fa156b61a922d0bf7603ff13727dcd - sha256: 6699830c768103a5bb7be93eda055915965295923ed4006316a2926e551d26bd + md5: 44ebd376a0e3d335cec3ab9c26812d6b + sha256: 49c695a9ded7d1bc73c4d6c2924cd9a9d7333c3f2e9df4ab738f6f7545573e14 category: dev optional: true - name: cpython @@ -1436,7 +1436,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: linux-64 dependencies: @@ -1447,14 +1447,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py311h3778330_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py311h3778330_0.conda hash: - md5: a879d36924dd853bf855ed423b02d92b - sha256: a272826eb8bda4c7207db735448f67f1e5ce79a08eb5a78271c62d9ea452a275 + md5: 5be2463c4d16a021dd571d7bf56ac799 + sha256: f2685b212f3d84d2ba4fc89a03442724a94166ee8a9c1719efed0d7a07d474cb category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: win-64 dependencies: @@ -1466,10 +1466,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.1-py311h3f79411_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py311h3f79411_0.conda hash: - md5: 3d3e2e033fff6713ab0764b096075216 - sha256: fe80ef99e7c4d7fcc1be28615a7d1e91396c3410cad245969633d1d1155f62ef + md5: 6c399663cab648a17883bf73f3057f04 + sha256: e835c0f2d9070a9262820e9cf5177324c7df2148c4d85d756f02b38e443bd9eb category: main optional: false - name: fqdn @@ -1780,7 +1780,7 @@ package: certifi: '' h11: '>=0.16' h2: '>=3,<5' - python: '>=3.9' + python: '' sniffio: 1.* url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: @@ -1797,7 +1797,7 @@ package: certifi: '' h11: '>=0.16' h2: '>=3,<5' - python: '>=3.9' + python: '' sniffio: 1.* url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: @@ -1914,7 +1914,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -1927,7 +1927,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -2048,7 +2048,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2073,7 +2073,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2272,29 +2272,29 @@ package: category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json5 @@ -2354,7 +2354,7 @@ package: dependencies: attrs: '>=22.2.0' jsonschema-specifications: '>=2023.3.6' - python: '>=3.9' + python: '' referencing: '>=0.28.4' rpds-py: '>=0.7.1' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda @@ -2370,7 +2370,7 @@ package: dependencies: attrs: '>=22.2.0' jsonschema-specifications: '>=2023.3.6' - python: '>=3.9' + python: '' referencing: '>=0.28.4' rpds-py: '>=0.7.1' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda @@ -2384,7 +2384,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: @@ -2397,7 +2397,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: @@ -2556,7 +2556,7 @@ package: dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda hash: md5: 7129ed52335cc7164baf4d6508a3f233 @@ -2570,7 +2570,7 @@ package: dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda hash: md5: 7129ed52335cc7164baf4d6508a3f233 @@ -2652,7 +2652,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2672,7 +2672,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2702,7 +2702,7 @@ package: overrides: '>=5.0' packaging: '>=22.0' prometheus_client: '>=0.9' - python: '>=3.10' + python: '' pyzmq: '>=24' send2trash: '>=1.8.2' terminado: '>=0.8.3' @@ -2732,7 +2732,7 @@ package: overrides: '>=5.0' packaging: '>=22.0' prometheus_client: '>=0.9' - python: '>=3.10' + python: '' pyzmq: '>=24' send2trash: '>=1.8.2' terminado: '>=0.8.3' @@ -4188,10 +4188,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_2.conda hash: - md5: 5d5099916a3659a46cca8f974d0455b9 - sha256: 4539fd52a5f59039cd575caf222e22ebe57ab168cd102d182a970c1f1a72fe51 + md5: fab9b7d973248580e0300196a80c9a24 + sha256: fd5a656cfa064add64455e3b7ea046376046911c56d14dc04049e670f3b48190 category: main optional: false - name: llvm-openmp @@ -4202,10 +4202,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda hash: - md5: 2c3afd82c44b0bf59fa8f924e30c0513 - sha256: 568e9dec9078055adebf6c07202be079884b85780a4542f0f326763e6f642a2d + md5: 2dc2edf349464c8b83a576175fc2ad42 + sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b category: main optional: false - name: locket @@ -4464,7 +4464,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4477,7 +4477,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4490,7 +4490,7 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '*' + _openmp_mutex: '>=4.5' llvm-openmp: '>=20.1.8' tbb: 2021.* url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha770c72_17.conda @@ -4629,7 +4629,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4651,7 +4651,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4776,7 +4776,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4803,7 +4803,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -5135,7 +5135,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -5147,7 +5147,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -5162,7 +5162,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - numpy: '>=1.22.4' + numpy: '>=1.23,<3' python: '>=3.11,<3.12.0a0' python-dateutil: '>=2.8.2' python-tzdata: '>=2022.7' @@ -5179,7 +5179,7 @@ package: manager: conda platform: win-64 dependencies: - numpy: '>=1.22.4' + numpy: '>=1.23,<3' python: '>=3.11,<3.12.0a0' python-dateutil: '>=2.8.2' python-tzdata: '>=2022.7' @@ -5241,27 +5241,27 @@ package: category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: partd @@ -5406,27 +5406,27 @@ package: category: main optional: false - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: pluggy @@ -5478,29 +5478,29 @@ package: category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: psutil @@ -5666,7 +5666,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5678,7 +5678,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5864,7 +5864,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5885,7 +5885,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5932,7 +5932,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: md5: aa0028616c0750c773698fdc254b2b8d @@ -5944,7 +5944,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: md5: aa0028616c0750c773698fdc254b2b8d @@ -6104,7 +6104,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -6117,7 +6117,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -6130,7 +6130,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda hash: md5: 23029aae904a2ba587daba708208012f @@ -6142,7 +6142,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda hash: md5: 23029aae904a2ba587daba708208012f @@ -6353,15 +6353,14 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' - libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=14' - python: '>=3.11,<3.12.0a0' + python: '' python_abi: 3.11.* zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py311hc251a9f_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py311h2315fbb_2.conda hash: - md5: 127def291ff2117528691d5d078e736d - sha256: 8820e883ce2b44f6512dc8fab13c959ee7a1366ed97801020965f354e4c71372 + md5: 44ada6f1f3b276f5bb02a4765e4404f7 + sha256: bade0b8c71eb9e2fa56c22aea562c96135f44bd6335dd00b7198be7569968f8e category: dev optional: true - name: pyzmq @@ -6369,17 +6368,16 @@ package: manager: conda platform: win-64 dependencies: - libsodium: '>=1.0.20,<1.0.21.0a0' - python: '>=3.11,<3.12.0a0' + python: '' python_abi: 3.11.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py311ha362a94_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py311hb77b9c8_2.conda hash: - md5: 365e79343bf4fdda64adbd6dba692712 - sha256: cc6e12a359c71586ec3e98820f6bd510e1bcd0e73faee36c41d6ed04b0c92174 + md5: 4e1dcb30debb578be76b7798296be3b3 + sha256: 7afc1ced3e240b0ba164023c4015638fc5cc23cb7af3c544a7890e367bc44322 category: dev optional: true - name: readline @@ -6431,7 +6429,7 @@ package: platform: linux-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda @@ -6446,7 +6444,7 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda @@ -6543,7 +6541,7 @@ package: platform: linux-64 dependencies: lark: '>=1.2.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda hash: md5: 7234f99325263a5af6d4cd195035e8f2 @@ -6556,7 +6554,7 @@ package: platform: win-64 dependencies: lark: '>=1.2.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda hash: md5: 7234f99325263a5af6d4cd195035e8f2 @@ -6564,7 +6562,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: linux-64 dependencies: @@ -6572,14 +6570,14 @@ package: libgcc: '>=14' python: '' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.0-py311h902ca64_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py311h902ca64_0.conda hash: - md5: 397e7e07356db9425069fa86e8920404 - sha256: c32892bc6ec30f932424c6a02f2b6de1062581a1cc942127792ec7980ddc31aa + md5: 486cb477243a9538130c439e66277069 + sha256: 72231a2721aa5d1bcee36bf1a33e57e500f820feb09058700365ea8e5d9c982d category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: win-64 dependencies: @@ -6588,10 +6586,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.0-py311hf51aa87_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py311hf51aa87_0.conda hash: - md5: 2380617b3e31a99fff5fc05b1eef6b40 - sha256: ec07fee2b2d325b4a6c1284663eebfa2a85298c626a6040c86b5ea72f8bf7df5 + md5: 46f38e6cf7d54ba38d57400d72a3fe51 + sha256: 99984fb89ee84721a7d31e1346f4f973e71e284252e17d7c7a1806e945ab6e14 category: dev optional: true - name: rtree @@ -6676,7 +6674,7 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: <2.3 + numpy: '>=1.23.5' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda @@ -6693,7 +6691,7 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: <2.3 + numpy: '>=1.23.5' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' @@ -6761,7 +6759,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -6773,7 +6771,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -6853,27 +6851,27 @@ package: category: main optional: false - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: sphinx @@ -7648,7 +7646,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: md5: 30a0a26c8abccf4b7991d590fe17c699 @@ -7660,7 +7658,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: md5: 30a0a26c8abccf4b7991d590fe17c699 @@ -7847,27 +7845,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-inspection @@ -7897,27 +7895,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_utils @@ -8550,13 +8548,13 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.11' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h9ecbd09_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py311h49ec1c0_3.conda hash: - md5: ca02de88df1cc3cfc8f24766ff50cb3c - sha256: 76d28240cc9fa0c3cb2cde750ecaf98716ce397afaf1ce90f8d18f5f43a122f1 + md5: 493d5b49a7b416746b2fe41c82e27dce + sha256: 2d2adc6539abbab7a599357b73faf8e3d8c9fc40f31d9fdf2e2927c315f02a6a category: main optional: false - name: zstandard @@ -8568,12 +8566,12 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311he736701_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py311h3485c13_3.conda hash: - md5: 8355ec073f73581e29adf77c49096aed - sha256: aaae40057eac5b5996db4e6b3d8eb00d38455e67571e796135d29702a19736bd + md5: 8265296d9de69a925580b651c0c717ae + sha256: 5b3a2666e21723b96b3637aef4d108c2996979efe5719998649184f01b20ed7e category: main optional: false - name: zstd @@ -8607,41 +8605,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.5.1.dev157+111b167 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 111b167f8d9a185ff6f140f055297f0a6945de6e source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.5.1.dev157+111b167 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 111b167f8d9a185ff6f140f055297f0a6945de6e source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev42+ae647668 manager: pip platform: linux-64 dependencies: @@ -8649,16 +8647,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: ae6476684d48892a7ce863c1165b8f6f488a3867 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev42+ae647668 manager: pip platform: win-64 dependencies: @@ -8666,12 +8664,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: ae6476684d48892a7ce863c1165b8f6f488a3867 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 category: main optional: false - name: grid-apps @@ -8680,8 +8678,8 @@ package: platform: linux-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.5.1.dev157+111b167 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8699,8 +8697,8 @@ package: platform: win-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.5.1.dev157+111b167 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8713,44 +8711,44 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: linux-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: win-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index 7ba2446ff..bbb847f63 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -15,8 +15,8 @@ version: 1 metadata: content_hash: - win-64: e6a7f9b65a8eab774bcc6e97dd60c58d129bef69f0979db3e945d74561748784 - linux-64: faba276316c29373b2d6b7b8c7642398283e4ca103c3aa3df2fd0358aea7e262 + win-64: 1184306731b94290082a07ff69198b9bab01231154ed953a92d9f4ce512366a2 + linux-64: 81aedccfb6112401b5a94619d03cb65bd3c0a1242f995c2c22516fc86dbbaec5 channels: - url: conda-forge used_env_vars: [] @@ -54,6 +54,32 @@ package: sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d category: main optional: false +- name: _python_abi3_support + version: '1.0' + manager: conda + platform: linux-64 + dependencies: + cpython: '' + python-gil: '' + url: https://repo.prefix.dev/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + hash: + md5: aaa2a381ccc56eac91d63b6c1240312f + sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661 + category: dev + optional: true +- name: _python_abi3_support + version: '1.0' + manager: conda + platform: win-64 + dependencies: + cpython: '' + python-gil: '' + url: https://repo.prefix.dev/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda + hash: + md5: aaa2a381ccc56eac91d63b6c1240312f + sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661 + category: dev + optional: true - name: accessible-pygments version: 0.0.5 manager: conda @@ -137,7 +163,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.10.0-pyhe01879c_0.conda @@ -153,7 +179,7 @@ package: dependencies: exceptiongroup: '>=1.0.2' idna: '>=2.8' - python: '>=3.9' + python: '' sniffio: '>=1.1' typing_extensions: '>=4.5' url: https://repo.prefix.dev/conda-forge/noarch/anyio-4.10.0-pyhe01879c_0.conda @@ -330,7 +356,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -343,7 +369,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '>=4.0.0' url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda hash: @@ -402,31 +428,31 @@ package: category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: beautifulsoup4 - version: 4.13.4 + version: 4.13.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' soupsieve: '>=1.2' typing-extensions: '' - url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.4-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/beautifulsoup4-4.13.5-pyha770c72_0.conda hash: - md5: 9f07c4fc992adb2d6c30da7fab3959a7 - sha256: ddb0df12fd30b2d36272f5daf6b6251c7625d6a99414d7ea930005bbaecad06d + md5: de0fd9702fd4c1186e930b8c35af6b6b + sha256: d2124c0ea13527c7f54582269b3ae19541141a3740d6d779e7aa95aa82eaf561 category: dev optional: true - name: bleach @@ -434,7 +460,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -447,7 +473,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' webencodings: '' url: https://repo.prefix.dev/conda-forge/noarch/bleach-6.2.0-pyh29332c3_4.conda hash: @@ -893,7 +919,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda hash: md5: 2da13f2b299d8e1995bafbbe9689a2f7 @@ -905,7 +931,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/comm-0.2.3-pyhe01879c_0.conda hash: md5: 2da13f2b299d8e1995bafbbe9689a2f7 @@ -947,7 +973,7 @@ package: category: main optional: false - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: linux-64 dependencies: @@ -956,14 +982,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* tomli: '' - url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.4-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.5-py312h8a5da7c_0.conda hash: - md5: bad9b9d3b7b39204823c3ec42bf58473 - sha256: 7411b5574c914eb9484e536d6fa211b2ec3694b74f4a36115ab848c997213cc0 + md5: 1534a930a40c7547dfcf477884c210d7 + sha256: 163996c0940ee58e605722ab08d47746cb6618a92c35287ad574cc3b7b20d928 category: dev optional: true - name: coverage - version: 7.10.4 + version: 7.10.5 manager: conda platform: win-64 dependencies: @@ -973,10 +999,23 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.4-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.5-py312h05f76fc_0.conda + hash: + md5: b5df85abc3dd7cb713eecb7f49396e96 + sha256: 40526b427d6425558d6c9c71cdd6f009214322b96aa443fc9672947e15886f9e + category: dev + optional: true +- name: cpython + version: 3.12.11 + manager: conda + platform: linux-64 + dependencies: + python: '>=3.12,<3.13.0a0' + python_abi: '*' + url: https://repo.prefix.dev/conda-forge/noarch/cpython-3.12.11-py312hd8ed1ab_0.conda hash: - md5: c8f541c460e8b5168ee894419571d0d3 - sha256: 7cd1280f8ced38d7523f97fe39a44dd8302d80359655d827452e76f844fa59a9 + md5: e5279009e7a7f7edd3cd2880c502b3cc + sha256: 7e7bc8e73a2f3736444a8564cbece7216464c00f0bc38e604b0c792ff60d621a category: dev optional: true - name: cpython @@ -1342,10 +1381,10 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/docutils-0.18.1-py312h7900ff3_1.conda hash: - md5: b741a9f139d1ffd43cbb5da54252dae7 - sha256: 27088b406250e0189f271ed795ee929e3030a29ae67acbbf193d0e82ca7f210a + md5: 09365878b2c29a847deca0d9e1d56756 + sha256: f2c84f148afafdd07c67e03ff46262558cb02868d213dae53feb645fe0bdd183 category: dev optional: true - name: docutils @@ -1355,10 +1394,10 @@ package: dependencies: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/docutils-0.18.1-py312h2e8e312_1.conda hash: - md5: 3bcf1239777952b112ef26f2b8e4d5a7 - sha256: 7638c8adbd1ef73bb3f9ef2df24d03464b5c9622bac4816581ca365ee96718ce + md5: 766c498c3e50dac8e4605d6ac9dcf5a8 + sha256: 517fe814fbfe570978369bc6dd9f951739293cf90905213204f30b2c29df7946 category: dev optional: true - name: exceptiongroup @@ -1436,7 +1475,7 @@ package: category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: linux-64 dependencies: @@ -1447,14 +1486,14 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* unicodedata2: '>=15.1.0' - url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.1-py312h8a5da7c_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.59.2-py312h8a5da7c_0.conda hash: - md5: 313520338e97b747315b5be6a563c315 - sha256: 8c65a6c9592828ca767161b47e66e66fe8d32b8e1f8af37b10b6594ad1c77340 + md5: 4c3f3c752ec0cd37b0a0990af20fd952 + sha256: da1c642961e2cad6748266c55ee625062fbdec9f191dc16a29859b2b996a4eea category: main optional: false - name: fonttools - version: 4.59.1 + version: 4.59.2 manager: conda platform: win-64 dependencies: @@ -1466,10 +1505,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.1-py312h05f76fc_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.59.2-py312h05f76fc_0.conda hash: - md5: 8994cea102b73b5bd7824e291056ebe3 - sha256: aa34796eb45b4c8ed12263f32bbadfdb9a02535c93067963374530035d31a505 + md5: f7580ac5d3ac28eb32de8f6fc08fbc75 + sha256: df2e931833a9ea21f265843c2315eacb4ece35c245fd408078949529abe6c8cb category: main optional: false - name: fqdn @@ -1780,7 +1819,7 @@ package: certifi: '' h11: '>=0.16' h2: '>=3,<5' - python: '>=3.9' + python: '' sniffio: 1.* url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: @@ -1797,7 +1836,7 @@ package: certifi: '' h11: '>=0.16' h2: '>=3,<5' - python: '>=3.9' + python: '' sniffio: 1.* url: https://repo.prefix.dev/conda-forge/noarch/httpcore-1.0.9-pyh29332c3_0.conda hash: @@ -1914,7 +1953,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -1927,7 +1966,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' zipp: '>=3.20' url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda hash: @@ -2048,7 +2087,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2073,7 +2112,7 @@ package: pickleshare: '' prompt-toolkit: '>=3.0.41,<3.1.0' pygments: '>=2.4.0' - python: '>=3.11' + python: '' stack_data: '' traitlets: '>=5.13.0' typing_extensions: '>=4.6' @@ -2272,29 +2311,29 @@ package: category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: joblib - version: 1.5.1 + version: 1.5.2 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' setuptools: '' - url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/joblib-1.5.2-pyhd8ed1ab_0.conda hash: - md5: fb1c14694de51a476ce8636d92b6f42c - sha256: e5a4eca9a5d8adfaa3d51e24eefd1a6d560cb3b33a7e1eee13e410bec457b7ed + md5: 4e717929cfa0d49cef92d911e31d0e90 + sha256: 6fc414c5ae7289739c2ba75ff569b79f72e38991d61eb67426a8a4b92f90462c category: main optional: false - name: json5 @@ -2354,7 +2393,7 @@ package: dependencies: attrs: '>=22.2.0' jsonschema-specifications: '>=2023.3.6' - python: '>=3.9' + python: '' referencing: '>=0.28.4' rpds-py: '>=0.7.1' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda @@ -2370,7 +2409,7 @@ package: dependencies: attrs: '>=22.2.0' jsonschema-specifications: '>=2023.3.6' - python: '>=3.9' + python: '' referencing: '>=0.28.4' rpds-py: '>=0.7.1' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-4.25.1-pyhe01879c_0.conda @@ -2384,7 +2423,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: @@ -2397,7 +2436,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' referencing: '>=0.31.0' url: https://repo.prefix.dev/conda-forge/noarch/jsonschema-specifications-2025.4.1-pyh29332c3_0.conda hash: @@ -2556,7 +2595,7 @@ package: dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda hash: md5: 7129ed52335cc7164baf4d6508a3f233 @@ -2570,7 +2609,7 @@ package: dependencies: importlib-metadata: '>=4.8.3' jupyter_server: '>=1.1.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/jupyter-lsp-2.2.6-pyhe01879c_0.conda hash: md5: 7129ed52335cc7164baf4d6508a3f233 @@ -2652,7 +2691,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2672,7 +2711,7 @@ package: dependencies: jsonschema-with-format-nongpl: '>=4.18.0' packaging: '' - python: '>=3.9' + python: '' python-json-logger: '>=2.0.4' pyyaml: '>=5.3' referencing: '' @@ -2702,7 +2741,7 @@ package: overrides: '>=5.0' packaging: '>=22.0' prometheus_client: '>=0.9' - python: '>=3.10' + python: '' pyzmq: '>=24' send2trash: '>=1.8.2' terminado: '>=0.8.3' @@ -2732,7 +2771,7 @@ package: overrides: '>=5.0' packaging: '>=22.0' prometheus_client: '>=0.9' - python: '>=3.10' + python: '' pyzmq: '>=24' send2trash: '>=1.8.2' terminado: '>=0.8.3' @@ -4188,10 +4227,10 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/llvm-openmp-20.1.8-h4922eb0_2.conda hash: - md5: 5d5099916a3659a46cca8f974d0455b9 - sha256: 4539fd52a5f59039cd575caf222e22ebe57ab168cd102d182a970c1f1a72fe51 + md5: fab9b7d973248580e0300196a80c9a24 + sha256: fd5a656cfa064add64455e3b7ea046376046911c56d14dc04049e670f3b48190 category: main optional: false - name: llvm-openmp @@ -4202,10 +4241,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/llvm-openmp-20.1.8-hfa2b4ca_2.conda hash: - md5: 2c3afd82c44b0bf59fa8f924e30c0513 - sha256: 568e9dec9078055adebf6c07202be079884b85780a4542f0f326763e6f642a2d + md5: 2dc2edf349464c8b83a576175fc2ad42 + sha256: 8970b7f9057a1c2c18bfd743c6f5ce73b86197d7724423de4fa3d03911d5874b category: main optional: false - name: locket @@ -4464,7 +4503,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4477,7 +4516,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' typing_extensions: '' url: https://repo.prefix.dev/conda-forge/noarch/mistune-3.1.3-pyh29332c3_0.conda hash: @@ -4490,7 +4529,7 @@ package: manager: conda platform: linux-64 dependencies: - _openmp_mutex: '*' + _openmp_mutex: '>=4.5' llvm-openmp: '>=20.1.8' tbb: 2021.* url: https://repo.prefix.dev/conda-forge/linux-64/mkl-2024.2.2-ha770c72_17.conda @@ -4629,7 +4668,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4651,7 +4690,7 @@ package: myst-parser: '>=1.0.0' nbclient: '' nbformat: '>=5.0' - python: '>=3.9' + python: '' pyyaml: '' sphinx: '>=5' typing_extensions: '' @@ -4776,7 +4815,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -4803,7 +4842,7 @@ package: packaging: '' pandocfilters: '>=1.4.1' pygments: '>=2.4.1' - python: '>=3.9' + python: '' traitlets: '>=5.1' url: https://repo.prefix.dev/conda-forge/noarch/nbconvert-core-7.16.6-pyh29332c3_0.conda hash: @@ -5135,7 +5174,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -5147,7 +5186,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda hash: md5: 58335b26c38bf4a20f399384c33cbcf9 @@ -5162,7 +5201,7 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - numpy: '>=1.22.4' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python-dateutil: '>=2.8.2' python-tzdata: '>=2022.7' @@ -5179,7 +5218,7 @@ package: manager: conda platform: win-64 dependencies: - numpy: '>=1.22.4' + numpy: '>=1.23,<3' python: '>=3.12,<3.13.0a0' python-dateutil: '>=2.8.2' python-tzdata: '>=2022.7' @@ -5241,27 +5280,27 @@ package: category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: parso - version: 0.8.4 + version: 0.8.5 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_1.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/parso-0.8.5-pyhcf101f3_0.conda hash: - md5: 5c092057b6badd30f75b06244ecd01c9 - sha256: 17131120c10401a99205fc6fe436e7903c0fa092f1b3e80452927ab377239bcc + md5: a110716cdb11cf51482ff4000dc253d7 + sha256: 30de7b4d15fbe53ffe052feccde31223a236dae0495bab54ab2479de30b2990f category: dev optional: true - name: partd @@ -5406,27 +5445,27 @@ package: category: main optional: false - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: platformdirs - version: 4.3.8 + version: 4.4.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.3.8-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/platformdirs-4.4.0-pyhcf101f3_0.conda hash: - md5: 424844562f5d337077b445ec6b1398a7 - sha256: 0f48999a28019c329cd3f6fd2f01f09fc32cc832f7d6bbe38087ddac858feaa3 + md5: cc9d9a3929503785403dbfad9f707145 + sha256: dfe0fa6e351d2b0cef95ac1a1533d4f960d3992f9e0f82aeb5ec3623a699896b category: dev optional: true - name: pluggy @@ -5478,29 +5517,29 @@ package: category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: prompt-toolkit - version: 3.0.51 + version: 3.0.52 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' wcwidth: '' - url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.51-pyha770c72_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prompt-toolkit-3.0.52-pyha770c72_0.conda hash: - md5: d17ae9db4dc594267181bd199bf9a551 - sha256: ebc1bb62ac612af6d40667da266ff723662394c0ca78935340a5b5c14831227b + md5: edb16f14d920fb3faf17f5ce582942d6 + sha256: 4817651a276016f3838957bfdf963386438c70761e9faec7749d411635979bae category: dev optional: true - name: psutil @@ -5666,7 +5705,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5678,7 +5717,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda hash: md5: 12c566707c80111f9799308d9e265aef @@ -5864,7 +5903,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5885,7 +5924,7 @@ package: isort: '>=4.2.5,<7,!=5.13.0' mccabe: '>=0.6,<0.8' platformdirs: '>=2.2.0' - python: '>=3.9' + python: '' tomli: '>=1.1.0' tomlkit: '>=0.10.1' typing_extensions: '>=3.10.0' @@ -5932,7 +5971,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: md5: aa0028616c0750c773698fdc254b2b8d @@ -5944,7 +5983,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhe01879c_2.conda hash: md5: aa0028616c0750c773698fdc254b2b8d @@ -6104,7 +6143,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -6117,7 +6156,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' six: '>=1.5' url: https://repo.prefix.dev/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhe01879c_2.conda hash: @@ -6130,7 +6169,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda hash: md5: 23029aae904a2ba587daba708208012f @@ -6142,13 +6181,39 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/python-fastjsonschema-2.21.2-pyhe01879c_0.conda hash: md5: 23029aae904a2ba587daba708208012f sha256: df9aa74e9e28e8d1309274648aac08ec447a92512c33f61a8de0afa9ce32ebe8 category: dev optional: true +- name: python-gil + version: 3.12.11 + manager: conda + platform: linux-64 + dependencies: + cpython: 3.12.11.* + python_abi: '*' + url: https://repo.prefix.dev/conda-forge/noarch/python-gil-3.12.11-hd8ed1ab_0.conda + hash: + md5: 859c6bec94cd74119f12b961aba965a8 + sha256: b8afeaefe409d61fa4b68513b25a66bb17f3ca430d67cfea51083c7bfbe098ef + category: dev + optional: true +- name: python-gil + version: 3.12.11 + manager: conda + platform: win-64 + dependencies: + cpython: 3.12.11.* + python_abi: '*' + url: https://repo.prefix.dev/conda-forge/noarch/python-gil-3.12.11-hd8ed1ab_0.conda + hash: + md5: 859c6bec94cd74119f12b961aba965a8 + sha256: b8afeaefe409d61fa4b68513b25a66bb17f3ca430d67cfea51083c7bfbe098ef + category: dev + optional: true - name: python-json-logger version: 2.0.7 manager: conda @@ -6352,16 +6417,16 @@ package: platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' + _python_abi3_support: 1.* + cpython: '>=3.12' libgcc: '>=14' - libsodium: '>=1.0.20,<1.0.21.0a0' libstdcxx: '>=14' - python: '>=3.12,<3.13.0a0' - python_abi: 3.12.* + python: '' zeromq: '>=4.3.5,<4.4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py312h6748674_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pyzmq-27.0.2-py312hfb55c3c_2.conda hash: - md5: e0770749ec419e8e68e71716507c1be4 - sha256: d697fb7e36427b085feffd63288365be543f7c2a779e35205cb1e52d1ca49957 + md5: ba7305f9723cc16cf79288e0bb7b34b2 + sha256: dcf749dcf86feac506c32dc8469f0b8201f5c5077026ade7fe01bf3b90f74ecd category: dev optional: true - name: pyzmq @@ -6369,17 +6434,17 @@ package: manager: conda platform: win-64 dependencies: - libsodium: '>=1.0.20,<1.0.21.0a0' - python: '>=3.12,<3.13.0a0' - python_abi: 3.12.* + _python_abi3_support: 1.* + cpython: '>=3.12' + python: '' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' zeromq: '>=4.3.5,<4.3.6.0a0' - url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py312h5b324a9_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/pyzmq-27.0.2-py312hbb5da91_2.conda hash: - md5: 75080ef44e38151a68c2993b2fe45041 - sha256: acae7d5e02cf1850b7a0d23cdfe4167aa9ff8c6e154c2f7413400e61e1614c6f + md5: 9648d45e60a9d47b17091fdfae12c4bc + sha256: f88274990a913c536c17fb03ed8256b33f8081dc62aed009260f1b031c5086ba category: dev optional: true - name: readline @@ -6431,7 +6496,7 @@ package: platform: linux-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda @@ -6446,7 +6511,7 @@ package: platform: win-64 dependencies: attrs: '>=22.2.0' - python: '>=3.9' + python: '' rpds-py: '>=0.7.0' typing_extensions: '>=4.4.0' url: https://repo.prefix.dev/conda-forge/noarch/referencing-0.36.2-pyh29332c3_0.conda @@ -6543,7 +6608,7 @@ package: platform: linux-64 dependencies: lark: '>=1.2.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda hash: md5: 7234f99325263a5af6d4cd195035e8f2 @@ -6556,7 +6621,7 @@ package: platform: win-64 dependencies: lark: '>=1.2.2' - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/rfc3987-syntax-1.1.0-pyhe01879c_1.conda hash: md5: 7234f99325263a5af6d4cd195035e8f2 @@ -6564,7 +6629,7 @@ package: category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: linux-64 dependencies: @@ -6572,14 +6637,14 @@ package: libgcc: '>=14' python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.0-py312h868fb18_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/rpds-py-0.27.1-py312h868fb18_0.conda hash: - md5: 3d3d11430ec826a845a0e9d6ccefa294 - sha256: cfc9c79f0e2658754b02efb890fe3c835d865ed0535155787815ae16e56dbe9c + md5: 2c5c390ddeffeb6eecc79df2416783d0 + sha256: d9ace02196f551cbe608fd9d64628239a2101815a96a8a095e7a426b19956176 category: dev optional: true - name: rpds-py - version: 0.27.0 + version: 0.27.1 manager: conda platform: win-64 dependencies: @@ -6588,10 +6653,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.0-py312hdabe01f_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/rpds-py-0.27.1-py312hdabe01f_0.conda hash: - md5: f504b7d8f88ecdadb851a9cb77645b99 - sha256: 779d7b805ebf5f3ab48c2e4556f2b02861253ab4948266a55ba6e2c5c4642fc3 + md5: 995d26b9ef26e098ddb6a14d999a5a1b + sha256: 3d475dd9aba7517c744ba7e78e5a902dc37029de2b74be7e04d6885bfba65904 category: dev optional: true - name: rtree @@ -6676,7 +6741,7 @@ package: libgfortran5: '>=13.3.0' liblapack: '>=3.9.0,<4.0a0' libstdcxx: '>=13' - numpy: <2.3 + numpy: '>=1.23.5' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* url: https://repo.prefix.dev/conda-forge/linux-64/scipy-1.14.1-py312h62794b6_2.conda @@ -6693,7 +6758,7 @@ package: libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' - numpy: <2.3 + numpy: '>=1.23.5' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' @@ -6761,7 +6826,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -6773,7 +6838,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda hash: md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -6853,27 +6918,27 @@ package: category: main optional: false - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: soupsieve - version: '2.7' + version: '2.8' manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.7-pyhd8ed1ab_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8-pyhd8ed1ab_0.conda hash: - md5: fb32097c717486aa34b38a9db57eb49e - sha256: 7518506cce9a736042132f307b3f4abce63bf076f5fb07c1f4e506c0b214295a + md5: 18c019ccf43769d211f2cf78e9ad46c2 + sha256: c978576cf9366ba576349b93be1cfd9311c00537622a2f9e14ba2b90c97cae9c category: dev optional: true - name: sphinx @@ -7648,7 +7713,7 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: md5: 30a0a26c8abccf4b7991d590fe17c699 @@ -7660,7 +7725,7 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '' url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.2.1-pyhe01879c_2.conda hash: md5: 30a0a26c8abccf4b7991d590fe17c699 @@ -7847,27 +7912,27 @@ package: category: dev optional: true - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - typing_extensions: ==4.14.1 - url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.14.1-h4440ef1_0.conda + typing_extensions: ==4.15.0 + url: https://repo.prefix.dev/conda-forge/noarch/typing-extensions-4.15.0-h396c80c_0.conda hash: - md5: 75be1a943e0a7f99fcf118309092c635 - sha256: 349951278fa8d0860ec6b61fcdc1e6f604e6fce74fabf73af2e39a37979d0223 + md5: edd329d7d3a4ab45dcf905899a7a6115 + sha256: 7c2df5721c742c2a47b2c8f960e718c930031663ac1174da67c1ed5999f7938c category: main optional: false - name: typing-inspection @@ -7897,27 +7962,27 @@ package: category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_extensions - version: 4.14.1 + version: 4.15.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda + python: '' + url: https://repo.prefix.dev/conda-forge/noarch/typing_extensions-4.15.0-pyhcf101f3_0.conda hash: - md5: e523f4f1e980ed7a4240d7e27e9ec81f - sha256: 4f52390e331ea8b9019b87effaebc4f80c6466d09f68453f52d5cdc2a3e1194f + md5: 0caa1af407ecff61170c9437a808404d + sha256: 032271135bca55aeb156cee361c81350c6f3fb203f57d024d7e5a1fc9ef18731 category: main optional: false - name: typing_utils @@ -8550,13 +8615,13 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' cffi: '>=1.11' - libgcc: '>=13' + libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h66e93f0_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/zstandard-0.23.0-py312h4c3975b_3.conda hash: - md5: 630db208bc7bbb96725ce9832c7423bb - sha256: ff62d2e1ed98a3ec18de7e5cf26c0634fd338cb87304cf03ad8cbafe6fe674ba + md5: 7a2c6e25a4fabf9fab62ee1977beabe5 + sha256: 40c76563f3a398f27b4036e468881a1f909a8c66d100a16a28c1379a0940a59c category: main optional: false - name: zstandard @@ -8568,12 +8633,12 @@ package: python: '>=3.12,<3.13.0a0' python_abi: 3.12.* ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312h4389bb4_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/zstandard-0.23.0-py312he06e257_3.conda hash: - md5: 24554d76d0efcca11faa0a013c16ed5a - sha256: 10f25f85f856dbc776b4a2cf801d31edd07cbfaa45b9cca14dd776a9f2887cb5 + md5: e23097165ce8ba29c30854c2a9e84449 + sha256: 13f43231e22173473ba300d9a128caf386ec73a18a5b9b192858ba18ea2e78f1 category: main optional: false - name: zstd @@ -8607,41 +8672,41 @@ package: category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.5.1.dev157+111b167 manager: pip platform: linux-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 111b167f8d9a185ff6f140f055297f0a6945de6e source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e category: main optional: false - name: geoapps-utils - version: 0.6.0a1 + version: 0.5.1.dev157+111b167 manager: pip platform: win-64 dependencies: - geoh5py: 0.12.0a1 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e hash: - sha256: 25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + sha256: 111b167f8d9a185ff6f140f055297f0a6945de6e source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@25bf69c7afdfce5e9d4ac7d667c88790aad9c934 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@111b167f8d9a185ff6f140f055297f0a6945de6e category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev42+ae647668 manager: pip platform: linux-64 dependencies: @@ -8649,16 +8714,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: ae6476684d48892a7ce863c1165b8f6f488a3867 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 category: main optional: false - name: geoh5py - version: 0.12.0a1 + version: 0.12.0a2.dev42+ae647668 manager: pip platform: win-64 dependencies: @@ -8666,12 +8731,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 hash: - sha256: bdf223def86a077a7e3f02b631fbffd7727527f2 + sha256: ae6476684d48892a7ce863c1165b8f6f488a3867 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@bdf223def86a077a7e3f02b631fbffd7727527f2 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ae6476684d48892a7ce863c1165b8f6f488a3867 category: main optional: false - name: grid-apps @@ -8680,8 +8745,8 @@ package: platform: linux-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.5.1.dev157+111b167 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8699,8 +8764,8 @@ package: platform: win-64 dependencies: discretize: '>=0.11.0,<0.12.dev' - geoapps-utils: 0.6.0a1 - geoh5py: 0.12.0a1 + geoapps-utils: 0.5.1.dev157+111b167 + geoh5py: 0.12.0a2.dev42+ae647668 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8713,44 +8778,44 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: linux-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false - name: mira-simpeg - version: 0.23.0.1.post2.dev57+mira.gdc256f618 + version: 0.23.0.1.post2.dev61+mira.gd794a0b24 manager: pip platform: win-64 dependencies: discretize: '>=0.11' geoana: '>=0.7.0' - geoh5py: '>=0.12.0a1,<0.13.dev' + geoh5py: '>=0.12.0a0.dev0,<0.13.dev' libdlf: '*' matplotlib: '*' numpy: '>=1.22' pymatsolver: '>=0.3' scipy: '>=1.8' - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f hash: - sha256: dc256f618543d8ee94fd36737749715fe497f8b7 + sha256: d794a0b24aafb4beccc7984e68b6904be44f860f source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@dc256f618543d8ee94fd36737749715fe497f8b7 + url: git+https://github.com/MiraGeoscience/simpeg.git@d794a0b24aafb4beccc7984e68b6904be44f860f category: main optional: false