From 1a8bcbb8f953f19c5ff68fe88049ccf8f2286035 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 20 Jan 2026 11:40:31 -0800 Subject: [PATCH 1/6] Clean up imports --- simpeg_drivers/joint/joint_cross_gradient/driver.py | 8 +------- simpeg_drivers/joint/joint_petrophysics/driver.py | 4 ---- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/simpeg_drivers/joint/joint_cross_gradient/driver.py b/simpeg_drivers/joint/joint_cross_gradient/driver.py index 8f8cacf2..5a6e4395 100644 --- a/simpeg_drivers/joint/joint_cross_gradient/driver.py +++ b/simpeg_drivers/joint/joint_cross_gradient/driver.py @@ -15,17 +15,11 @@ from itertools import combinations -import numpy as np -from geoh5py.groups.property_group_type import GroupTypeEnum from geoh5py.shared.utils import fetch_active_workspace -from simpeg import directives, maps +from simpeg import maps from simpeg.objective_function import ComboObjectiveFunction from simpeg.regularization import CrossGradient -from simpeg_drivers.components.factories import ( - DirectivesFactory, - SaveModelGeoh5Factory, -) from simpeg_drivers.joint.driver import BaseJointDriver from .options import JointCrossGradientOptions diff --git a/simpeg_drivers/joint/joint_petrophysics/driver.py b/simpeg_drivers/joint/joint_petrophysics/driver.py index 2d32bf45..f9551acf 100644 --- a/simpeg_drivers/joint/joint_petrophysics/driver.py +++ b/simpeg_drivers/joint/joint_petrophysics/driver.py @@ -10,10 +10,7 @@ from __future__ import annotations -from itertools import combinations - import numpy as np -from geoh5py.groups.property_group_type import GroupTypeEnum from geoh5py.shared.utils import fetch_active_workspace from simpeg import directives, maps, utils from simpeg.objective_function import ComboObjectiveFunction @@ -21,7 +18,6 @@ from simpeg_drivers.components.factories import ( DirectivesFactory, - SaveModelGeoh5Factory, ) from simpeg_drivers.joint.driver import BaseJointDriver From a6a2b38827fa6209bce52fd5796db609f57c0623 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 20 Jan 2026 12:52:13 -0800 Subject: [PATCH 2/6] Generalize mappings to handle MVI --- simpeg_drivers/driver.py | 16 +++++++- simpeg_drivers/joint/joint_surveys/driver.py | 9 +++++ .../magnetic_vector/driver.py | 38 ------------------- 3 files changed, 23 insertions(+), 40 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index 8867a5d5..fd94763e 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -579,10 +579,22 @@ def start_inversion_message(self): ) @property - def mapping(self) -> list[maps.IdentityMap] | None: + def mapping(self) -> list[maps.Projection] | None: """Model mapping for the inversion.""" if self._mapping is None: - self.mapping = maps.IdentityMap(nP=self.n_values) + mapping = [] + start = 0 + n_blocks = 3 if self.models.is_vector else 1 + + for _ in range(n_blocks): + mapping.append( + maps.Projection( + self.n_values * n_blocks, slice(start, start + self.n_values) + ) + ) + start += self.n_values + + self._mapping = mapping return self._mapping diff --git a/simpeg_drivers/joint/joint_surveys/driver.py b/simpeg_drivers/joint/joint_surveys/driver.py index b1ad73f5..b769fb5b 100644 --- a/simpeg_drivers/joint/joint_surveys/driver.py +++ b/simpeg_drivers/joint/joint_surveys/driver.py @@ -56,6 +56,15 @@ def validate_create_models(self): continue model_local_values = getattr(self.drivers[0].models, model_type) + + if ( + self.drivers[0].models.is_vector + and len(model_local_values) > self.drivers[0].models.n_active + ): + model_local_values = np.linalg.norm( + model_local_values.reshape((-1, 3), order="F"), axis=1 + ) + model = ( projection * model_local_values[: self.drivers[0].models.n_active] ) / (norm + 1e-8) diff --git a/simpeg_drivers/potential_fields/magnetic_vector/driver.py b/simpeg_drivers/potential_fields/magnetic_vector/driver.py index 7db5d5cc..cd2ea5fb 100644 --- a/simpeg_drivers/potential_fields/magnetic_vector/driver.py +++ b/simpeg_drivers/potential_fields/magnetic_vector/driver.py @@ -28,41 +28,3 @@ class MVIInversionDriver(InversionDriver): """Magnetic Vector inversion driver.""" _params_class = MVIInversionOptions - - @property - def mapping(self) -> list[maps.Projection] | None: - """Model mapping for the inversion.""" - if self._mapping is None: - mapping = [] - start = 0 - for _ in range(3): - mapping.append( - maps.Projection( - self.n_values * 3, slice(start, start + self.n_values) - ) - ) - start += self.n_values - - self._mapping = mapping - - return self._mapping - - @mapping.setter - def mapping(self, value: list[maps.Projection]): - if not isinstance(value, list) or len(value) != 3: - raise TypeError( - "'mapping' must be a list of 3 instances of maps.IdentityMap. " - f"Provided {value}" - ) - - if not all( - isinstance(val, maps.Projection) - and val.shape == (self.n_values, 3 * self.n_values) - for val in value - ): - raise TypeError( - "'mapping' must be an instance of maps.Projection with shape (n_values, 3 * self.n_values). " - f"Provided {value}" - ) - - self._mapping = value From 3c370c2df50c664cc0bff93523528f26f080420d Mon Sep 17 00:00:00 2001 From: dominiquef Date: Tue, 20 Jan 2026 14:30:20 -0800 Subject: [PATCH 3/6] Factor joint directives. Special handle for joint surveys with MVI --- simpeg_drivers/driver.py | 2 +- simpeg_drivers/joint/driver.py | 36 ++++++++++--------- .../joint/joint_petrophysics/driver.py | 17 ++------- simpeg_drivers/joint/joint_surveys/driver.py | 35 +++++++++++++++++- 4 files changed, 56 insertions(+), 34 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index fd94763e..02611862 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -850,7 +850,7 @@ def get_path(self, filepath: str | Path) -> str: if __name__ == "__main__": - file = Path(sys.argv[1]).resolve() + file = Path(r"C:\Users\dominiquef\Desktop\Tests\GEOPY-2620D.ui.json").resolve() input_file = load_ui_json_as_dict(file) n_workers = input_file.get("n_workers", None) n_threads = input_file.get("n_threads", None) diff --git a/simpeg_drivers/joint/driver.py b/simpeg_drivers/joint/driver.py index 07d5e30f..4938c239 100644 --- a/simpeg_drivers/joint/driver.py +++ b/simpeg_drivers/joint/driver.py @@ -164,23 +164,7 @@ def inversion_data(self): def directives(self): if getattr(self, "_directives", None) is None and not self.params.forward_only: with fetch_active_workspace(self.workspace, mode="r+"): - directives_list = self._get_drivers_directives() - - directives_list += self._get_global_model_save_directives() - directives_list.append( - directives.SaveLPModelGroup( - self.inversion_mesh.entity, - self._directives.update_irls_directive, - ) - ) - directives_list.append(self._directives.save_iteration_log_files) - self._directives.directive_list = ( - self._directives.inversion_directives + directives_list - ) - - DirectivesFactory.configure_save_directives( - self._directives.directive_list - ) + self._directives.directive_list = self._get_joint_directives() return self._directives @@ -440,6 +424,24 @@ def _get_global_model_save_directives(self): directives_list += self._get_local_model_save_directives(driver, wire) return directives_list + def _get_joint_directives(self) -> list[directives.Directive]: + """ + Create a list of directives for the joint inversion. + """ + directives_list = self._get_drivers_directives() + directives_list += self._get_global_model_save_directives() + directives_list.append( + directives.SaveLPModelGroup( + self.inversion_mesh.entity, + self._directives.update_irls_directive, + ) + ) + directives_list.append(self._directives.save_iteration_log_files) + directives_list += self._directives.inversion_directives + DirectivesFactory.configure_save_directives(directives_list) + + return directives_list + def _get_local_model_save_directives( self, driver, wire ) -> list[directives.Directive]: diff --git a/simpeg_drivers/joint/joint_petrophysics/driver.py b/simpeg_drivers/joint/joint_petrophysics/driver.py index f9551acf..2a5b1377 100644 --- a/simpeg_drivers/joint/joint_petrophysics/driver.py +++ b/simpeg_drivers/joint/joint_petrophysics/driver.py @@ -44,7 +44,7 @@ def __init__(self, params: JointPetrophysicsOptions): def directives(self): if getattr(self, "_directives", None) is None and not self.params.forward_only: with fetch_active_workspace(self.workspace, mode="r+"): - directives_list = self._get_drivers_directives() + directives_list = self._get_joint_directives() directives_list.append( directives.PGI_UpdateParameters( update_gmm=True, @@ -54,7 +54,6 @@ def directives(self): ], ) ) - directives_list += self._get_global_model_save_directives() # TODO: To bring back once we let the classification change # directives_list.append( @@ -74,20 +73,8 @@ def directives(self): # reference_type=self.params.models.petrophysical_model.entity_type, # ) # ) - directives_list.append( - directives.SaveLPModelGroup( - self.inversion_mesh.entity, - self._directives.update_irls_directive, - ) - ) - directives_list.append(self._directives.save_iteration_log_files) - self._directives.directive_list = ( - self._directives.inversion_directives + directives_list - ) - DirectivesFactory.configure_save_directives( - self._directives.directive_list - ) + self._directives.directive_list = directives_list return self._directives diff --git a/simpeg_drivers/joint/joint_surveys/driver.py b/simpeg_drivers/joint/joint_surveys/driver.py index b769fb5b..3341b85b 100644 --- a/simpeg_drivers/joint/joint_surveys/driver.py +++ b/simpeg_drivers/joint/joint_surveys/driver.py @@ -15,7 +15,7 @@ import numpy as np from geoh5py.shared.utils import fetch_active_workspace -from simpeg import maps +from simpeg import directives, maps from simpeg_drivers.driver import InversionDriver from simpeg_drivers.joint.driver import BaseJointDriver @@ -110,6 +110,39 @@ def _get_global_model_save_directives(self): return directives_list + @property + def directives(self): + if getattr(self, "_directives", None) is None and not self.params.forward_only: + with fetch_active_workspace(self.workspace, mode="r+"): + directives_list = self._get_joint_directives() + + if self.models.is_vector: + for directive in directives_list: + if isinstance(directive, directives.VectorInversion): + directives_list.remove(directive) + + reference_angles = ( + getattr(self.params.models, "reference_model", None) + is not None, + getattr(self.params.models, "reference_inclination", None) + is not None, + getattr(self.params.models, "reference_declination", None) + is not None, + ) + + vector_directive = directives.VectorInversion( + self.data_misfit.objfcts, + self.regularization, + chifact_target=self.params.cooling_schedule.chi_factor * 2, + reference_angles=reference_angles, + ) + + directives_list = [vector_directive] + directives_list + + self._directives.directive_list = directives_list + + return self._directives + JointSurveyDriver.n_values = InversionDriver.n_values JointSurveyDriver.mapping = InversionDriver.mapping From dfd6c1990abc39494568243a388266edb91de57e Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 21 Jan 2026 08:39:42 -0800 Subject: [PATCH 4/6] Re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 44 +- environments/py-3.10-linux-64.conda.lock.yml | 22 +- .../py-3.10-win-64-dev.conda.lock.yml | 44 +- environments/py-3.10-win-64.conda.lock.yml | 22 +- .../py-3.11-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.11-linux-64.conda.lock.yml | 26 +- .../py-3.11-win-64-dev.conda.lock.yml | 48 +- environments/py-3.11-win-64.conda.lock.yml | 26 +- .../py-3.12-linux-64-dev.conda.lock.yml | 48 +- environments/py-3.12-linux-64.conda.lock.yml | 26 +- .../py-3.12-win-64-dev.conda.lock.yml | 48 +- environments/py-3.12-win-64.conda.lock.yml | 26 +- py-3.10.conda-lock.yml | 386 ++++++++-------- py-3.11.conda-lock.yml | 420 +++++++++--------- py-3.12.conda-lock.yml | 420 +++++++++--------- pyproject.toml | 2 +- 16 files changed, 828 insertions(+), 828 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 d4634df7..89954fc3 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: 2b50544cb4f1d5b69b9b4ae438e854dd769e9447f4d1f6f37b9c8332259e2f13 +# input_hash: 56acf844153236bc0bae9c73a9c7a6769bafd992ebe223ac3fa1ee1ba32d25ef channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - asciitree=0.3.3=py_2 - astroid=4.0.3=py310hff52083_0 - asttokens=3.0.1=pyhd8ed1ab_0 - - async-lru=2.0.5=pyh29332c3_0 + - async-lru=2.1.0=pyhcf101f3_0 - attrs=25.4.0=pyhcf101f3_1 - babel=2.17.0=pyhd8ed1ab_0 - backports.zstd=1.3.0=py310h69bd2ac_0 @@ -47,7 +47,7 @@ dependencies: - debugpy=1.8.18=py310h25320af_0 - decorator=5.2.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - discretize=0.11.3=py310hc563356_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310hff52083_1 @@ -57,12 +57,12 @@ dependencies: - fonttools=4.61.1=py310h3406613_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py310hc563356_1 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py310h4aa865e_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h1b119a7_105 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -93,17 +93,17 @@ dependencies: - jupyter_core=5.9.1=pyhc90fa1f_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.5.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.4=pyhcf101f3_0 + - jupyterlab=4.5.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.18.1=pyh80e38bb_0 + - jupytext=1.19.0=pyh0398c0e_0 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py310haaf941d_2 - krb5=1.21.3=h659f571_0 - lark=1.3.1=pyhd8ed1ab_0 - - lcms2=2.17=h717163a_0 + - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 @@ -129,14 +129,14 @@ dependencies: - libiconv=1.18=h3b78370_2 - libjpeg-turbo=3.1.2=hb03c661_0 - liblapack=3.9.0=37_h5e43f62_mkl - - liblzma=5.8.1=hb9d3cd8_2 + - liblzma=5.8.2=hb03c661_0 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.53=h421ea60_0 + - libpng=1.6.54=h421ea60_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.51.1=h0c1763c_1 + - libsqlite=3.51.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.2.0=h934c35e_16 - libstdcxx-ng=15.2.0=hdf11a46_16 @@ -173,7 +173,7 @@ dependencies: - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - nodejs=22.6.0=hc19f0b3_1 - - notebook=7.5.1=pyhcf101f3_0 + - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 @@ -192,7 +192,7 @@ dependencies: - pip=25.3=pyh8b19718_0 - platformdirs=4.5.1=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - prometheus_client=0.23.1=pyhd8ed1ab_0 + - prometheus_client=0.24.1=pyhd8ed1ab_0 - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.2.1=py310h139afa4_0 - pthread-stubs=0.4=hb9d3cd8_1002 @@ -205,7 +205,7 @@ dependencies: - pygments=2.19.2=pyhd8ed1ab_0 - pylint=4.0.4=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 @@ -230,13 +230,13 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.6.1=py310h27f47ee_0 - scipy=1.14.1=py310hfcf56fc_2 - - send2trash=2.0.0=pyha191276_0 - - setuptools=80.9.0=pyhff2d567_0 + - send2trash=2.1.0=pyha191276_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.1=pyhd8ed1ab_0 + - soupsieve=2.8.2=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -251,8 +251,8 @@ dependencies: - threadpoolctl=3.6.0=pyhecae5ae_0 - tinycss2=1.5.1=pyhcf101f3_0 - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - tornado=6.5.3=py310h7c4b9e2_0 - tqdm=4.67.1=pyhd8ed1ab_1 @@ -284,9 +284,9 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 366ab5b8..8c7f4583 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: 2b50544cb4f1d5b69b9b4ae438e854dd769e9447f4d1f6f37b9c8332259e2f13 +# input_hash: 56acf844153236bc0bae9c73a9c7a6769bafd992ebe223ac3fa1ee1ba32d25ef channels: - conda-forge @@ -32,11 +32,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.61.1=py310h3406613_0 - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py310hc563356_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py310h4aa865e_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h1b119a7_105 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=75.1=he02047a_0 @@ -46,7 +46,7 @@ dependencies: - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py310haaf941d_2 - krb5=1.21.3=h659f571_0 - - lcms2=2.17=h717163a_0 + - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 @@ -72,13 +72,13 @@ dependencies: - libiconv=1.18=h3b78370_2 - libjpeg-turbo=3.1.2=hb03c661_0 - liblapack=3.9.0=37_h5e43f62_mkl - - liblzma=5.8.1=hb9d3cd8_2 + - liblzma=5.8.2=hb03c661_0 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.53=h421ea60_0 + - libpng=1.6.54=h421ea60_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.51.1=h0c1763c_1 + - libsqlite=3.51.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.2.0=h934c35e_16 - libstdcxx-ng=15.2.0=hdf11a46_16 @@ -116,7 +116,7 @@ dependencies: - pydantic-core=2.41.5=py310hd8f68c5_1 - pydiso=0.1.2=py310h4b187eb_1 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - python=3.10.19=h3c07f61_2_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -129,7 +129,7 @@ dependencies: - rtree=1.2.0=py310haf1e407_1 - scikit-learn=1.6.1=py310h27f47ee_0 - scipy=1.14.1=py310hfcf56fc_2 - - setuptools=80.9.0=pyhff2d567_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hb700be7_5 @@ -157,9 +157,9 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 6b994403..bd8953b3 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: ade6f8568a23d600ae9ce846ee88765a4745040016210637a40b1410b32073fe +# input_hash: 4095d8c1a6c5ba4facb54b1eef593eaa3c13a1bb5dba5638b7d7103f84795d37 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - asciitree=0.3.3=py_2 - astroid=4.0.3=py310h5588dad_0 - asttokens=3.0.1=pyhd8ed1ab_0 - - async-lru=2.0.5=pyh29332c3_0 + - async-lru=2.1.0=pyhcf101f3_0 - attrs=25.4.0=pyhcf101f3_1 - babel=2.17.0=pyhd8ed1ab_0 - backports.zstd=1.3.0=py310h458dff3_0 @@ -46,7 +46,7 @@ dependencies: - debugpy=1.8.19=py310h699e580_0 - decorator=5.2.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - dill=0.4.0=pyhcf101f3_1 + - dill=0.4.1=pyhcf101f3_0 - discretize=0.11.3=py310hfb7dd09_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py310h5588dad_1 @@ -56,12 +56,12 @@ dependencies: - fonttools=4.61.1=py310hdb0e946_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py310hfb7dd09_1 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py310hb7e4da9_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_h89f0904_105 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -92,16 +92,16 @@ dependencies: - jupyter_core=5.9.1=pyh6dadd2b_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.5.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.4=pyhcf101f3_0 + - jupyterlab=4.5.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.18.1=pyh80e38bb_0 + - jupytext=1.19.0=pyh0398c0e_0 - kiwisolver=1.4.9=py310h1e1005b_2 - krb5=1.21.3=hdf4eb48_0 - lark=1.3.1=pyhd8ed1ab_0 - - lcms2=2.17=hbcf6048_0 + - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=35_h5709861_mkl @@ -122,11 +122,11 @@ dependencies: - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - liblapack=3.9.0=35_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.54=h7351971_0 - libsodium=1.0.20=hc70643c_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.51.1=hf5d6505_1 + - libsqlite=3.51.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 @@ -156,7 +156,7 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - nodejs=25.2.1=he453025_1 - - notebook=7.5.1=pyhcf101f3_0 + - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 @@ -174,7 +174,7 @@ dependencies: - pip=25.3=pyh8b19718_0 - platformdirs=4.5.1=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - prometheus_client=0.23.1=pyhd8ed1ab_0 + - prometheus_client=0.24.1=pyhd8ed1ab_0 - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.2.1=py310h1637853_0 - pthread-stubs=0.4=h0e40799_1002 @@ -186,7 +186,7 @@ dependencies: - pygments=2.19.2=pyhd8ed1ab_0 - pylint=4.0.4=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 @@ -212,13 +212,13 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.6.1=py310hf2a6c47_0 - scipy=1.14.1=py310hbd0dde3_2 - - send2trash=2.0.0=pyh6dadd2b_0 - - setuptools=80.9.0=pyhff2d567_0 + - send2trash=2.1.0=pyh6dadd2b_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.1=pyhd8ed1ab_0 + - soupsieve=2.8.2=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -233,8 +233,8 @@ dependencies: - threadpoolctl=3.6.0=pyhecae5ae_0 - tinycss2=1.5.1=pyhcf101f3_0 - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - tornado=6.5.4=py310h29418f3_0 - tqdm=4.67.1=pyhd8ed1ab_1 @@ -271,9 +271,9 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 2eb23b9d..fbb8773b 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: ade6f8568a23d600ae9ce846ee88765a4745040016210637a40b1410b32073fe +# input_hash: 4095d8c1a6c5ba4facb54b1eef593eaa3c13a1bb5dba5638b7d7103f84795d37 channels: - conda-forge @@ -31,11 +31,11 @@ dependencies: - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.61.1=py310hdb0e946_0 - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py310hfb7dd09_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py310hb7e4da9_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_h89f0904_105 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=78.2=h637d24d_0 @@ -44,7 +44,7 @@ dependencies: - joblib=1.5.3=pyhd8ed1ab_0 - kiwisolver=1.4.9=py310h1e1005b_2 - krb5=1.21.3=hdf4eb48_0 - - lcms2=2.17=hbcf6048_0 + - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=35_h5709861_mkl @@ -65,10 +65,10 @@ dependencies: - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - liblapack=3.9.0=35_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.54=h7351971_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.51.1=hf5d6505_1 + - libsqlite=3.51.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 @@ -100,7 +100,7 @@ dependencies: - pydantic-core=2.41.5=py310h034784e_1 - pydiso=0.1.2=py310h3dbbb0c_1 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - python=3.10.19=hc20f281_2_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -112,7 +112,7 @@ dependencies: - rtree=1.2.0=py310h08d5ad2_1 - scikit-learn=1.6.1=py310hf2a6c47_0 - scipy=1.14.1=py310hbd0dde3_2 - - setuptools=80.9.0=pyhff2d567_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h3155e25_5 @@ -145,9 +145,9 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 4f7f9c4a..26a56c95 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: 5a4516dfb4e65db8f49436fab37d54a6b4d11c5554b1596d650b342d1875c5e0 +# input_hash: 63b54937a5485c2342c949498a43e2a0c19090b2df7a941558e7f5f979673863 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - asciitree=0.3.3=py_2 - astroid=4.0.3=py311h38be061_0 - asttokens=3.0.1=pyhd8ed1ab_0 - - async-lru=2.0.5=pyh29332c3_0 + - async-lru=2.1.0=pyhcf101f3_0 - attrs=25.4.0=pyhcf101f3_1 - babel=2.17.0=pyhd8ed1ab_0 - backports.zstd=1.3.0=py311h6b1f9c4_0 @@ -47,8 +47,8 @@ dependencies: - debugpy=1.8.18=py311hc665b79_0 - decorator=5.2.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 - - dill=0.4.0=pyhcf101f3_1 + - deprecated=1.3.1=pyhd8ed1ab_1 + - dill=0.4.1=pyhcf101f3_0 - discretize=0.11.3=py311h1d5f577_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h38be061_1 @@ -58,12 +58,12 @@ dependencies: - fonttools=4.61.1=py311h3778330_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h1d5f577_1 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py311h0b2f468_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h1b119a7_105 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -95,17 +95,17 @@ dependencies: - jupyter_core=5.9.1=pyhc90fa1f_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.5.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.4=pyhcf101f3_0 + - jupyterlab=4.5.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.18.1=pyh80e38bb_0 + - jupytext=1.19.0=pyh0398c0e_0 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py311h724c32c_2 - krb5=1.21.3=h659f571_0 - lark=1.3.1=pyhd8ed1ab_0 - - lcms2=2.17=h717163a_0 + - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 @@ -131,14 +131,14 @@ dependencies: - libiconv=1.18=h3b78370_2 - libjpeg-turbo=3.1.2=hb03c661_0 - liblapack=3.9.0=37_h5e43f62_mkl - - liblzma=5.8.1=hb9d3cd8_2 + - liblzma=5.8.2=hb03c661_0 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.53=h421ea60_0 + - libpng=1.6.54=h421ea60_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.51.1=h0c1763c_1 + - libsqlite=3.51.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.2.0=h934c35e_16 - libstdcxx-ng=15.2.0=hdf11a46_16 @@ -175,7 +175,7 @@ dependencies: - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - nodejs=22.6.0=hc19f0b3_1 - - notebook=7.5.1=pyhcf101f3_0 + - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311hed34c8f_1 - numpy=1.26.4=py311h64a7726_0 @@ -193,7 +193,7 @@ dependencies: - pip=25.3=pyh8b19718_0 - platformdirs=4.5.1=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - prometheus_client=0.23.1=pyhd8ed1ab_0 + - prometheus_client=0.24.1=pyhd8ed1ab_0 - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.2.1=py311haee01d2_0 - pthread-stubs=0.4=hb9d3cd8_1002 @@ -206,7 +206,7 @@ dependencies: - pygments=2.19.2=pyhd8ed1ab_0 - pylint=4.0.4=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 @@ -231,13 +231,13 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.6.1=py311h57cc02b_0 - scipy=1.14.1=py311he9a78e4_2 - - send2trash=2.0.0=pyha191276_0 - - setuptools=80.9.0=pyhff2d567_0 + - send2trash=2.1.0=pyha191276_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.1=pyhd8ed1ab_0 + - soupsieve=2.8.2=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -252,8 +252,8 @@ dependencies: - threadpoolctl=3.6.0=pyhecae5ae_0 - tinycss2=1.5.1=pyhcf101f3_0 - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - tornado=6.5.3=py311h49ec1c0_0 - tqdm=4.67.1=pyhd8ed1ab_1 @@ -273,7 +273,7 @@ dependencies: - websocket-client=1.9.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - - wrapt=1.17.3=py311h49ec1c0_1 + - wrapt=2.0.1=py311h49ec1c0_1 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -286,9 +286,9 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 4de597cb..01195dd3 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: 5a4516dfb4e65db8f49436fab37d54a6b4d11c5554b1596d650b342d1875c5e0 +# input_hash: 63b54937a5485c2342c949498a43e2a0c19090b2df7a941558e7f5f979673863 channels: - conda-forge @@ -27,17 +27,17 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py311h49ec1c0_1 - dask-core=2025.3.0=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 + - deprecated=1.3.1=pyhd8ed1ab_1 - discretize=0.11.3=py311h1d5f577_1 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.61.1=py311h3778330_0 - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h1d5f577_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py311h0b2f468_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h1b119a7_105 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=75.1=he02047a_0 @@ -47,7 +47,7 @@ dependencies: - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py311h724c32c_2 - krb5=1.21.3=h659f571_0 - - lcms2=2.17=h717163a_0 + - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 @@ -73,13 +73,13 @@ dependencies: - libiconv=1.18=h3b78370_2 - libjpeg-turbo=3.1.2=hb03c661_0 - liblapack=3.9.0=37_h5e43f62_mkl - - liblzma=5.8.1=hb9d3cd8_2 + - liblzma=5.8.2=hb03c661_0 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.53=h421ea60_0 + - libpng=1.6.54=h421ea60_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.51.1=h0c1763c_1 + - libsqlite=3.51.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.2.0=h934c35e_16 - libstdcxx-ng=15.2.0=hdf11a46_16 @@ -117,7 +117,7 @@ dependencies: - pydantic-core=2.41.5=py311h902ca64_1 - pydiso=0.1.2=py311h6070e36_1 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - python=3.11.14=hd63d673_2_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -130,7 +130,7 @@ dependencies: - rtree=1.2.0=py311ha1603b9_1 - scikit-learn=1.6.1=py311h57cc02b_0 - scipy=1.14.1=py311he9a78e4_2 - - setuptools=80.9.0=pyhff2d567_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hb700be7_5 @@ -148,7 +148,7 @@ dependencies: - unicodedata2=17.0.0=py311h49ec1c0_1 - urllib3=2.6.3=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - - wrapt=1.17.3=py311h49ec1c0_1 + - wrapt=2.0.1=py311h49ec1c0_1 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -159,9 +159,9 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 3f5f1a87..67b550f3 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: 18951a7399038507897a2e4d2ce4f98c2560b388e41fad171b805dd135d64300 +# input_hash: fb18dd8c88b4986ce881481f4f4c756520898dda00e4f5006f10cc99878f79e0 channels: - conda-forge @@ -16,7 +16,7 @@ dependencies: - asciitree=0.3.3=py_2 - astroid=4.0.3=py311h1ea47a8_0 - asttokens=3.0.1=pyhd8ed1ab_0 - - async-lru=2.0.5=pyh29332c3_0 + - async-lru=2.1.0=pyhcf101f3_0 - attrs=25.4.0=pyhcf101f3_1 - babel=2.17.0=pyhd8ed1ab_0 - backports.zstd=1.3.0=py311h71c1bcc_0 @@ -46,8 +46,8 @@ dependencies: - debugpy=1.8.19=py311h5dfdfe8_0 - decorator=5.2.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 - - dill=0.4.0=pyhcf101f3_1 + - deprecated=1.3.1=pyhd8ed1ab_1 + - dill=0.4.1=pyhcf101f3_0 - discretize=0.11.3=py311h05ac4f6_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.19=py311h1ea47a8_1 @@ -57,12 +57,12 @@ dependencies: - fonttools=4.61.1=py311h3f79411_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h05ac4f6_1 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py311hc40ba4b_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_h89f0904_105 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -94,16 +94,16 @@ dependencies: - jupyter_core=5.9.1=pyh6dadd2b_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.5.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.4=pyhcf101f3_0 + - jupyterlab=4.5.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.18.1=pyh80e38bb_0 + - jupytext=1.19.0=pyh0398c0e_0 - kiwisolver=1.4.9=py311h275cad7_2 - krb5=1.21.3=hdf4eb48_0 - lark=1.3.1=pyhd8ed1ab_0 - - lcms2=2.17=hbcf6048_0 + - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=35_h5709861_mkl @@ -124,11 +124,11 @@ dependencies: - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - liblapack=3.9.0=35_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.54=h7351971_0 - libsodium=1.0.20=hc70643c_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.51.1=hf5d6505_1 + - libsqlite=3.51.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 @@ -158,7 +158,7 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - nodejs=25.2.1=he453025_1 - - notebook=7.5.1=pyhcf101f3_0 + - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311h11fd7f3_1 - numpy=1.26.4=py311h0b4df5a_0 @@ -175,7 +175,7 @@ dependencies: - pip=25.3=pyh8b19718_0 - platformdirs=4.5.1=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - prometheus_client=0.23.1=pyhd8ed1ab_0 + - prometheus_client=0.24.1=pyhd8ed1ab_0 - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.2.1=py311hf893f09_0 - pthread-stubs=0.4=h0e40799_1002 @@ -187,7 +187,7 @@ dependencies: - pygments=2.19.2=pyhd8ed1ab_0 - pylint=4.0.4=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 @@ -213,13 +213,13 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.6.1=py311hdcb8d17_0 - scipy=1.14.1=py311hf16d85f_2 - - send2trash=2.0.0=pyh6dadd2b_0 - - setuptools=80.9.0=pyhff2d567_0 + - send2trash=2.1.0=pyh6dadd2b_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.1=pyhd8ed1ab_0 + - soupsieve=2.8.2=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -234,8 +234,8 @@ dependencies: - threadpoolctl=3.6.0=pyhecae5ae_0 - tinycss2=1.5.1=pyhcf101f3_0 - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - tornado=6.5.4=py311h3485c13_0 - tqdm=4.67.1=pyhd8ed1ab_1 @@ -261,7 +261,7 @@ dependencies: - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - winpty=0.4.3=4 - - wrapt=1.17.3=py311h3485c13_1 + - wrapt=2.0.1=py311h3485c13_1 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -273,9 +273,9 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 bbe138cb..62627856 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: 18951a7399038507897a2e4d2ce4f98c2560b388e41fad171b805dd135d64300 +# input_hash: fb18dd8c88b4986ce881481f4f4c756520898dda00e4f5006f10cc99878f79e0 channels: - conda-forge @@ -26,17 +26,17 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py311h3485c13_1 - dask-core=2025.3.0=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 + - deprecated=1.3.1=pyhd8ed1ab_1 - discretize=0.11.3=py311h05ac4f6_1 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.61.1=py311h3f79411_0 - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py311h05ac4f6_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py311hc40ba4b_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_h89f0904_105 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=78.2=h637d24d_0 @@ -45,7 +45,7 @@ dependencies: - joblib=1.5.3=pyhd8ed1ab_0 - kiwisolver=1.4.9=py311h275cad7_2 - krb5=1.21.3=hdf4eb48_0 - - lcms2=2.17=hbcf6048_0 + - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=35_h5709861_mkl @@ -66,10 +66,10 @@ dependencies: - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - liblapack=3.9.0=35_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.54=h7351971_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.51.1=hf5d6505_1 + - libsqlite=3.51.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 @@ -101,7 +101,7 @@ dependencies: - pydantic-core=2.41.5=py311hf51aa87_1 - pydiso=0.1.2=py311h1c8cef1_1 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - python=3.11.14=h0159041_2_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -113,7 +113,7 @@ dependencies: - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.6.1=py311hdcb8d17_0 - scipy=1.14.1=py311hf16d85f_2 - - setuptools=80.9.0=pyhff2d567_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h3155e25_5 @@ -136,7 +136,7 @@ dependencies: - vcomp14=14.44.35208=h818238b_34 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - - wrapt=1.17.3=py311h3485c13_1 + - wrapt=2.0.1=py311h3485c13_1 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -147,9 +147,9 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 64811ec4..bfb788f7 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: f08dbe12eaba84788a1b865c9d12288c14f6e9a11eeecf419706ee2305b09559 +# input_hash: 8d2ec2f5bff152c0b1a90962f693656e4ddb9e44ed5c8117e1ca290243cc3f6e channels: - conda-forge @@ -17,7 +17,7 @@ dependencies: - asciitree=0.3.3=py_2 - astroid=4.0.3=py312h7900ff3_0 - asttokens=3.0.1=pyhd8ed1ab_0 - - async-lru=2.0.5=pyh29332c3_0 + - async-lru=2.1.0=pyhcf101f3_0 - attrs=25.4.0=pyhcf101f3_1 - babel=2.17.0=pyhd8ed1ab_0 - backports.zstd=1.3.0=py312h90b7ffd_0 @@ -49,8 +49,8 @@ dependencies: - debugpy=1.8.18=py312h8285ef7_0 - decorator=5.2.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 - - dill=0.4.0=pyhcf101f3_1 + - deprecated=1.3.1=pyhd8ed1ab_1 + - dill=0.4.1=pyhcf101f3_0 - discretize=0.11.3=py312hf890105_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h7900ff3_1 @@ -60,12 +60,12 @@ dependencies: - fonttools=4.61.1=py312h8a5da7c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hf890105_1 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312ha4f8f14_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h1b119a7_105 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -97,17 +97,17 @@ dependencies: - jupyter_core=5.9.1=pyhc90fa1f_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.5.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.4=pyhcf101f3_0 + - jupyterlab=4.5.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.18.1=pyh80e38bb_0 + - jupytext=1.19.0=pyh0398c0e_0 - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py312h0a2e395_2 - krb5=1.21.3=h659f571_0 - lark=1.3.1=pyhd8ed1ab_0 - - lcms2=2.17=h717163a_0 + - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 @@ -133,14 +133,14 @@ dependencies: - libiconv=1.18=h3b78370_2 - libjpeg-turbo=3.1.2=hb03c661_0 - liblapack=3.9.0=37_h5e43f62_mkl - - liblzma=5.8.1=hb9d3cd8_2 + - liblzma=5.8.2=hb03c661_0 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.53=h421ea60_0 + - libpng=1.6.54=h421ea60_0 - libscotch=7.0.6=hea33c07_1 - libsodium=1.0.20=h4ab18f5_0 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.51.1=h0c1763c_1 + - libsqlite=3.51.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.2.0=h934c35e_16 - libstdcxx-ng=15.2.0=hdf11a46_16 @@ -177,7 +177,7 @@ dependencies: - ncurses=6.5=h2d0b736_3 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - nodejs=22.6.0=hc19f0b3_1 - - notebook=7.5.1=pyhcf101f3_0 + - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312hf79963d_1 - numpy=1.26.4=py312heda63a1_0 @@ -195,7 +195,7 @@ dependencies: - pip=25.3=pyh8b19718_0 - platformdirs=4.5.1=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - prometheus_client=0.23.1=pyhd8ed1ab_0 + - prometheus_client=0.24.1=pyhd8ed1ab_0 - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.2.1=py312h5253ce2_0 - pthread-stubs=0.4=hb9d3cd8_1002 @@ -208,7 +208,7 @@ dependencies: - pygments=2.19.2=pyhd8ed1ab_0 - pylint=4.0.4=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 @@ -234,13 +234,13 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.6.1=py312h7a48858_0 - scipy=1.14.1=py312h62794b6_2 - - send2trash=2.0.0=pyha191276_0 - - setuptools=80.9.0=pyhff2d567_0 + - send2trash=2.1.0=pyha191276_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.1=pyhd8ed1ab_0 + - soupsieve=2.8.2=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -255,8 +255,8 @@ dependencies: - threadpoolctl=3.6.0=pyhecae5ae_0 - tinycss2=1.5.1=pyhcf101f3_0 - tk=8.6.13=noxft_ha0e22de_103 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - tornado=6.5.3=py312h4c3975b_0 - tqdm=4.67.1=pyhd8ed1ab_1 @@ -276,7 +276,7 @@ dependencies: - websocket-client=1.9.0=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - - wrapt=1.17.3=py312h4c3975b_1 + - wrapt=2.0.1=py312h4c3975b_1 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -289,9 +289,9 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 498e810c..858322de 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: f08dbe12eaba84788a1b865c9d12288c14f6e9a11eeecf419706ee2305b09559 +# input_hash: 8d2ec2f5bff152c0b1a90962f693656e4ddb9e44ed5c8117e1ca290243cc3f6e channels: - conda-forge @@ -27,17 +27,17 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py312h4c3975b_1 - dask-core=2025.3.0=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 + - deprecated=1.3.1=pyhd8ed1ab_1 - discretize=0.11.3=py312hf890105_1 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.61.1=py312h8a5da7c_0 - freetype=2.14.1=ha770c72_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py312hf890105_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312ha4f8f14_101 - - hdf5=1.14.6=nompi_h1b119a7_104 + - hdf5=1.14.6=nompi_h1b119a7_105 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=75.1=he02047a_0 @@ -47,7 +47,7 @@ dependencies: - keyutils=1.6.3=hb9d3cd8_0 - kiwisolver=1.4.9=py312h0a2e395_2 - krb5=1.21.3=h659f571_0 - - lcms2=2.17=h717163a_0 + - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - libaec=1.1.4=h3f801dc_0 @@ -73,13 +73,13 @@ dependencies: - libiconv=1.18=h3b78370_2 - libjpeg-turbo=3.1.2=hb03c661_0 - liblapack=3.9.0=37_h5e43f62_mkl - - liblzma=5.8.1=hb9d3cd8_2 + - liblzma=5.8.2=hb03c661_0 - libnghttp2=1.67.0=had1ee68_0 - libnsl=2.0.1=hb9d3cd8_1 - - libpng=1.6.53=h421ea60_0 + - libpng=1.6.54=h421ea60_0 - libscotch=7.0.6=hea33c07_1 - libspatialindex=2.0.0=he02047a_0 - - libsqlite=3.51.1=h0c1763c_1 + - libsqlite=3.51.2=h0c1763c_0 - libssh2=1.11.1=hcf80075_0 - libstdcxx=15.2.0=h934c35e_16 - libstdcxx-ng=15.2.0=hdf11a46_16 @@ -117,7 +117,7 @@ dependencies: - pydantic-core=2.41.5=py312h868fb18_1 - pydiso=0.1.2=py312h686354e_1 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyha55dd90_7 - python=3.12.12=hd63d673_1_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -130,7 +130,7 @@ dependencies: - rtree=1.2.0=py312h3ed4c40_1 - scikit-learn=1.6.1=py312h7a48858_0 - scipy=1.14.1=py312h62794b6_2 - - setuptools=80.9.0=pyhff2d567_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=hb700be7_5 @@ -148,7 +148,7 @@ dependencies: - unicodedata2=17.0.0=py312h4c3975b_1 - urllib3=2.6.3=pyhd8ed1ab_0 - wheel=0.45.1=pyhd8ed1ab_1 - - wrapt=1.17.3=py312h4c3975b_1 + - wrapt=2.0.1=py312h4c3975b_1 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -159,9 +159,9 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 ce117f01..204ea1cb 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: win-64 -# input_hash: 75f9dfef05ce45a19001c219a5a5624930d16cb508f9743ae44859e7a2ed2328 +# input_hash: a78d91fa3dc4c95c661cb43f744570c4cbf3dc04b7182fba46b68958c9f38e93 channels: - conda-forge @@ -17,7 +17,7 @@ dependencies: - asciitree=0.3.3=py_2 - astroid=4.0.3=py312h2e8e312_0 - asttokens=3.0.1=pyhd8ed1ab_0 - - async-lru=2.0.5=pyh29332c3_0 + - async-lru=2.1.0=pyhcf101f3_0 - attrs=25.4.0=pyhcf101f3_1 - babel=2.17.0=pyhd8ed1ab_0 - backports.zstd=1.3.0=py312h06d0912_0 @@ -48,8 +48,8 @@ dependencies: - debugpy=1.8.19=py312ha1a9051_0 - decorator=5.2.1=pyhd8ed1ab_0 - defusedxml=0.7.1=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 - - dill=0.4.0=pyhcf101f3_1 + - deprecated=1.3.1=pyhd8ed1ab_1 + - dill=0.4.1=pyhcf101f3_0 - discretize=0.11.3=py312h9b46583_1 - distributed=2025.3.0=pyhd8ed1ab_0 - docutils=0.18.1=py312h2e8e312_1 @@ -59,12 +59,12 @@ dependencies: - fonttools=4.61.1=py312h05f76fc_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py312h9b46583_1 - h11=0.16.0=pyhcf101f3_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312h03cd2ba_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_h89f0904_105 - hpack=4.1.0=pyhd8ed1ab_0 - httpcore=1.0.9=pyh29332c3_0 - httpx=0.28.1=pyhd8ed1ab_0 @@ -96,16 +96,16 @@ dependencies: - jupyter_core=5.9.1=pyh6dadd2b_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.5.1=pyhd8ed1ab_0 + - jupyter_server_terminals=0.5.4=pyhcf101f3_0 + - jupyterlab=4.5.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - - jupytext=1.18.1=pyh80e38bb_0 + - jupytext=1.19.0=pyh0398c0e_0 - kiwisolver=1.4.9=py312h78d62e6_2 - krb5=1.21.3=hdf4eb48_0 - lark=1.3.1=pyhd8ed1ab_0 - - lcms2=2.17=hbcf6048_0 + - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=35_h5709861_mkl @@ -126,11 +126,11 @@ dependencies: - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - liblapack=3.9.0=35_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.54=h7351971_0 - libsodium=1.0.20=hc70643c_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.51.1=hf5d6505_1 + - libsqlite=3.51.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 @@ -160,7 +160,7 @@ dependencies: - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - nodejs=25.2.1=he453025_1 - - notebook=7.5.1=pyhcf101f3_0 + - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312hc128f0a_1 - numpy=1.26.4=py312h8753938_0 @@ -177,7 +177,7 @@ dependencies: - pip=25.3=pyh8b19718_0 - platformdirs=4.5.1=pyhcf101f3_0 - pluggy=1.6.0=pyhf9edf01_1 - - prometheus_client=0.23.1=pyhd8ed1ab_0 + - prometheus_client=0.24.1=pyhd8ed1ab_0 - prompt-toolkit=3.0.52=pyha770c72_0 - psutil=7.2.1=py312he5662c2_0 - pthread-stubs=0.4=h0e40799_1002 @@ -189,7 +189,7 @@ dependencies: - pygments=2.19.2=pyhd8ed1ab_0 - pylint=4.0.4=pyhcf101f3_0 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - pytest=9.0.2=pyhcf101f3_0 - pytest-cov=7.0.0=pyhcf101f3_1 @@ -216,13 +216,13 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.6.1=py312h816cc57_0 - scipy=1.14.1=py312h337df96_2 - - send2trash=2.0.0=pyh6dadd2b_0 - - setuptools=80.9.0=pyhff2d567_0 + - send2trash=2.1.0=pyh6dadd2b_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.1=pyhd8ed1ab_0 + - soupsieve=2.8.2=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -237,8 +237,8 @@ dependencies: - threadpoolctl=3.6.0=pyhecae5ae_0 - tinycss2=1.5.1=pyhcf101f3_0 - tk=8.6.13=h2c6b04d_3 - - tomli=2.3.0=pyhcf101f3_0 - - tomlkit=0.13.3=pyha770c72_0 + - tomli=2.4.0=pyhcf101f3_0 + - tomlkit=0.14.0=pyha770c72_0 - toolz=1.1.0=pyhd8ed1ab_1 - tornado=6.5.4=py312he06e257_0 - tqdm=4.67.1=pyhd8ed1ab_1 @@ -264,7 +264,7 @@ dependencies: - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - winpty=0.4.3=4 - - wrapt=1.17.3=py312he06e257_1 + - wrapt=2.0.1=py312he06e257_1 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -276,9 +276,9 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 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 1986d356..166589cd 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: 75f9dfef05ce45a19001c219a5a5624930d16cb508f9743ae44859e7a2ed2328 +# input_hash: a78d91fa3dc4c95c661cb43f744570c4cbf3dc04b7182fba46b68958c9f38e93 channels: - conda-forge @@ -26,17 +26,17 @@ dependencies: - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py312he06e257_1 - dask-core=2025.3.0=pyhd8ed1ab_0 - - deprecated=1.3.1=pyhd8ed1ab_0 + - deprecated=1.3.1=pyhd8ed1ab_1 - discretize=0.11.3=py312h9b46583_1 - distributed=2025.3.0=pyhd8ed1ab_0 - fasteners=0.19=pyhd8ed1ab_1 - fonttools=4.61.1=py312h05f76fc_0 - freetype=2.14.1=h57928b3_0 - - fsspec=2025.12.0=pyhd8ed1ab_0 + - fsspec=2026.1.0=pyhd8ed1ab_0 - geoana=0.7.2=py312h9b46583_1 - h2=4.3.0=pyhcf101f3_0 - h5py=3.15.1=nompi_py312h03cd2ba_101 - - hdf5=1.14.6=nompi_h89f0904_104 + - hdf5=1.14.6=nompi_h89f0904_105 - hpack=4.1.0=pyhd8ed1ab_0 - hyperframe=6.1.0=pyhd8ed1ab_0 - icu=78.2=h637d24d_0 @@ -45,7 +45,7 @@ dependencies: - joblib=1.5.3=pyhd8ed1ab_0 - kiwisolver=1.4.9=py312h78d62e6_2 - krb5=1.21.3=hdf4eb48_0 - - lcms2=2.17=hbcf6048_0 + - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - libaec=1.1.4=h20038f6_0 - libblas=3.9.0=35_h5709861_mkl @@ -66,10 +66,10 @@ dependencies: - libiconv=1.18=hc1393d2_2 - libjpeg-turbo=3.1.2=hfd05255_0 - liblapack=3.9.0=35_hf9ab0e9_mkl - - liblzma=5.8.1=h2466b09_2 - - libpng=1.6.53=h7351971_0 + - liblzma=5.8.2=hfd05255_0 + - libpng=1.6.54=h7351971_0 - libspatialindex=2.0.0=h5a68840_0 - - libsqlite=3.51.1=hf5d6505_1 + - libsqlite=3.51.2=hf5d6505_0 - libssh2=1.11.1=h9aa295b_0 - libtiff=4.7.1=h8f73337_1 - libwebp-base=1.6.0=h4d5522a_0 @@ -101,7 +101,7 @@ dependencies: - pydantic-core=2.41.5=py312hdabe01f_1 - pydiso=0.1.2=py312h3fe0e52_1 - pymatsolver=0.3.1=pyh48887ae_201 - - pyparsing=3.3.1=pyhcf101f3_0 + - pyparsing=3.3.2=pyhcf101f3_0 - pysocks=1.7.1=pyh09c184e_7 - python=3.12.12=h0159041_1_cpython - python-dateutil=2.9.0.post0=pyhe01879c_2 @@ -113,7 +113,7 @@ dependencies: - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.6.1=py312h816cc57_0 - scipy=1.14.1=py312h337df96_2 - - setuptools=80.9.0=pyhff2d567_0 + - setuptools=80.10.1=pyh332efcf_0 - six=1.17.0=pyhe01879c_1 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - tbb=2021.13.0=h3155e25_5 @@ -136,7 +136,7 @@ dependencies: - vcomp14=14.44.35208=h818238b_34 - wheel=0.45.1=pyhd8ed1ab_1 - win_inet_pton=1.1.0=pyh7428d3b_8 - - wrapt=1.17.3=py312he06e257_1 + - wrapt=2.0.1=py312he06e257_1 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -147,9 +147,9 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3a0ee39b295c1a1fad831a7f88a2e8630b99b2c6 - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 variables: KMP_WARNINGS: 0 diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index ec94b8b6..d8579233 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: ade6f8568a23d600ae9ce846ee88765a4745040016210637a40b1410b32073fe - linux-64: 2b50544cb4f1d5b69b9b4ae438e854dd769e9447f4d1f6f37b9c8332259e2f13 + win-64: 4095d8c1a6c5ba4facb54b1eef593eaa3c13a1bb5dba5638b7d7103f84795d37 + linux-64: 56acf844153236bc0bae9c73a9c7a6769bafd992ebe223ac3fa1ee1ba32d25ef channels: - url: conda-forge used_env_vars: [] @@ -300,29 +300,29 @@ package: category: dev optional: true - name: async-lru - version: 2.0.5 + version: 2.1.0 manager: conda platform: linux-64 dependencies: python: '' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.1.0-pyhcf101f3_0.conda hash: - md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 - sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b + md5: 04d2e5fba67e5a1ecec8e25d6c769004 + sha256: fb09cb9bfe4da1586d0ad3bf80bb65e70acfd5fe0f76df384250a1c0587d6acc category: dev optional: true - name: async-lru - version: 2.0.5 + version: 2.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.1.0-pyhcf101f3_0.conda hash: - md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 - sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b + md5: 04d2e5fba67e5a1ecec8e25d6c769004 + sha256: fb09cb9bfe4da1586d0ad3bf80bb65e70acfd5fe0f76df384250a1c0587d6acc category: dev optional: true - name: attrs @@ -1164,27 +1164,27 @@ package: category: dev optional: true - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: discretize @@ -1469,27 +1469,27 @@ package: category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.1.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 1daaf94a304a27ba3446a306235a37ea + sha256: bfba6c280366f48b00a6a7036988fc2bc3fea5ac1d8303152c9da69d72a22936 category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.1.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 1daaf94a304a27ba3446a306235a37ea + sha256: bfba6c280366f48b00a6a7036988fc2bc3fea5ac1d8303152c9da69d72a22936 category: main optional: false - name: geoana @@ -1628,17 +1628,17 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libcurl: '>=8.18.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_104.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_105.conda hash: - md5: 0857f4d157820dcd5625f61fdfefb780 - sha256: 454e9724b322cee277abd7acf4f8d688e9c4ded006b6d5bc9fcc2a1ff907d27a + md5: d58cd79121dd51128f2a5dab44edf1ea + sha256: aa85acd07b8f60d1760c6b3fa91dd8402572766e763f3989c759ecd266ed8e9f category: main optional: false - name: hdf5 @@ -1647,16 +1647,16 @@ package: platform: win-64 dependencies: libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libcurl: '>=8.18.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.4,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_h89f0904_104.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_h89f0904_105.conda hash: - md5: 9cc4a5567d46c7fcde99563e86522882 - sha256: cc948149f700033ff85ce4a1854edf6adcb5881391a3df5c40cbe2a793dd9f81 + md5: c1caaf8a28c0eb3be85566e63a5fcb5a + sha256: 52e5eb039289946a32aee305e6af777d77376dc0adcb2bdcc31633dcc48d21a5 category: main optional: false - name: hpack @@ -2589,33 +2589,33 @@ package: category: dev optional: true - name: jupyter_server_terminals - version: 0.5.3 + version: 0.5.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda hash: - md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd - sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 + md5: 7b8bace4943e0dc345fc45938826f2b8 + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 category: dev optional: true - name: jupyter_server_terminals - version: 0.5.3 + version: 0.5.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda hash: - md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd - sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 + md5: 7b8bace4943e0dc345fc45938826f2b8 + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 category: dev optional: true - name: jupyterlab - version: 4.5.1 + version: 4.5.2 manager: conda platform: linux-64 dependencies: @@ -2634,14 +2634,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda hash: - md5: f8e8f8db45e1a946ce9b20b0f60b3111 - sha256: ac31a517238173eb565ba9f517b1f9437fba48035f1276a9c1190c145657cafd + md5: 513e7fcc06c82b24c84ff88ece13ac9f + sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 category: dev optional: true - name: jupyterlab - version: 4.5.1 + version: 4.5.2 manager: conda platform: win-64 dependencies: @@ -2660,10 +2660,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda hash: - md5: f8e8f8db45e1a946ce9b20b0f60b3111 - sha256: ac31a517238173eb565ba9f517b1f9437fba48035f1276a9c1190c145657cafd + md5: 513e7fcc06c82b24c84ff88ece13ac9f + sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 category: dev optional: true - name: jupyterlab_pygments @@ -2755,7 +2755,7 @@ package: category: dev optional: true - name: jupytext - version: 1.18.1 + version: 1.19.0 manager: conda platform: linux-64 dependencies: @@ -2766,14 +2766,14 @@ package: python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.18.1-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.19.0-pyh0398c0e_0.conda hash: - md5: 3c85f79f1debe2d2c82ac08f1c1126e1 - sha256: 07063dad3019455d786dc3b5174731eb0ef53eb699df25e21571c2b7cdcf0fd0 + md5: 1831f8fcb080707636343f5e1d8994f1 + sha256: 76f1c795088c7ad8b899ee388aafe69d3412ff11d5ca628fff0b655fbb31de05 category: dev optional: true - name: jupytext - version: 1.18.1 + version: 1.19.0 manager: conda platform: win-64 dependencies: @@ -2784,10 +2784,10 @@ package: python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.18.1-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.19.0-pyh0398c0e_0.conda hash: - md5: 3c85f79f1debe2d2c82ac08f1c1126e1 - sha256: 07063dad3019455d786dc3b5174731eb0ef53eb699df25e21571c2b7cdcf0fd0 + md5: 1831f8fcb080707636343f5e1d8994f1 + sha256: 76f1c795088c7ad8b899ee388aafe69d3412ff11d5ca628fff0b655fbb31de05 category: dev optional: true - name: keyutils @@ -2891,34 +2891,34 @@ package: category: dev optional: true - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 6f2e2c8f58160147c4d1c6f4c14cbac4 + sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.18-hf2c6c5f_0.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: b6c68d6b829b044cd17a41e0a8a23ca1 + sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28 category: main optional: false - name: ld_impl_linux-64 @@ -3534,30 +3534,30 @@ package: category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: c7c83eecbb72d88b940c249af56c8b17 + sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.2-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3 + sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c category: main optional: false - name: libnghttp2 @@ -3592,21 +3592,21 @@ package: category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.54 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.53-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.54-h421ea60_0.conda hash: - md5: 00d4e66b1f746cb14944cad23fffb405 - sha256: 8acdeb9a7e3d2630176ba8e947caf6bf4985a5148dec69b801e5eb797856688b + md5: d361fa2a59e53b61c2675bfa073e5b7e + sha256: 5de60d34aac848a9991a09fcdea7c0e783d00024aefec279d55e87c0c44742cd category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.54 manager: conda platform: win-64 dependencies: @@ -3614,10 +3614,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/libpng-1.6.53-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.54-h7351971_0.conda hash: - md5: fb6f43f6f08ca100cb24cff125ab0d9e - sha256: e5d061e7bdb2b97227b6955d1aa700a58a5703b5150ab0467cc37de609f277b6 + md5: 638ecb69e44b6a588afd5633e81f9e61 + sha256: 6e269361aa18a57bd2e593e480d83d93fc5f839d33d3bfc31b4ffe10edf6751c category: main optional: false - name: libscotch @@ -3693,31 +3693,31 @@ package: category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.51.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.1-h0c1763c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-h0c1763c_0.conda hash: - md5: ad1fd565aff83b543d726382c0ab0af2 - sha256: 5ef162b2a1390d1495a759734afe2312a358a58441cf8f378be651903646f3b7 + md5: f7d30045eccb83f2bb8053041f42db3c + sha256: c1ff4589b48d32ca0a2628970d869fa9f7b2c2d00269a3761edc7e9e4c1ab7b8 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.51.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.1-hf5d6505_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.2-hf5d6505_0.conda hash: - md5: be65be5f758709fc01b01626152e96b0 - sha256: d6d86715a1afe11f626b7509935e9d2e14a4946632c0ac474526e20fc6c55f99 + md5: 903979414b47d777d548e5f0165e6cd8 + sha256: 756478128e3e104bd7e7c3ce6c1b0efad7e08c7320c69fdc726e039323c63fbb category: main optional: false - name: libssh2 @@ -4697,39 +4697,39 @@ package: category: dev optional: true - name: notebook - version: 7.5.1 + version: 7.5.2 manager: conda platform: linux-64 dependencies: importlib_resources: '>=5.0' jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.5.1,<4.6' + jupyterlab: '>=4.5.2,<4.6' jupyterlab_server: '>=2.28.0,<3' notebook-shim: '>=0.2,<0.3' python: '' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.2-pyhcf101f3_0.conda hash: - md5: c984a8b773a34e38f5cf399b6d582e5c - sha256: 672ec7db73c8bfbacf9227c0c2287effdeded77b4d06373f2e498a310ce76a8c + md5: 47b58fa741a608dac785b71b8083bdb7 + sha256: 05bda90b7a980593c5e955dec5c556ff4dabf56e6ff45a3fb6c670f5f20b11e6 category: dev optional: true - name: notebook - version: 7.5.1 + version: 7.5.2 manager: conda platform: win-64 dependencies: importlib_resources: '>=5.0' jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.5.1,<4.6' + jupyterlab: '>=4.5.2,<4.6' jupyterlab_server: '>=2.28.0,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.10' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.2-pyhcf101f3_0.conda hash: - md5: c984a8b773a34e38f5cf399b6d582e5c - sha256: 672ec7db73c8bfbacf9227c0c2287effdeded77b4d06373f2e498a310ce76a8c + md5: 47b58fa741a608dac785b71b8083bdb7 + sha256: 05bda90b7a980593c5e955dec5c556ff4dabf56e6ff45a3fb6c670f5f20b11e6 category: dev optional: true - name: notebook-shim @@ -5244,27 +5244,27 @@ package: category: dev optional: true - name: prometheus_client - version: 0.23.1 + version: 0.24.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.23.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.24.1-pyhd8ed1ab_0.conda hash: - md5: a1e91db2d17fd258c64921cb38e6745a - sha256: 13dc67de68db151ff909f2c1d2486fa7e2d51355b25cee08d26ede1b62d48d40 + md5: 7526d20621b53440b0aae45d4797847e + sha256: 75b2589159d04b3fb92db16d9970b396b9124652c784ab05b66f584edc97f283 category: dev optional: true - name: prometheus_client - version: 0.23.1 + version: 0.24.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.23.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.24.1-pyhd8ed1ab_0.conda hash: - md5: a1e91db2d17fd258c64921cb38e6745a - sha256: 13dc67de68db151ff909f2c1d2486fa7e2d51355b25cee08d26ede1b62d48d40 + md5: 7526d20621b53440b0aae45d4797847e + sha256: 75b2589159d04b3fb92db16d9970b396b9124652c784ab05b66f584edc97f283 category: dev optional: true - name: prompt-toolkit @@ -5612,27 +5612,27 @@ package: category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pysocks @@ -6389,54 +6389,54 @@ package: category: main optional: false - name: send2trash - version: 2.0.0 + version: 2.1.0 manager: conda platform: linux-64 dependencies: __linux: '' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.0.0-pyha191276_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.1.0-pyha191276_0.conda hash: - md5: f2cc28627a451a28ddd5ef5ab0bf579d - sha256: 27cd93b4f848a1c8193a7b1b8e6e6d03321462e96997ce95ea1a39305f7ac7cb + md5: 645026465469ecd4989188e1c4e24953 + sha256: b25d573874fe39cb8e4cf6ed0279acb9a94fedce5c5ae885da11566d595035ad category: dev optional: true - name: send2trash - version: 2.0.0 + version: 2.1.0 manager: conda platform: win-64 dependencies: __win: '' python: '>=3.10' pywin32: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.0.0-pyh6dadd2b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_0.conda hash: - md5: 40df72e963d80a403c1861ae9428b13c - sha256: f154f702baf550de9c1e3517f110bb71a056df5645027c8d15b37f3ea33722cc + md5: 69ba308f1356f39901f5654d82405df3 + sha256: b64e5cdb66f5d31fcef05b6ed95b8be3e80796528aa8a165428496c0dda3383f category: dev optional: true - name: setuptools - version: 80.9.0 + version: 80.10.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.10.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: cb72cedd94dd923c6a9405a3d3b1c018 + sha256: 89d5bb48047e7e27aa52a3a71d6ebf386e5ee4bdbd7ca91d653df9977eca8253 category: main optional: false - name: setuptools - version: 80.9.0 + version: 80.10.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.10.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: cb72cedd94dd923c6a9405a3d3b1c018 + sha256: 89d5bb48047e7e27aa52a3a71d6ebf386e5ee4bdbd7ca91d653df9977eca8253 category: main optional: false - name: six @@ -6536,27 +6536,27 @@ package: category: main optional: false - name: soupsieve - version: 2.8.1 + version: 2.8.2 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda hash: - md5: 7de28c27fe620a4f7dbfaea137c6232b - sha256: 4ba9b8c45862e54d05ed9a04cc6aab5a17756ab9865f57cbf2836e47144153d2 + md5: fcbe3971b6017792e9b24ff451daa7f5 + sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a category: dev optional: true - name: soupsieve - version: 2.8.1 + version: 2.8.2 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda hash: - md5: 7de28c27fe620a4f7dbfaea137c6232b - sha256: 4ba9b8c45862e54d05ed9a04cc6aab5a17756ab9865f57cbf2836e47144153d2 + md5: fcbe3971b6017792e9b24ff451daa7f5 + sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a category: dev optional: true - name: sphinx @@ -6964,51 +6964,51 @@ package: category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: toolz @@ -7831,7 +7831,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7849,7 +7849,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7863,7 +7863,7 @@ package: category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.13.0a2.dev49+ef4d20cc manager: pip platform: linux-64 dependencies: @@ -7871,16 +7871,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: ef4d20ccefacce7b2dd01959d653be1f38fab674 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.13.0a2.dev49+ef4d20cc manager: pip platform: win-64 dependencies: @@ -7888,12 +7888,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: ef4d20ccefacce7b2dd01959d653be1f38fab674 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 category: main optional: false - name: grid-apps @@ -7903,7 +7903,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev1+3a0ee39 - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -7922,7 +7922,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev1+3a0ee39 - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -7935,7 +7935,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.3a1.dev105+g7d744e889 + version: 0.23.0.3a1.dev106+g03bcafc8f manager: pip platform: linux-64 dependencies: @@ -7948,16 +7948,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' typing-extensions: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 hash: - sha256: 7d744e889c77fa74ab5addcd26b7c709f395eb77 + sha256: 03bcafc8f5001a2f5df698298a387e8b6bf31c74 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 category: main optional: false - name: mira-simpeg - version: 0.23.0.3a1.dev105+g7d744e889 + version: 0.23.0.3a1.dev106+g03bcafc8f manager: pip platform: win-64 dependencies: @@ -7970,11 +7970,11 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' typing-extensions: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 hash: - sha256: 7d744e889c77fa74ab5addcd26b7c709f395eb77 + sha256: 03bcafc8f5001a2f5df698298a387e8b6bf31c74 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 category: main optional: false diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 39bfe0c2..a804a502 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: 18951a7399038507897a2e4d2ce4f98c2560b388e41fad171b805dd135d64300 - linux-64: 5a4516dfb4e65db8f49436fab37d54a6b4d11c5554b1596d650b342d1875c5e0 + win-64: fb18dd8c88b4986ce881481f4f4c756520898dda00e4f5006f10cc99878f79e0 + linux-64: 63b54937a5485c2342c949498a43e2a0c19090b2df7a941558e7f5f979673863 channels: - url: conda-forge used_env_vars: [] @@ -298,29 +298,29 @@ package: category: dev optional: true - name: async-lru - version: 2.0.5 + version: 2.1.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.1.0-pyhcf101f3_0.conda hash: - md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 - sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b + md5: 04d2e5fba67e5a1ecec8e25d6c769004 + sha256: fb09cb9bfe4da1586d0ad3bf80bb65e70acfd5fe0f76df384250a1c0587d6acc category: dev optional: true - name: async-lru - version: 2.0.5 + version: 2.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.1.0-pyhcf101f3_0.conda hash: - md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 - sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b + md5: 04d2e5fba67e5a1ecec8e25d6c769004 + sha256: fb09cb9bfe4da1586d0ad3bf80bb65e70acfd5fe0f76df384250a1c0587d6acc category: dev optional: true - name: attrs @@ -1167,11 +1167,11 @@ package: platform: linux-64 dependencies: python: '>=3.10' - wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_0.conda + wrapt: <3,>=1.10 + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_1.conda hash: - md5: bf74a83f7a0f2a21b5d709997402cac4 - sha256: c994a70449d548dd388768090c71c1da81e1e128a281547ab9022908d46878c5 + md5: 5498feb783ab29db6ca8845f68fa0f03 + sha256: 7d57a7b8266043ffb99d092ebc25e89a0a2490bed4146b9432c83c2c476fa94d category: main optional: false - name: deprecated @@ -1180,35 +1180,35 @@ package: platform: win-64 dependencies: python: '>=3.10' - wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_0.conda + wrapt: <3,>=1.10 + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_1.conda hash: - md5: bf74a83f7a0f2a21b5d709997402cac4 - sha256: c994a70449d548dd388768090c71c1da81e1e128a281547ab9022908d46878c5 + md5: 5498feb783ab29db6ca8845f68fa0f03 + sha256: 7d57a7b8266043ffb99d092ebc25e89a0a2490bed4146b9432c83c2c476fa94d category: main optional: false - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: discretize @@ -1493,27 +1493,27 @@ package: category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.1.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 1daaf94a304a27ba3446a306235a37ea + sha256: bfba6c280366f48b00a6a7036988fc2bc3fea5ac1d8303152c9da69d72a22936 category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.1.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 1daaf94a304a27ba3446a306235a37ea + sha256: bfba6c280366f48b00a6a7036988fc2bc3fea5ac1d8303152c9da69d72a22936 category: main optional: false - name: geoana @@ -1652,17 +1652,17 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libcurl: '>=8.18.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_104.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_105.conda hash: - md5: 0857f4d157820dcd5625f61fdfefb780 - sha256: 454e9724b322cee277abd7acf4f8d688e9c4ded006b6d5bc9fcc2a1ff907d27a + md5: d58cd79121dd51128f2a5dab44edf1ea + sha256: aa85acd07b8f60d1760c6b3fa91dd8402572766e763f3989c759ecd266ed8e9f category: main optional: false - name: hdf5 @@ -1671,16 +1671,16 @@ package: platform: win-64 dependencies: libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libcurl: '>=8.18.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.4,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_h89f0904_104.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_h89f0904_105.conda hash: - md5: 9cc4a5567d46c7fcde99563e86522882 - sha256: cc948149f700033ff85ce4a1854edf6adcb5881391a3df5c40cbe2a793dd9f81 + md5: c1caaf8a28c0eb3be85566e63a5fcb5a + sha256: 52e5eb039289946a32aee305e6af777d77376dc0adcb2bdcc31633dcc48d21a5 category: main optional: false - name: hpack @@ -2637,33 +2637,33 @@ package: category: dev optional: true - name: jupyter_server_terminals - version: 0.5.3 + version: 0.5.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda hash: - md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd - sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 + md5: 7b8bace4943e0dc345fc45938826f2b8 + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 category: dev optional: true - name: jupyter_server_terminals - version: 0.5.3 + version: 0.5.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda hash: - md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd - sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 + md5: 7b8bace4943e0dc345fc45938826f2b8 + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 category: dev optional: true - name: jupyterlab - version: 4.5.1 + version: 4.5.2 manager: conda platform: linux-64 dependencies: @@ -2682,14 +2682,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda hash: - md5: f8e8f8db45e1a946ce9b20b0f60b3111 - sha256: ac31a517238173eb565ba9f517b1f9437fba48035f1276a9c1190c145657cafd + md5: 513e7fcc06c82b24c84ff88ece13ac9f + sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 category: dev optional: true - name: jupyterlab - version: 4.5.1 + version: 4.5.2 manager: conda platform: win-64 dependencies: @@ -2708,10 +2708,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda hash: - md5: f8e8f8db45e1a946ce9b20b0f60b3111 - sha256: ac31a517238173eb565ba9f517b1f9437fba48035f1276a9c1190c145657cafd + md5: 513e7fcc06c82b24c84ff88ece13ac9f + sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 category: dev optional: true - name: jupyterlab_pygments @@ -2803,7 +2803,7 @@ package: category: dev optional: true - name: jupytext - version: 1.18.1 + version: 1.19.0 manager: conda platform: linux-64 dependencies: @@ -2814,14 +2814,14 @@ package: python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.18.1-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.19.0-pyh0398c0e_0.conda hash: - md5: 3c85f79f1debe2d2c82ac08f1c1126e1 - sha256: 07063dad3019455d786dc3b5174731eb0ef53eb699df25e21571c2b7cdcf0fd0 + md5: 1831f8fcb080707636343f5e1d8994f1 + sha256: 76f1c795088c7ad8b899ee388aafe69d3412ff11d5ca628fff0b655fbb31de05 category: dev optional: true - name: jupytext - version: 1.18.1 + version: 1.19.0 manager: conda platform: win-64 dependencies: @@ -2832,10 +2832,10 @@ package: python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.18.1-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.19.0-pyh0398c0e_0.conda hash: - md5: 3c85f79f1debe2d2c82ac08f1c1126e1 - sha256: 07063dad3019455d786dc3b5174731eb0ef53eb699df25e21571c2b7cdcf0fd0 + md5: 1831f8fcb080707636343f5e1d8994f1 + sha256: 76f1c795088c7ad8b899ee388aafe69d3412ff11d5ca628fff0b655fbb31de05 category: dev optional: true - name: keyutils @@ -2939,34 +2939,34 @@ package: category: dev optional: true - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 6f2e2c8f58160147c4d1c6f4c14cbac4 + sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.18-hf2c6c5f_0.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: b6c68d6b829b044cd17a41e0a8a23ca1 + sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28 category: main optional: false - name: ld_impl_linux-64 @@ -3582,30 +3582,30 @@ package: category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: c7c83eecbb72d88b940c249af56c8b17 + sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.2-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3 + sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c category: main optional: false - name: libnghttp2 @@ -3640,21 +3640,21 @@ package: category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.54 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.53-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.54-h421ea60_0.conda hash: - md5: 00d4e66b1f746cb14944cad23fffb405 - sha256: 8acdeb9a7e3d2630176ba8e947caf6bf4985a5148dec69b801e5eb797856688b + md5: d361fa2a59e53b61c2675bfa073e5b7e + sha256: 5de60d34aac848a9991a09fcdea7c0e783d00024aefec279d55e87c0c44742cd category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.54 manager: conda platform: win-64 dependencies: @@ -3662,10 +3662,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/libpng-1.6.53-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.54-h7351971_0.conda hash: - md5: fb6f43f6f08ca100cb24cff125ab0d9e - sha256: e5d061e7bdb2b97227b6955d1aa700a58a5703b5150ab0467cc37de609f277b6 + md5: 638ecb69e44b6a588afd5633e81f9e61 + sha256: 6e269361aa18a57bd2e593e480d83d93fc5f839d33d3bfc31b4ffe10edf6751c category: main optional: false - name: libscotch @@ -3741,31 +3741,31 @@ package: category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.51.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.1-h0c1763c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-h0c1763c_0.conda hash: - md5: ad1fd565aff83b543d726382c0ab0af2 - sha256: 5ef162b2a1390d1495a759734afe2312a358a58441cf8f378be651903646f3b7 + md5: f7d30045eccb83f2bb8053041f42db3c + sha256: c1ff4589b48d32ca0a2628970d869fa9f7b2c2d00269a3761edc7e9e4c1ab7b8 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.51.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.1-hf5d6505_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.2-hf5d6505_0.conda hash: - md5: be65be5f758709fc01b01626152e96b0 - sha256: d6d86715a1afe11f626b7509935e9d2e14a4946632c0ac474526e20fc6c55f99 + md5: 903979414b47d777d548e5f0165e6cd8 + sha256: 756478128e3e104bd7e7c3ce6c1b0efad7e08c7320c69fdc726e039323c63fbb category: main optional: false - name: libssh2 @@ -4745,39 +4745,39 @@ package: category: dev optional: true - name: notebook - version: 7.5.1 + version: 7.5.2 manager: conda platform: linux-64 dependencies: importlib_resources: '>=5.0' jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.5.1,<4.6' + jupyterlab: '>=4.5.2,<4.6' jupyterlab_server: '>=2.28.0,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.10' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.2-pyhcf101f3_0.conda hash: - md5: c984a8b773a34e38f5cf399b6d582e5c - sha256: 672ec7db73c8bfbacf9227c0c2287effdeded77b4d06373f2e498a310ce76a8c + md5: 47b58fa741a608dac785b71b8083bdb7 + sha256: 05bda90b7a980593c5e955dec5c556ff4dabf56e6ff45a3fb6c670f5f20b11e6 category: dev optional: true - name: notebook - version: 7.5.1 + version: 7.5.2 manager: conda platform: win-64 dependencies: importlib_resources: '>=5.0' jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.5.1,<4.6' + jupyterlab: '>=4.5.2,<4.6' jupyterlab_server: '>=2.28.0,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.10' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.2-pyhcf101f3_0.conda hash: - md5: c984a8b773a34e38f5cf399b6d582e5c - sha256: 672ec7db73c8bfbacf9227c0c2287effdeded77b4d06373f2e498a310ce76a8c + md5: 47b58fa741a608dac785b71b8083bdb7 + sha256: 05bda90b7a980593c5e955dec5c556ff4dabf56e6ff45a3fb6c670f5f20b11e6 category: dev optional: true - name: notebook-shim @@ -5272,27 +5272,27 @@ package: category: dev optional: true - name: prometheus_client - version: 0.23.1 + version: 0.24.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.23.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.24.1-pyhd8ed1ab_0.conda hash: - md5: a1e91db2d17fd258c64921cb38e6745a - sha256: 13dc67de68db151ff909f2c1d2486fa7e2d51355b25cee08d26ede1b62d48d40 + md5: 7526d20621b53440b0aae45d4797847e + sha256: 75b2589159d04b3fb92db16d9970b396b9124652c784ab05b66f584edc97f283 category: dev optional: true - name: prometheus_client - version: 0.23.1 + version: 0.24.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.23.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.24.1-pyhd8ed1ab_0.conda hash: - md5: a1e91db2d17fd258c64921cb38e6745a - sha256: 13dc67de68db151ff909f2c1d2486fa7e2d51355b25cee08d26ede1b62d48d40 + md5: 7526d20621b53440b0aae45d4797847e + sha256: 75b2589159d04b3fb92db16d9970b396b9124652c784ab05b66f584edc97f283 category: dev optional: true - name: prompt-toolkit @@ -5640,27 +5640,27 @@ package: category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pysocks @@ -6417,54 +6417,54 @@ package: category: main optional: false - name: send2trash - version: 2.0.0 + version: 2.1.0 manager: conda platform: linux-64 dependencies: __linux: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.0.0-pyha191276_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.1.0-pyha191276_0.conda hash: - md5: f2cc28627a451a28ddd5ef5ab0bf579d - sha256: 27cd93b4f848a1c8193a7b1b8e6e6d03321462e96997ce95ea1a39305f7ac7cb + md5: 645026465469ecd4989188e1c4e24953 + sha256: b25d573874fe39cb8e4cf6ed0279acb9a94fedce5c5ae885da11566d595035ad category: dev optional: true - name: send2trash - version: 2.0.0 + version: 2.1.0 manager: conda platform: win-64 dependencies: __win: '' python: '>=3.10' pywin32: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.0.0-pyh6dadd2b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_0.conda hash: - md5: 40df72e963d80a403c1861ae9428b13c - sha256: f154f702baf550de9c1e3517f110bb71a056df5645027c8d15b37f3ea33722cc + md5: 69ba308f1356f39901f5654d82405df3 + sha256: b64e5cdb66f5d31fcef05b6ed95b8be3e80796528aa8a165428496c0dda3383f category: dev optional: true - name: setuptools - version: 80.9.0 + version: 80.10.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.10.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: cb72cedd94dd923c6a9405a3d3b1c018 + sha256: 89d5bb48047e7e27aa52a3a71d6ebf386e5ee4bdbd7ca91d653df9977eca8253 category: main optional: false - name: setuptools - version: 80.9.0 + version: 80.10.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.10.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: cb72cedd94dd923c6a9405a3d3b1c018 + sha256: 89d5bb48047e7e27aa52a3a71d6ebf386e5ee4bdbd7ca91d653df9977eca8253 category: main optional: false - name: six @@ -6564,27 +6564,27 @@ package: category: main optional: false - name: soupsieve - version: 2.8.1 + version: 2.8.2 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda hash: - md5: 7de28c27fe620a4f7dbfaea137c6232b - sha256: 4ba9b8c45862e54d05ed9a04cc6aab5a17756ab9865f57cbf2836e47144153d2 + md5: fcbe3971b6017792e9b24ff451daa7f5 + sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a category: dev optional: true - name: soupsieve - version: 2.8.1 + version: 2.8.2 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda hash: - md5: 7de28c27fe620a4f7dbfaea137c6232b - sha256: 4ba9b8c45862e54d05ed9a04cc6aab5a17756ab9865f57cbf2836e47144153d2 + md5: fcbe3971b6017792e9b24ff451daa7f5 + sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a category: dev optional: true - name: sphinx @@ -6992,51 +6992,51 @@ package: category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: toolz @@ -7596,7 +7596,7 @@ package: category: dev optional: true - name: wrapt - version: 1.17.3 + version: 2.0.1 manager: conda platform: linux-64 dependencies: @@ -7604,14 +7604,14 @@ package: libgcc: '>=14' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.3-py311h49ec1c0_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-2.0.1-py311h49ec1c0_1.conda hash: - md5: 47c1c27dee6c31bf8eefbdbdde817d83 - sha256: efcb41a300b58624790d2ce1c6ac9c1da7d23dd91c3d329bd22853866f8f8533 + md5: e8442f5d358d1449deaf4ba76f5e212c + sha256: 81327871ef18cbdd095e1e7650a198fd13f02355a39f23f1e377aa6d899f8ce0 category: main optional: false - name: wrapt - version: 1.17.3 + version: 2.0.1 manager: conda platform: win-64 dependencies: @@ -7620,10 +7620,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/wrapt-1.17.3-py311h3485c13_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/wrapt-2.0.1-py311h3485c13_1.conda hash: - md5: fbf91bcdeeb11de218edce103104e353 - sha256: 96f1ea03084a6deeb0630372319a03d7774f982d24e9ad7394941efd5779591c + md5: 6984e251174331af4da961ac6d859188 + sha256: 1bc7cbb700f44f68aa5935de8cf111a08019b47f05dfbb1af95e74da2052590f category: main optional: false - name: xorg-libxau @@ -7890,7 +7890,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7908,7 +7908,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7922,7 +7922,7 @@ package: category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.13.0a2.dev49+ef4d20cc manager: pip platform: linux-64 dependencies: @@ -7930,16 +7930,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: ef4d20ccefacce7b2dd01959d653be1f38fab674 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.13.0a2.dev49+ef4d20cc manager: pip platform: win-64 dependencies: @@ -7947,12 +7947,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: ef4d20ccefacce7b2dd01959d653be1f38fab674 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 category: main optional: false - name: grid-apps @@ -7962,7 +7962,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev1+3a0ee39 - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -7981,7 +7981,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev1+3a0ee39 - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -7994,7 +7994,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.3a1.dev105+g7d744e889 + version: 0.23.0.3a1.dev106+g03bcafc8f manager: pip platform: linux-64 dependencies: @@ -8007,16 +8007,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' typing-extensions: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 hash: - sha256: 7d744e889c77fa74ab5addcd26b7c709f395eb77 + sha256: 03bcafc8f5001a2f5df698298a387e8b6bf31c74 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 category: main optional: false - name: mira-simpeg - version: 0.23.0.3a1.dev105+g7d744e889 + version: 0.23.0.3a1.dev106+g03bcafc8f manager: pip platform: win-64 dependencies: @@ -8029,11 +8029,11 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' typing-extensions: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 hash: - sha256: 7d744e889c77fa74ab5addcd26b7c709f395eb77 + sha256: 03bcafc8f5001a2f5df698298a387e8b6bf31c74 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 category: main optional: false diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index d093ef3d..9d2faf2a 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: 75f9dfef05ce45a19001c219a5a5624930d16cb508f9743ae44859e7a2ed2328 - linux-64: f08dbe12eaba84788a1b865c9d12288c14f6e9a11eeecf419706ee2305b09559 + win-64: a78d91fa3dc4c95c661cb43f744570c4cbf3dc04b7182fba46b68958c9f38e93 + linux-64: 8d2ec2f5bff152c0b1a90962f693656e4ddb9e44ed5c8117e1ca290243cc3f6e channels: - url: conda-forge used_env_vars: [] @@ -324,29 +324,29 @@ package: category: dev optional: true - name: async-lru - version: 2.0.5 + version: 2.1.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.1.0-pyhcf101f3_0.conda hash: - md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 - sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b + md5: 04d2e5fba67e5a1ecec8e25d6c769004 + sha256: fb09cb9bfe4da1586d0ad3bf80bb65e70acfd5fe0f76df384250a1c0587d6acc category: dev optional: true - name: async-lru - version: 2.0.5 + version: 2.1.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' typing_extensions: '>=4.0.0' - url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.0.5-pyh29332c3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/async-lru-2.1.0-pyhcf101f3_0.conda hash: - md5: d9d0f99095a9bb7e3641bca8c6ad2ac7 - sha256: 3b7233041e462d9eeb93ea1dfe7b18aca9c358832517072054bb8761df0c324b + md5: 04d2e5fba67e5a1ecec8e25d6c769004 + sha256: fb09cb9bfe4da1586d0ad3bf80bb65e70acfd5fe0f76df384250a1c0587d6acc category: dev optional: true - name: attrs @@ -1219,11 +1219,11 @@ package: platform: linux-64 dependencies: python: '>=3.10' - wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_0.conda + wrapt: <3,>=1.10 + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_1.conda hash: - md5: bf74a83f7a0f2a21b5d709997402cac4 - sha256: c994a70449d548dd388768090c71c1da81e1e128a281547ab9022908d46878c5 + md5: 5498feb783ab29db6ca8845f68fa0f03 + sha256: 7d57a7b8266043ffb99d092ebc25e89a0a2490bed4146b9432c83c2c476fa94d category: main optional: false - name: deprecated @@ -1232,35 +1232,35 @@ package: platform: win-64 dependencies: python: '>=3.10' - wrapt: <2,>=1.10 - url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_0.conda + wrapt: <3,>=1.10 + url: https://repo.prefix.dev/conda-forge/noarch/deprecated-1.3.1-pyhd8ed1ab_1.conda hash: - md5: bf74a83f7a0f2a21b5d709997402cac4 - sha256: c994a70449d548dd388768090c71c1da81e1e128a281547ab9022908d46878c5 + md5: 5498feb783ab29db6ca8845f68fa0f03 + sha256: 7d57a7b8266043ffb99d092ebc25e89a0a2490bed4146b9432c83c2c476fa94d category: main optional: false - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: dill - version: 0.4.0 + version: 0.4.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhcf101f3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda hash: - md5: eec5b361dbbaa69dba05050977a414b0 - sha256: c0c91bd91e59940091cec1760db51a82a58e9c64edf4b808bd2da94201ccfdb4 + md5: 080a808fce955026bf82107d955d32da + sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757 category: dev optional: true - name: discretize @@ -1545,27 +1545,27 @@ package: category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.1.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.1.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 1daaf94a304a27ba3446a306235a37ea + sha256: bfba6c280366f48b00a6a7036988fc2bc3fea5ac1d8303152c9da69d72a22936 category: main optional: false - name: fsspec - version: 2025.12.0 + version: 2026.1.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2025.12.0-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/fsspec-2026.1.0-pyhd8ed1ab_0.conda hash: - md5: a3b9510e2491c20c7fc0f5e730227fbb - sha256: 64a4ed910e39d96cd590d297982b229c57a08e70450d489faa34fd2bec36dbcc + md5: 1daaf94a304a27ba3446a306235a37ea + sha256: bfba6c280366f48b00a6a7036988fc2bc3fea5ac1d8303152c9da69d72a22936 category: main optional: false - name: geoana @@ -1704,17 +1704,17 @@ package: dependencies: __glibc: '>=2.17,<3.0.a0' libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libcurl: '>=8.18.0,<9.0a0' libgcc: '>=14' libgfortran: '' libgfortran5: '>=14.3.0' libstdcxx: '>=14' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.4,<4.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_104.conda + url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h1b119a7_105.conda hash: - md5: 0857f4d157820dcd5625f61fdfefb780 - sha256: 454e9724b322cee277abd7acf4f8d688e9c4ded006b6d5bc9fcc2a1ff907d27a + md5: d58cd79121dd51128f2a5dab44edf1ea + sha256: aa85acd07b8f60d1760c6b3fa91dd8402572766e763f3989c759ecd266ed8e9f category: main optional: false - name: hdf5 @@ -1723,16 +1723,16 @@ package: platform: win-64 dependencies: libaec: '>=1.1.4,<2.0a0' - libcurl: '>=8.17.0,<9.0a0' + libcurl: '>=8.18.0,<9.0a0' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.5.4,<4.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_h89f0904_104.conda + url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_h89f0904_105.conda hash: - md5: 9cc4a5567d46c7fcde99563e86522882 - sha256: cc948149f700033ff85ce4a1854edf6adcb5881391a3df5c40cbe2a793dd9f81 + md5: c1caaf8a28c0eb3be85566e63a5fcb5a + sha256: 52e5eb039289946a32aee305e6af777d77376dc0adcb2bdcc31633dcc48d21a5 category: main optional: false - name: hpack @@ -2689,33 +2689,33 @@ package: category: dev optional: true - name: jupyter_server_terminals - version: 0.5.3 + version: 0.5.4 manager: conda platform: linux-64 dependencies: - python: '>=3.9' + python: '>=3.10' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda hash: - md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd - sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 + md5: 7b8bace4943e0dc345fc45938826f2b8 + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 category: dev optional: true - name: jupyter_server_terminals - version: 0.5.3 + version: 0.5.4 manager: conda platform: win-64 dependencies: - python: '>=3.9' + python: '>=3.10' terminado: '>=0.8.3' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter_server_terminals-0.5.4-pyhcf101f3_0.conda hash: - md5: 2d983ff1b82a1ccb6f2e9d8784bdd6bd - sha256: 0890fc79422191bc29edf17d7b42cff44ba254aa225d31eb30819f8772b775b8 + md5: 7b8bace4943e0dc345fc45938826f2b8 + sha256: 5eda79ed9f53f590031d29346abd183051263227dd9ee667b5ca1133ce297654 category: dev optional: true - name: jupyterlab - version: 4.5.1 + version: 4.5.2 manager: conda platform: linux-64 dependencies: @@ -2734,14 +2734,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda hash: - md5: f8e8f8db45e1a946ce9b20b0f60b3111 - sha256: ac31a517238173eb565ba9f517b1f9437fba48035f1276a9c1190c145657cafd + md5: 513e7fcc06c82b24c84ff88ece13ac9f + sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 category: dev optional: true - name: jupyterlab - version: 4.5.1 + version: 4.5.2 manager: conda platform: win-64 dependencies: @@ -2760,10 +2760,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda hash: - md5: f8e8f8db45e1a946ce9b20b0f60b3111 - sha256: ac31a517238173eb565ba9f517b1f9437fba48035f1276a9c1190c145657cafd + md5: 513e7fcc06c82b24c84ff88ece13ac9f + sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 category: dev optional: true - name: jupyterlab_pygments @@ -2855,7 +2855,7 @@ package: category: dev optional: true - name: jupytext - version: 1.18.1 + version: 1.19.0 manager: conda platform: linux-64 dependencies: @@ -2866,14 +2866,14 @@ package: python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.18.1-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.19.0-pyh0398c0e_0.conda hash: - md5: 3c85f79f1debe2d2c82ac08f1c1126e1 - sha256: 07063dad3019455d786dc3b5174731eb0ef53eb699df25e21571c2b7cdcf0fd0 + md5: 1831f8fcb080707636343f5e1d8994f1 + sha256: 76f1c795088c7ad8b899ee388aafe69d3412ff11d5ca628fff0b655fbb31de05 category: dev optional: true - name: jupytext - version: 1.18.1 + version: 1.19.0 manager: conda platform: win-64 dependencies: @@ -2884,10 +2884,10 @@ package: python: '>=3.10' pyyaml: '' tomli: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.18.1-pyh80e38bb_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupytext-1.19.0-pyh0398c0e_0.conda hash: - md5: 3c85f79f1debe2d2c82ac08f1c1126e1 - sha256: 07063dad3019455d786dc3b5174731eb0ef53eb699df25e21571c2b7cdcf0fd0 + md5: 1831f8fcb080707636343f5e1d8994f1 + sha256: 76f1c795088c7ad8b899ee388aafe69d3412ff11d5ca628fff0b655fbb31de05 category: dev optional: true - name: keyutils @@ -2991,34 +2991,34 @@ package: category: dev optional: true - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda + libgcc: '>=14' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' + url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda hash: - md5: 000e85703f0fd9594c81710dd5066471 - sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8 + md5: 6f2e2c8f58160147c4d1c6f4c14cbac4 + sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a category: main optional: false - name: lcms2 - version: '2.17' + version: '2.18' manager: conda platform: win-64 dependencies: - libjpeg-turbo: '>=3.0.0,<4.0a0' - libtiff: '>=4.7.0,<4.8.0a0' + libjpeg-turbo: '>=3.1.2,<4.0a0' + libtiff: '>=4.7.1,<4.8.0a0' ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.18-hf2c6c5f_0.conda hash: - md5: 3538827f77b82a837fa681a4579e37a1 - sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d + md5: b6c68d6b829b044cd17a41e0a8a23ca1 + sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28 category: main optional: false - name: ld_impl_linux-64 @@ -3634,30 +3634,30 @@ package: category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda + libgcc: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/liblzma-5.8.2-hb03c661_0.conda hash: - md5: 1a580f7796c7bf6393fddb8bbbde58dc - sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 + md5: c7c83eecbb72d88b940c249af56c8b17 + sha256: 755c55ebab181d678c12e49cced893598f2bab22d582fbbf4d8b83c18be207eb category: main optional: false - name: liblzma - version: 5.8.1 + version: 5.8.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/liblzma-5.8.2-hfd05255_0.conda hash: - md5: c15148b2e18da456f5108ccb5e411446 - sha256: 55764956eb9179b98de7cc0e55696f2eff8f7b83fc3ebff5e696ca358bca28cc + md5: ba0bfd4c3cf73f299ffe46ff0eaeb8e3 + sha256: f25bf293f550c8ed2e0c7145eb404324611cfccff37660869d97abf526eb957c category: main optional: false - name: libnghttp2 @@ -3692,21 +3692,21 @@ package: category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.54 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.53-h421ea60_0.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libpng-1.6.54-h421ea60_0.conda hash: - md5: 00d4e66b1f746cb14944cad23fffb405 - sha256: 8acdeb9a7e3d2630176ba8e947caf6bf4985a5148dec69b801e5eb797856688b + md5: d361fa2a59e53b61c2675bfa073e5b7e + sha256: 5de60d34aac848a9991a09fcdea7c0e783d00024aefec279d55e87c0c44742cd category: main optional: false - name: libpng - version: 1.6.53 + version: 1.6.54 manager: conda platform: win-64 dependencies: @@ -3714,10 +3714,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/libpng-1.6.53-h7351971_0.conda + url: https://repo.prefix.dev/conda-forge/win-64/libpng-1.6.54-h7351971_0.conda hash: - md5: fb6f43f6f08ca100cb24cff125ab0d9e - sha256: e5d061e7bdb2b97227b6955d1aa700a58a5703b5150ab0467cc37de609f277b6 + md5: 638ecb69e44b6a588afd5633e81f9e61 + sha256: 6e269361aa18a57bd2e593e480d83d93fc5f839d33d3bfc31b4ffe10edf6751c category: main optional: false - name: libscotch @@ -3793,31 +3793,31 @@ package: category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.51.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libzlib: '>=1.3.1,<2.0a0' - url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.1-h0c1763c_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/libsqlite-3.51.2-h0c1763c_0.conda hash: - md5: ad1fd565aff83b543d726382c0ab0af2 - sha256: 5ef162b2a1390d1495a759734afe2312a358a58441cf8f378be651903646f3b7 + md5: f7d30045eccb83f2bb8053041f42db3c + sha256: c1ff4589b48d32ca0a2628970d869fa9f7b2c2d00269a3761edc7e9e4c1ab7b8 category: main optional: false - name: libsqlite - version: 3.51.1 + version: 3.51.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.1-hf5d6505_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/libsqlite-3.51.2-hf5d6505_0.conda hash: - md5: be65be5f758709fc01b01626152e96b0 - sha256: d6d86715a1afe11f626b7509935e9d2e14a4946632c0ac474526e20fc6c55f99 + md5: 903979414b47d777d548e5f0165e6cd8 + sha256: 756478128e3e104bd7e7c3ce6c1b0efad7e08c7320c69fdc726e039323c63fbb category: main optional: false - name: libssh2 @@ -4797,39 +4797,39 @@ package: category: dev optional: true - name: notebook - version: 7.5.1 + version: 7.5.2 manager: conda platform: linux-64 dependencies: importlib_resources: '>=5.0' jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.5.1,<4.6' + jupyterlab: '>=4.5.2,<4.6' jupyterlab_server: '>=2.28.0,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.10' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.2-pyhcf101f3_0.conda hash: - md5: c984a8b773a34e38f5cf399b6d582e5c - sha256: 672ec7db73c8bfbacf9227c0c2287effdeded77b4d06373f2e498a310ce76a8c + md5: 47b58fa741a608dac785b71b8083bdb7 + sha256: 05bda90b7a980593c5e955dec5c556ff4dabf56e6ff45a3fb6c670f5f20b11e6 category: dev optional: true - name: notebook - version: 7.5.1 + version: 7.5.2 manager: conda platform: win-64 dependencies: importlib_resources: '>=5.0' jupyter_server: '>=2.4.0,<3' - jupyterlab: '>=4.5.1,<4.6' + jupyterlab: '>=4.5.2,<4.6' jupyterlab_server: '>=2.28.0,<3' notebook-shim: '>=0.2,<0.3' python: '>=3.10' tornado: '>=6.2.0' - url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/notebook-7.5.2-pyhcf101f3_0.conda hash: - md5: c984a8b773a34e38f5cf399b6d582e5c - sha256: 672ec7db73c8bfbacf9227c0c2287effdeded77b4d06373f2e498a310ce76a8c + md5: 47b58fa741a608dac785b71b8083bdb7 + sha256: 05bda90b7a980593c5e955dec5c556ff4dabf56e6ff45a3fb6c670f5f20b11e6 category: dev optional: true - name: notebook-shim @@ -5324,27 +5324,27 @@ package: category: dev optional: true - name: prometheus_client - version: 0.23.1 + version: 0.24.1 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.23.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.24.1-pyhd8ed1ab_0.conda hash: - md5: a1e91db2d17fd258c64921cb38e6745a - sha256: 13dc67de68db151ff909f2c1d2486fa7e2d51355b25cee08d26ede1b62d48d40 + md5: 7526d20621b53440b0aae45d4797847e + sha256: 75b2589159d04b3fb92db16d9970b396b9124652c784ab05b66f584edc97f283 category: dev optional: true - name: prometheus_client - version: 0.23.1 + version: 0.24.1 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.23.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/prometheus_client-0.24.1-pyhd8ed1ab_0.conda hash: - md5: a1e91db2d17fd258c64921cb38e6745a - sha256: 13dc67de68db151ff909f2c1d2486fa7e2d51355b25cee08d26ede1b62d48d40 + md5: 7526d20621b53440b0aae45d4797847e + sha256: 75b2589159d04b3fb92db16d9970b396b9124652c784ab05b66f584edc97f283 category: dev optional: true - name: prompt-toolkit @@ -5692,27 +5692,27 @@ package: category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pyparsing - version: 3.3.1 + version: 3.3.2 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.1-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/pyparsing-3.3.2-pyhcf101f3_0.conda hash: - md5: d837065e4e0de4962c3462079c23f969 - sha256: 0c70bc577f5efa87501bdc841b88f594f4d3f3a992dfb851e2130fa5c817835b + md5: 3687cc0b82a8b4c17e1f0eb7e47163d5 + sha256: 417fba4783e528ee732afa82999300859b065dc59927344b4859c64aae7182de category: main optional: false - name: pysocks @@ -6497,54 +6497,54 @@ package: category: main optional: false - name: send2trash - version: 2.0.0 + version: 2.1.0 manager: conda platform: linux-64 dependencies: __linux: '' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.0.0-pyha191276_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.1.0-pyha191276_0.conda hash: - md5: f2cc28627a451a28ddd5ef5ab0bf579d - sha256: 27cd93b4f848a1c8193a7b1b8e6e6d03321462e96997ce95ea1a39305f7ac7cb + md5: 645026465469ecd4989188e1c4e24953 + sha256: b25d573874fe39cb8e4cf6ed0279acb9a94fedce5c5ae885da11566d595035ad category: dev optional: true - name: send2trash - version: 2.0.0 + version: 2.1.0 manager: conda platform: win-64 dependencies: __win: '' python: '>=3.10' pywin32: '' - url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.0.0-pyh6dadd2b_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/send2trash-2.1.0-pyh6dadd2b_0.conda hash: - md5: 40df72e963d80a403c1861ae9428b13c - sha256: f154f702baf550de9c1e3517f110bb71a056df5645027c8d15b37f3ea33722cc + md5: 69ba308f1356f39901f5654d82405df3 + sha256: b64e5cdb66f5d31fcef05b6ed95b8be3e80796528aa8a165428496c0dda3383f category: dev optional: true - name: setuptools - version: 80.9.0 + version: 80.10.1 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.10.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: cb72cedd94dd923c6a9405a3d3b1c018 + sha256: 89d5bb48047e7e27aa52a3a71d6ebf386e5ee4bdbd7ca91d653df9977eca8253 category: main optional: false - name: setuptools - version: 80.9.0 + version: 80.10.1 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/setuptools-80.10.1-pyh332efcf_0.conda hash: - md5: 4de79c071274a53dcaf2a8c749d1499e - sha256: 972560fcf9657058e3e1f97186cc94389144b46dbdf58c807ce62e83f977e863 + md5: cb72cedd94dd923c6a9405a3d3b1c018 + sha256: 89d5bb48047e7e27aa52a3a71d6ebf386e5ee4bdbd7ca91d653df9977eca8253 category: main optional: false - name: six @@ -6644,27 +6644,27 @@ package: category: main optional: false - name: soupsieve - version: 2.8.1 + version: 2.8.2 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda hash: - md5: 7de28c27fe620a4f7dbfaea137c6232b - sha256: 4ba9b8c45862e54d05ed9a04cc6aab5a17756ab9865f57cbf2836e47144153d2 + md5: fcbe3971b6017792e9b24ff451daa7f5 + sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a category: dev optional: true - name: soupsieve - version: 2.8.1 + version: 2.8.2 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.1-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda hash: - md5: 7de28c27fe620a4f7dbfaea137c6232b - sha256: 4ba9b8c45862e54d05ed9a04cc6aab5a17756ab9865f57cbf2836e47144153d2 + md5: fcbe3971b6017792e9b24ff451daa7f5 + sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a category: dev optional: true - name: sphinx @@ -7072,51 +7072,51 @@ package: category: main optional: false - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomli - version: 2.3.0 + version: 2.4.0 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.3.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/tomli-2.4.0-pyhcf101f3_0.conda hash: - md5: d2732eb636c264dc9aa4cbee404b1a53 - sha256: cb77c660b646c00a48ef942a9e1721ee46e90230c7c570cdeb5a893b5cce9bff + md5: 72e780e9aa2d0a3295f59b1874e3768b + sha256: 62940c563de45790ba0f076b9f2085a842a65662268b02dd136a8e9b1eaf47a8 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: tomlkit - version: 0.13.3 + version: 0.14.0 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.13.3-pyha770c72_0.conda + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/tomlkit-0.14.0-pyha770c72_0.conda hash: - md5: 146402bf0f11cbeb8f781fa4309a95d3 - sha256: f8d3b49c084831a20923f66826f30ecfc55a4cd951e544b7213c692887343222 + md5: 385dca77a8b0ec6fa9b92cb62d09b43b + sha256: b35082091c8efd084e51bc3a4a2d3b07897eff232aaf58cbc0f959b6291a6a93 category: dev optional: true - name: toolz @@ -7676,7 +7676,7 @@ package: category: dev optional: true - name: wrapt - version: 1.17.3 + version: 2.0.1 manager: conda platform: linux-64 dependencies: @@ -7684,14 +7684,14 @@ package: libgcc: '>=14' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-1.17.3-py312h4c3975b_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/wrapt-2.0.1-py312h4c3975b_1.conda hash: - md5: 8af3faf88325836e46c6cb79828e058c - sha256: 8320d5af37eb8933e5d129884ea013b2687e75b08aff5216193df3378eaea92f + md5: b6ee834617873da8a2196c109275b38b + sha256: d1d352da699a642be0fd7a5cc894c37b1e8ddfda37c723cacfa9b1986824f80d category: main optional: false - name: wrapt - version: 1.17.3 + version: 2.0.1 manager: conda platform: win-64 dependencies: @@ -7700,10 +7700,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/wrapt-1.17.3-py312he06e257_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/wrapt-2.0.1-py312he06e257_1.conda hash: - md5: fc10fd823d05bde83cda9e90dbef34ed - sha256: f9e9e28ef3a0564a5588427b9503ed08e5fe3624b8f8132d60383439a47baafc + md5: 3bc504b608413750156d62ce84255a87 + sha256: 212fbb75f6eaf19844feb5fb548c814665ae50aca8f7a15f39d387a63fb778dd category: main optional: false - name: xorg-libxau @@ -7970,7 +7970,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7988,7 +7988,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -8002,7 +8002,7 @@ package: category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.13.0a2.dev49+ef4d20cc manager: pip platform: linux-64 dependencies: @@ -8010,16 +8010,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: ef4d20ccefacce7b2dd01959d653be1f38fab674 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev34+872fd38e + version: 0.13.0a2.dev49+ef4d20cc manager: pip platform: win-64 dependencies: @@ -8027,12 +8027,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 hash: - sha256: 872fd38e1f3a73fad567de7825e5e2bb0aadab72 + sha256: ef4d20ccefacce7b2dd01959d653be1f38fab674 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@872fd38e1f3a73fad567de7825e5e2bb0aadab72 + url: git+https://github.com/MiraGeoscience/geoh5py.git@ef4d20ccefacce7b2dd01959d653be1f38fab674 category: main optional: false - name: grid-apps @@ -8042,7 +8042,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev1+3a0ee39 - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8061,7 +8061,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev1+3a0ee39 - geoh5py: 0.13.0a2.dev34+872fd38e + geoh5py: 0.13.0a2.dev49+ef4d20cc numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8074,7 +8074,7 @@ package: category: main optional: false - name: mira-simpeg - version: 0.23.0.3a1.dev105+g7d744e889 + version: 0.23.0.3a1.dev106+g03bcafc8f manager: pip platform: linux-64 dependencies: @@ -8087,16 +8087,16 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' typing-extensions: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 hash: - sha256: 7d744e889c77fa74ab5addcd26b7c709f395eb77 + sha256: 03bcafc8f5001a2f5df698298a387e8b6bf31c74 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 category: main optional: false - name: mira-simpeg - version: 0.23.0.3a1.dev105+g7d744e889 + version: 0.23.0.3a1.dev106+g03bcafc8f manager: pip platform: win-64 dependencies: @@ -8109,11 +8109,11 @@ package: pymatsolver: '>=0.3' scipy: '>=1.8' typing-extensions: '*' - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 hash: - sha256: 7d744e889c77fa74ab5addcd26b7c709f395eb77 + sha256: 03bcafc8f5001a2f5df698298a387e8b6bf31c74 source: type: url - url: git+https://github.com/MiraGeoscience/simpeg.git@7d744e889c77fa74ab5addcd26b7c709f395eb77 + url: git+https://github.com/MiraGeoscience/simpeg.git@03bcafc8f5001a2f5df698298a387e8b6bf31c74 category: main optional: false diff --git a/pyproject.toml b/pyproject.toml index a7298709..87e4076e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,7 @@ grid-apps = {git = "https://github.com/MiraGeoscience/grid-apps.git", rev = "dev geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop"} #mira-simpeg = {version = ">=0.23.0.3a, 0.23.0.*", source="pypi", allow-prereleases = true, extras = ["dask"]} -mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "GEOPY-2522", extras = ["dask"]} +mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "develop", extras = ["dask"]} ## about pip dependencies # to be specified to work with conda-lock From abd3c632d4dc864ebed79c1114a3c5e137454c30 Mon Sep 17 00:00:00 2001 From: dominiquef Date: Wed, 21 Jan 2026 09:02:28 -0800 Subject: [PATCH 5/6] Better handling of MVI case --- simpeg_drivers/driver.py | 2 +- simpeg_drivers/joint/joint_surveys/driver.py | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/simpeg_drivers/driver.py b/simpeg_drivers/driver.py index 02611862..fd94763e 100644 --- a/simpeg_drivers/driver.py +++ b/simpeg_drivers/driver.py @@ -850,7 +850,7 @@ def get_path(self, filepath: str | Path) -> str: if __name__ == "__main__": - file = Path(r"C:\Users\dominiquef\Desktop\Tests\GEOPY-2620D.ui.json").resolve() + file = Path(sys.argv[1]).resolve() input_file = load_ui_json_as_dict(file) n_workers = input_file.get("n_workers", None) n_threads = input_file.get("n_threads", None) diff --git a/simpeg_drivers/joint/joint_surveys/driver.py b/simpeg_drivers/joint/joint_surveys/driver.py index 3341b85b..581ba9b4 100644 --- a/simpeg_drivers/joint/joint_surveys/driver.py +++ b/simpeg_drivers/joint/joint_surveys/driver.py @@ -57,13 +57,11 @@ def validate_create_models(self): model_local_values = getattr(self.drivers[0].models, model_type) - if ( - self.drivers[0].models.is_vector - and len(model_local_values) > self.drivers[0].models.n_active - ): - model_local_values = np.linalg.norm( - model_local_values.reshape((-1, 3), order="F"), axis=1 - ) + # All get augmented to 3N for vector models + if self.drivers[0].models.is_vector and "clination" not in model_type: + model_local_values = getattr( + self.drivers[0].models, f"_{model_type}" + ).model model = ( projection * model_local_values[: self.drivers[0].models.n_active] From 0ec27beb1cd3c96269b22b54c4ae6ca7a93c27ac Mon Sep 17 00:00:00 2001 From: dominiquef Date: Sun, 25 Jan 2026 08:48:48 -0800 Subject: [PATCH 6/6] Re-lock --- .../py-3.10-linux-64-dev.conda.lock.yml | 14 +- environments/py-3.10-linux-64.conda.lock.yml | 8 +- .../py-3.10-win-64-dev.conda.lock.yml | 16 +- environments/py-3.10-win-64.conda.lock.yml | 8 +- .../py-3.11-linux-64-dev.conda.lock.yml | 18 +- environments/py-3.11-linux-64.conda.lock.yml | 13 +- .../py-3.11-win-64-dev.conda.lock.yml | 20 +- environments/py-3.11-win-64.conda.lock.yml | 13 +- .../py-3.12-linux-64-dev.conda.lock.yml | 18 +- environments/py-3.12-linux-64.conda.lock.yml | 13 +- .../py-3.12-win-64-dev.conda.lock.yml | 20 +- environments/py-3.12-win-64.conda.lock.yml | 13 +- py-3.10.conda-lock.yml | 140 ++++++------- py-3.11.conda-lock.yml | 193 +++++++++--------- py-3.12.conda-lock.yml | 193 +++++++++--------- 15 files changed, 348 insertions(+), 352 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 4aef5f41..c52ef9ed 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -87,14 +87,14 @@ dependencies: - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 - jsonschema-with-format-nongpl=4.26.0=hcf101f3_0 - - jupyter-book=2.1.0=pyhcf101f3_0 + - jupyter-book=2.1.1=pyhcf101f3_0 - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.8.0=pyhcf101f3_0 - jupyter_core=5.9.1=pyhc90fa1f_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - jupyter_server_terminals=0.5.4=pyhcf101f3_0 - - jupyterlab=4.5.2=pyhd8ed1ab_0 + - jupyterlab=4.5.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -106,7 +106,7 @@ dependencies: - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 + - libaec=1.1.5=h088129d_0 - libblas=3.9.0=37_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 @@ -180,7 +180,7 @@ dependencies: - openjpeg=2.5.4=h55fea9a_0 - openssl=3.6.0=h26f9b46_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyh29332c3_1 + - packaging=26.0=pyhcf101f3_0 - pandas=2.3.3=py310h0158d43_2 - pandoc=3.8.3=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -236,7 +236,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.2=pyhd8ed1ab_0 + - soupsieve=2.8.3=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -270,7 +270,7 @@ dependencies: - webcolors=25.10.0=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 - websocket-client=1.9.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 @@ -284,7 +284,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index acbe02bf..4180ccb7 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -49,7 +49,7 @@ dependencies: - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 + - libaec=1.1.5=h088129d_0 - libblas=3.9.0=37_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 @@ -105,7 +105,7 @@ dependencies: - numpy=1.26.4=py310hb13e2d6_0 - openjpeg=2.5.4=h55fea9a_0 - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 + - packaging=26.0=pyhcf101f3_0 - pandas=2.3.3=py310h0158d43_2 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310hebfe307_1 @@ -146,7 +146,7 @@ dependencies: - tzdata=2025c=hc9c84f9_1 - unicodedata2=17.0.0=py310h7c4b9e2_1 - urllib3=2.6.3=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 - xyzservices=2025.11.0=pyhd8ed1ab_0 @@ -157,7 +157,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae 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 cdbec403..0cd12edf 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -86,14 +86,14 @@ dependencies: - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 - jsonschema-with-format-nongpl=4.26.0=hcf101f3_0 - - jupyter-book=2.1.0=pyhcf101f3_0 + - jupyter-book=2.1.1=pyhcf101f3_0 - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.8.0=pyhcf101f3_0 - jupyter_core=5.9.1=pyh6dadd2b_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - jupyter_server_terminals=0.5.4=pyhcf101f3_0 - - jupyterlab=4.5.2=pyhd8ed1ab_0 + - jupyterlab=4.5.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -103,7 +103,7 @@ dependencies: - lark=1.3.1=pyhd8ed1ab_0 - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 + - libaec=1.1.5=haf901d7_0 - libblas=3.9.0=35_h5709861_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 @@ -155,7 +155,7 @@ dependencies: - nbconvert-pandoc=7.16.6=h7d6f222_1 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - nodejs=25.2.1=he453025_1 + - nodejs=25.2.1=he453025_2 - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.13.1=py310hb4db72f_0 @@ -163,7 +163,7 @@ dependencies: - openjpeg=2.5.4=h24db6dd_0 - openssl=3.6.0=h725018a_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyh29332c3_1 + - packaging=26.0=pyhcf101f3_0 - pandas=2.3.3=py310hed136d8_2 - pandoc=3.8.3=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 @@ -218,7 +218,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.2=pyhd8ed1ab_0 + - soupsieve=2.8.3=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -256,7 +256,7 @@ dependencies: - webcolors=25.10.0=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 - websocket-client=1.9.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - winpty=0.4.3=4 @@ -271,7 +271,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index 003e79a6..801d230d 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -46,7 +46,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 + - libaec=1.1.5=haf901d7_0 - libblas=3.9.0=35_h5709861_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 @@ -89,7 +89,7 @@ dependencies: - numpy=1.26.4=py310hf667824_0 - openjpeg=2.5.4=h24db6dd_0 - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 + - packaging=26.0=pyhcf101f3_0 - pandas=2.3.3=py310hed136d8_2 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py310h3e38d90_1 @@ -133,7 +133,7 @@ dependencies: - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - xorg-libxau=1.0.12=hba3369d_1 - xorg-libxdmcp=1.1.5=hba3369d_1 @@ -145,7 +145,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae 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 d0406864..695cc171 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -39,7 +39,7 @@ dependencies: - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - - contourpy=1.3.3=py311hdf67eae_3 + - contourpy=1.3.3=py311h724c32c_4 - coverage=7.13.1=py311h3778330_0 - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py311h49ec1c0_1 @@ -89,14 +89,14 @@ dependencies: - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 - jsonschema-with-format-nongpl=4.26.0=hcf101f3_0 - - jupyter-book=2.1.0=pyhcf101f3_0 + - jupyter-book=2.1.1=pyhcf101f3_0 - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.8.0=pyhcf101f3_0 - jupyter_core=5.9.1=pyhc90fa1f_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - jupyter_server_terminals=0.5.4=pyhcf101f3_0 - - jupyterlab=4.5.2=pyhd8ed1ab_0 + - jupyterlab=4.5.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -108,7 +108,7 @@ dependencies: - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 + - libaec=1.1.5=h088129d_0 - libblas=3.9.0=37_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 @@ -182,8 +182,8 @@ dependencies: - openjpeg=2.5.4=h55fea9a_0 - openssl=3.6.0=h26f9b46_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py311hed34c8f_2 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py311h8032f78_0 - pandoc=3.8.3=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.5=pyhcf101f3_0 @@ -237,7 +237,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.2=pyhd8ed1ab_0 + - soupsieve=2.8.3=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -271,7 +271,7 @@ dependencies: - webcolors=25.10.0=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 - websocket-client=1.9.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - wrapt=2.0.1=py311h49ec1c0_1 - xorg-libxau=1.0.12=hb03c661_1 @@ -286,7 +286,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 7d52271e..4432b7bf 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -23,7 +23,7 @@ dependencies: - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311hdf67eae_3 + - contourpy=1.3.3=py311h724c32c_4 - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py311h49ec1c0_1 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -50,7 +50,7 @@ dependencies: - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 + - libaec=1.1.5=h088129d_0 - libblas=3.9.0=37_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 @@ -106,8 +106,8 @@ dependencies: - numpy=1.26.4=py311h64a7726_0 - openjpeg=2.5.4=h55fea9a_0 - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py311hed34c8f_2 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py311h8032f78_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h82a398c_1 - pip=25.3=pyh8b19718_0 @@ -124,7 +124,6 @@ dependencies: - python-mumps=0.0.3=py311h4b558b0_0 - python-tzdata=2025.3=pyhd8ed1ab_0 - python_abi=3.11=8_cp311 - - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.3=py311h3778330_0 - readline=8.3=h853b02a_0 - rtree=1.2.0=py311ha1603b9_1 @@ -147,7 +146,7 @@ dependencies: - tzdata=2025c=hc9c84f9_1 - unicodedata2=17.0.0=py311h49ec1c0_1 - urllib3=2.6.3=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - wrapt=2.0.1=py311h49ec1c0_1 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 @@ -159,7 +158,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae 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 cdd25ffb..9c3b4a9f 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -38,7 +38,7 @@ dependencies: - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - - contourpy=1.3.3=py311h3fd045d_3 + - contourpy=1.3.3=py311h275cad7_4 - coverage=7.13.1=py311h3f79411_0 - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py311h3485c13_1 @@ -88,14 +88,14 @@ dependencies: - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 - jsonschema-with-format-nongpl=4.26.0=hcf101f3_0 - - jupyter-book=2.1.0=pyhcf101f3_0 + - jupyter-book=2.1.1=pyhcf101f3_0 - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.8.0=pyhcf101f3_0 - jupyter_core=5.9.1=pyh6dadd2b_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - jupyter_server_terminals=0.5.4=pyhcf101f3_0 - - jupyterlab=4.5.2=pyhd8ed1ab_0 + - jupyterlab=4.5.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -105,7 +105,7 @@ dependencies: - lark=1.3.1=pyhd8ed1ab_0 - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 + - libaec=1.1.5=haf901d7_0 - libblas=3.9.0=35_h5709861_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 @@ -157,7 +157,7 @@ dependencies: - nbconvert-pandoc=7.16.6=h7d6f222_1 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - nodejs=25.2.1=he453025_1 + - nodejs=25.2.1=he453025_2 - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py311h11fd7f3_1 @@ -165,8 +165,8 @@ dependencies: - openjpeg=2.5.4=h24db6dd_0 - openssl=3.6.0=h725018a_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py311h11fd7f3_2 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py311h0610301_0 - pandoc=3.8.3=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.5=pyhcf101f3_0 @@ -219,7 +219,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.2=pyhd8ed1ab_0 + - soupsieve=2.8.3=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -257,7 +257,7 @@ dependencies: - webcolors=25.10.0=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 - websocket-client=1.9.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - winpty=0.4.3=4 @@ -273,7 +273,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index f61346e9..48cc7958 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -22,7 +22,7 @@ dependencies: - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py311h3fd045d_3 + - contourpy=1.3.3=py311h275cad7_4 - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py311h3485c13_1 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 + - libaec=1.1.5=haf901d7_0 - libblas=3.9.0=35_h5709861_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 @@ -90,8 +90,8 @@ dependencies: - numpy=1.26.4=py311h0b4df5a_0 - openjpeg=2.5.4=h24db6dd_0 - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py311h11fd7f3_2 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py311h0610301_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py311h5592be9_1 - pip=25.3=pyh8b19718_0 @@ -108,7 +108,6 @@ dependencies: - python-mumps=0.0.3=py311h5bfbc98_0 - python-tzdata=2025.3=pyhd8ed1ab_0 - python_abi=3.11=8_cp311 - - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.3=py311h3f79411_0 - rtree=1.2.0=py311h44d53c4_1 - scikit-learn=1.6.1=py311hdcb8d17_0 @@ -134,7 +133,7 @@ dependencies: - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - wrapt=2.0.1=py311h3485c13_1 - xorg-libxau=1.0.12=hba3369d_1 @@ -147,7 +146,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae 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 0dc4fead..67ba415e 100644 --- a/environments/py-3.12-linux-64-dev.conda.lock.yml +++ b/environments/py-3.12-linux-64-dev.conda.lock.yml @@ -40,7 +40,7 @@ dependencies: - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - - contourpy=1.3.3=py312hd9148b4_3 + - contourpy=1.3.3=py312h0a2e395_4 - coverage=7.13.1=py312h8a5da7c_0 - cpython=3.12.12=py312hd8ed1ab_1 - cycler=0.12.1=pyhcf101f3_2 @@ -91,14 +91,14 @@ dependencies: - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 - jsonschema-with-format-nongpl=4.26.0=hcf101f3_0 - - jupyter-book=2.1.0=pyhcf101f3_0 + - jupyter-book=2.1.1=pyhcf101f3_0 - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.8.0=pyhcf101f3_0 - jupyter_core=5.9.1=pyhc90fa1f_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - jupyter_server_terminals=0.5.4=pyhcf101f3_0 - - jupyterlab=4.5.2=pyhd8ed1ab_0 + - jupyterlab=4.5.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -110,7 +110,7 @@ dependencies: - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 + - libaec=1.1.5=h088129d_0 - libblas=3.9.0=37_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 @@ -184,8 +184,8 @@ dependencies: - openjpeg=2.5.4=h55fea9a_0 - openssl=3.6.0=h26f9b46_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py312hf79963d_1 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py312h8ecdadd_0 - pandoc=3.8.3=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.5=pyhcf101f3_0 @@ -240,7 +240,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.2=pyhd8ed1ab_0 + - soupsieve=2.8.3=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -274,7 +274,7 @@ dependencies: - webcolors=25.10.0=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 - websocket-client=1.9.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - wrapt=2.0.1=py312h4c3975b_1 - xorg-libxau=1.0.12=hb03c661_1 @@ -289,7 +289,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/environments/py-3.12-linux-64.conda.lock.yml b/environments/py-3.12-linux-64.conda.lock.yml index cf2896e0..2723189a 100644 --- a/environments/py-3.12-linux-64.conda.lock.yml +++ b/environments/py-3.12-linux-64.conda.lock.yml @@ -23,7 +23,7 @@ dependencies: - click=8.3.1=pyh8f84b5b_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hd9148b4_3 + - contourpy=1.3.3=py312h0a2e395_4 - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py312h4c3975b_1 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -50,7 +50,7 @@ dependencies: - lcms2=2.18=h0c24ade_0 - ld_impl_linux-64=2.45=default_hbd61a6d_105 - lerc=4.0.0=h0aef613_1 - - libaec=1.1.4=h3f801dc_0 + - libaec=1.1.5=h088129d_0 - libblas=3.9.0=37_h5875eb1_mkl - libbrotlicommon=1.2.0=hb03c661_1 - libbrotlidec=1.2.0=hb03c661_1 @@ -106,8 +106,8 @@ dependencies: - numpy=1.26.4=py312heda63a1_0 - openjpeg=2.5.4=h55fea9a_0 - openssl=3.6.0=h26f9b46_0 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py312hf79963d_1 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py312h8ecdadd_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h287a98d_1 - pip=25.3=pyh8b19718_0 @@ -124,7 +124,6 @@ dependencies: - python-mumps=0.0.3=py312h6ad3ee3_0 - python-tzdata=2025.3=pyhd8ed1ab_0 - python_abi=3.12=8_cp312 - - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.3=py312h8a5da7c_0 - readline=8.3=h853b02a_0 - rtree=1.2.0=py312h3ed4c40_1 @@ -147,7 +146,7 @@ dependencies: - tzdata=2025c=hc9c84f9_1 - unicodedata2=17.0.0=py312h4c3975b_1 - urllib3=2.6.3=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - wrapt=2.0.1=py312h4c3975b_1 - xorg-libxau=1.0.12=hb03c661_1 - xorg-libxdmcp=1.1.5=hb03c661_1 @@ -159,7 +158,7 @@ dependencies: - zstd=1.5.7=hb78ec9c_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae 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 48692c88..36f7bf40 100644 --- a/environments/py-3.12-win-64-dev.conda.lock.yml +++ b/environments/py-3.12-win-64-dev.conda.lock.yml @@ -39,7 +39,7 @@ dependencies: - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.3=pyhe01879c_0 - - contourpy=1.3.3=py312hf90b1b7_3 + - contourpy=1.3.3=py312h78d62e6_4 - coverage=7.13.1=py312h05f76fc_0 - cpython=3.12.12=py312hd8ed1ab_1 - cycler=0.12.1=pyhcf101f3_2 @@ -90,14 +90,14 @@ dependencies: - jsonschema=4.26.0=pyhcf101f3_0 - jsonschema-specifications=2025.9.1=pyhcf101f3_0 - jsonschema-with-format-nongpl=4.26.0=hcf101f3_0 - - jupyter-book=2.1.0=pyhcf101f3_0 + - jupyter-book=2.1.1=pyhcf101f3_0 - jupyter-lsp=2.3.0=pyhcf101f3_0 - jupyter_client=8.8.0=pyhcf101f3_0 - jupyter_core=5.9.1=pyh6dadd2b_0 - jupyter_events=0.12.0=pyh29332c3_0 - jupyter_server=2.17.0=pyhcf101f3_0 - jupyter_server_terminals=0.5.4=pyhcf101f3_0 - - jupyterlab=4.5.2=pyhd8ed1ab_0 + - jupyterlab=4.5.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.28.0=pyhcf101f3_0 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -107,7 +107,7 @@ dependencies: - lark=1.3.1=pyhd8ed1ab_0 - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 + - libaec=1.1.5=haf901d7_0 - libblas=3.9.0=35_h5709861_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 @@ -159,7 +159,7 @@ dependencies: - nbconvert-pandoc=7.16.6=h7d6f222_1 - nbformat=5.10.4=pyhd8ed1ab_1 - nest-asyncio=1.6.0=pyhd8ed1ab_1 - - nodejs=25.2.1=he453025_1 + - nodejs=25.2.1=he453025_2 - notebook=7.5.2=pyhcf101f3_0 - notebook-shim=0.2.4=pyhd8ed1ab_1 - numcodecs=0.15.1=py312hc128f0a_1 @@ -167,8 +167,8 @@ dependencies: - openjpeg=2.5.4=h24db6dd_0 - openssl=3.6.0=h725018a_0 - overrides=7.7.0=pyhd8ed1ab_1 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py312hc128f0a_2 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py312h95189c4_0 - pandoc=3.8.3=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.5=pyhcf101f3_0 @@ -222,7 +222,7 @@ dependencies: - sniffio=1.3.1=pyhd8ed1ab_2 - snowballstemmer=3.0.1=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_1 - - soupsieve=2.8.2=pyhd8ed1ab_0 + - soupsieve=2.8.3=pyhd8ed1ab_0 - sphinx=5.3.0=pyhd8ed1ab_0 - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 @@ -260,7 +260,7 @@ dependencies: - webcolors=25.10.0=pyhd8ed1ab_0 - webencodings=0.5.1=pyhd8ed1ab_3 - websocket-client=1.9.0=pyhd8ed1ab_0 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - widgetsnbextension=3.6.10=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - winpty=0.4.3=4 @@ -276,7 +276,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/environments/py-3.12-win-64.conda.lock.yml b/environments/py-3.12-win-64.conda.lock.yml index 50313854..aa1d7bce 100644 --- a/environments/py-3.12-win-64.conda.lock.yml +++ b/environments/py-3.12-win-64.conda.lock.yml @@ -22,7 +22,7 @@ dependencies: - click=8.3.1=pyha7b4d00_1 - cloudpickle=3.1.2=pyhcf101f3_1 - colorama=0.4.6=pyhd8ed1ab_1 - - contourpy=1.3.3=py312hf90b1b7_3 + - contourpy=1.3.3=py312h78d62e6_4 - cycler=0.12.1=pyhcf101f3_2 - cytoolz=1.1.0=py312he06e257_1 - dask-core=2025.3.0=pyhd8ed1ab_0 @@ -47,7 +47,7 @@ dependencies: - krb5=1.21.3=hdf4eb48_0 - lcms2=2.18=hf2c6c5f_0 - lerc=4.0.0=h6470a55_1 - - libaec=1.1.4=h20038f6_0 + - libaec=1.1.5=haf901d7_0 - libblas=3.9.0=35_h5709861_mkl - libbrotlicommon=1.2.0=hfd05255_1 - libbrotlidec=1.2.0=hfd05255_1 @@ -90,8 +90,8 @@ dependencies: - numpy=1.26.4=py312h8753938_0 - openjpeg=2.5.4=h24db6dd_0 - openssl=3.6.0=h725018a_0 - - packaging=25.0=pyh29332c3_1 - - pandas=2.3.3=py312hc128f0a_2 + - packaging=26.0=pyhcf101f3_0 + - pandas=3.0.0=py312h95189c4_0 - partd=1.4.2=pyhd8ed1ab_0 - pillow=10.3.0=py312h381445a_1 - pip=25.3=pyh8b19718_0 @@ -108,7 +108,6 @@ dependencies: - python-mumps=0.0.3=py312h8095395_0 - python-tzdata=2025.3=pyhd8ed1ab_0 - python_abi=3.12=8_cp312 - - pytz=2025.2=pyhd8ed1ab_0 - pyyaml=6.0.3=py312h05f76fc_0 - rtree=1.2.0=py312h50e5f8f_1 - scikit-learn=1.6.1=py312h816cc57_0 @@ -134,7 +133,7 @@ dependencies: - vc=14.3=h41ae7f8_34 - vc14_runtime=14.44.35208=h818238b_34 - vcomp14=14.44.35208=h818238b_34 - - wheel=0.45.1=pyhd8ed1ab_1 + - wheel=0.46.3=pyhd8ed1ab_0 - win_inet_pton=1.1.0=pyh7428d3b_8 - wrapt=2.0.1=py312he06e257_1 - xorg-libxau=1.0.12=hba3369d_1 @@ -147,7 +146,7 @@ dependencies: - zstd=1.5.7=h534d264_6 - pip: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@3f02228742b4837bd456438081d0a128fc3e1b3a - - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 - grid-apps @ git+https://github.com/MiraGeoscience/grid-apps.git@99e51cbe794114ce08ab3bb16efcc6749b14914a - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@1cf096ddfe44da149fecbb53d6f6e97fae3c23ae diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index cebcb39c..ea5dafb1 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -2362,7 +2362,7 @@ package: category: dev optional: true - name: jupyter-book - version: 2.1.0 + version: 2.1.1 manager: conda platform: linux-64 dependencies: @@ -2372,14 +2372,14 @@ package: nodejs: '>=20' platformdirs: '>=4.2.2' python: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.1-pyhcf101f3_0.conda hash: - md5: d684ce882bb25ee88fb3c03127d26202 - sha256: 8bbe0db8d825169c3ad26d19ef670425267e3e215053ceb242357b497d0766fe + md5: 29cc201b7334408707a8866d6baa35cc + sha256: efea291760fba57a8abaf5b3a05c57f99d60cf11c8950fe8499f4d2eaa4473bb category: dev optional: true - name: jupyter-book - version: 2.1.0 + version: 2.1.1 manager: conda platform: win-64 dependencies: @@ -2389,10 +2389,10 @@ package: nodejs: '>=20' platformdirs: '>=4.2.2' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.1-pyhcf101f3_0.conda hash: - md5: d684ce882bb25ee88fb3c03127d26202 - sha256: 8bbe0db8d825169c3ad26d19ef670425267e3e215053ceb242357b497d0766fe + md5: 29cc201b7334408707a8866d6baa35cc + sha256: efea291760fba57a8abaf5b3a05c57f99d60cf11c8950fe8499f4d2eaa4473bb category: dev optional: true - name: jupyter-lsp @@ -2615,7 +2615,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.5.2 + version: 4.5.3 manager: conda platform: linux-64 dependencies: @@ -2634,14 +2634,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.3-pyhd8ed1ab_0.conda hash: - md5: 513e7fcc06c82b24c84ff88ece13ac9f - sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 + md5: 106f4e36e14797b9c2abfc3849d9e92f + sha256: 18b5bff46717023ef5e81ae6ba71b254c1aca474db32c6dc21897c46ea26fa75 category: dev optional: true - name: jupyterlab - version: 4.5.2 + version: 4.5.3 manager: conda platform: win-64 dependencies: @@ -2660,10 +2660,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.3-pyhd8ed1ab_0.conda hash: - md5: 513e7fcc06c82b24c84ff88ece13ac9f - sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 + md5: 106f4e36e14797b9c2abfc3849d9e92f + sha256: 18b5bff46717023ef5e81ae6ba71b254c1aca474db32c6dc21897c46ea26fa75 category: dev optional: true - name: jupyterlab_pygments @@ -2963,31 +2963,31 @@ package: category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda hash: - md5: 01ba04e414e47f95c03d6ddd81fd37be - sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 + md5: 86f7414544ae606282352fa1e116b41f + sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.5-haf901d7_0.conda hash: - md5: 85a2bed45827d77d5b308cb2b165404f - sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b + md5: 43b6385cfad52a7083f2c41984eb4e91 + sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8 category: main optional: false - name: libblas @@ -4690,10 +4690,10 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/nodejs-25.2.1-he453025_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/nodejs-25.2.1-he453025_2.conda hash: - md5: 461d47b472740c68ec0771c8b759868b - sha256: 9742d28cf4a171dc9898bfb3c8512858f1ed46aa3cbc26d8839003d879564beb + md5: b965c8d527c0a5b4781e39339abc808a + sha256: abe64c5dce6d7024919807f9d5ac72729862848238e6ad6bf9ed4e721c8cc232 category: dev optional: true - name: notebook @@ -4921,27 +4921,27 @@ package: category: dev optional: true - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: linux-64 dependencies: python: '' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: pandas @@ -6536,27 +6536,27 @@ package: category: main optional: false - name: soupsieve - version: 2.8.2 + version: 2.8.3 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda hash: - md5: fcbe3971b6017792e9b24ff451daa7f5 - sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a + md5: 18de09b20462742fe093ba39185d9bac + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac category: dev optional: true - name: soupsieve - version: 2.8.2 + version: 2.8.3 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda hash: - md5: fcbe3971b6017792e9b24ff451daa7f5 - sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a + md5: 18de09b20462742fe093ba39185d9bac + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac category: dev optional: true - name: sphinx @@ -7494,27 +7494,29 @@ package: category: dev optional: true - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: widgetsnbextension @@ -7831,7 +7833,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7849,7 +7851,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7863,7 +7865,7 @@ package: category: main optional: false - name: geoh5py - version: 0.13.0a2.dev52+fda60c22 + version: 0.13.0a2.dev90+689e16d4 manager: pip platform: linux-64 dependencies: @@ -7871,16 +7873,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 hash: - sha256: fda60c226dafdcdcb0bbe312be4c1622451479dc + sha256: 689e16d471a2f6a3ccfbbc921292c1e0387e2413 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev52+fda60c22 + version: 0.13.0a2.dev90+689e16d4 manager: pip platform: win-64 dependencies: @@ -7888,12 +7890,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 hash: - sha256: fda60c226dafdcdcb0bbe312be4c1622451479dc + sha256: 689e16d471a2f6a3ccfbbc921292c1e0387e2413 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 category: main optional: false - name: grid-apps @@ -7903,7 +7905,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev11+3f02228 - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -7922,7 +7924,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev11+3f02228 - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 7a1ac887..d775a6ba 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -926,12 +926,12 @@ package: libgcc: '>=14' libstdcxx: '>=14' numpy: '>=1.25' - python: '>=3.11,<3.12.0a0' + python: '' python_abi: 3.11.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py311hdf67eae_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py311h724c32c_4.conda hash: - md5: c4e2f4d5193e55a70bb67a2aa07006ae - sha256: fde69b5ab61225daca6c2f05a93f94c06af93003e4f871d61470df5c4cf9587b + md5: d04e508f5a03162c8bab4586a65d00bf + sha256: fd7aca059253cff3d8b0aec71f0c1bf2904823b13f1997bf222aea00a76f3cce category: main optional: false - name: contourpy @@ -940,15 +940,15 @@ package: platform: win-64 dependencies: numpy: '>=1.25' - 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' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py311h3fd045d_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py311h275cad7_4.conda hash: - md5: 5e7e380c470e9f4683b3129fedafbcdf - sha256: ca1bde6f4afec87945c1186a307727ba7e151aabb46fc67683562319987b1088 + md5: 9fb1f375c704c5287c97c60f6a88d137 + sha256: a903bff178a45cfb89e77a59b33ce54c6cdc7b0e05d2f5355f32e2b8e97ecce1 category: main optional: false - name: coverage @@ -2410,7 +2410,7 @@ package: category: dev optional: true - name: jupyter-book - version: 2.1.0 + version: 2.1.1 manager: conda platform: linux-64 dependencies: @@ -2420,14 +2420,14 @@ package: nodejs: '>=20' platformdirs: '>=4.2.2' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.1-pyhcf101f3_0.conda hash: - md5: d684ce882bb25ee88fb3c03127d26202 - sha256: 8bbe0db8d825169c3ad26d19ef670425267e3e215053ceb242357b497d0766fe + md5: 29cc201b7334408707a8866d6baa35cc + sha256: efea291760fba57a8abaf5b3a05c57f99d60cf11c8950fe8499f4d2eaa4473bb category: dev optional: true - name: jupyter-book - version: 2.1.0 + version: 2.1.1 manager: conda platform: win-64 dependencies: @@ -2437,10 +2437,10 @@ package: nodejs: '>=20' platformdirs: '>=4.2.2' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.1-pyhcf101f3_0.conda hash: - md5: d684ce882bb25ee88fb3c03127d26202 - sha256: 8bbe0db8d825169c3ad26d19ef670425267e3e215053ceb242357b497d0766fe + md5: 29cc201b7334408707a8866d6baa35cc + sha256: efea291760fba57a8abaf5b3a05c57f99d60cf11c8950fe8499f4d2eaa4473bb category: dev optional: true - name: jupyter-lsp @@ -2663,7 +2663,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.5.2 + version: 4.5.3 manager: conda platform: linux-64 dependencies: @@ -2682,14 +2682,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.3-pyhd8ed1ab_0.conda hash: - md5: 513e7fcc06c82b24c84ff88ece13ac9f - sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 + md5: 106f4e36e14797b9c2abfc3849d9e92f + sha256: 18b5bff46717023ef5e81ae6ba71b254c1aca474db32c6dc21897c46ea26fa75 category: dev optional: true - name: jupyterlab - version: 4.5.2 + version: 4.5.3 manager: conda platform: win-64 dependencies: @@ -2708,10 +2708,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.3-pyhd8ed1ab_0.conda hash: - md5: 513e7fcc06c82b24c84ff88ece13ac9f - sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 + md5: 106f4e36e14797b9c2abfc3849d9e92f + sha256: 18b5bff46717023ef5e81ae6ba71b254c1aca474db32c6dc21897c46ea26fa75 category: dev optional: true - name: jupyterlab_pygments @@ -3011,31 +3011,31 @@ package: category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda hash: - md5: 01ba04e414e47f95c03d6ddd81fd37be - sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 + md5: 86f7414544ae606282352fa1e116b41f + sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.5-haf901d7_0.conda hash: - md5: 85a2bed45827d77d5b308cb2b165404f - sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b + md5: 43b6385cfad52a7083f2c41984eb4e91 + sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8 category: main optional: false - name: libblas @@ -4738,10 +4738,10 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/nodejs-25.2.1-he453025_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/nodejs-25.2.1-he453025_2.conda hash: - md5: 461d47b472740c68ec0771c8b759868b - sha256: 9742d28cf4a171dc9898bfb3c8512858f1ed46aa3cbc26d8839003d879564beb + md5: b965c8d527c0a5b4781e39339abc808a + sha256: abe64c5dce6d7024919807f9d5ac72729862848238e6ad6bf9ed4e721c8cc232 category: dev optional: true - name: notebook @@ -4973,67 +4973,64 @@ package: category: dev optional: true - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: pandas - version: 2.3.3 + version: 3.0.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - numpy: '>=1.22.4' - python: '>=3.11,<3.12.0a0' + numpy: '>=1.26.0' + python: '' python-dateutil: '>=2.8.2' - python-tzdata: '>=2022.7' python_abi: 3.11.* - pytz: '>=2020.1' - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.3.3-py311hed34c8f_2.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.0-py311h8032f78_0.conda hash: - md5: 2366b5470cf61614c131e356efe9f74c - sha256: a2af9dbc4827db418a73127d4001bb3c2ee19adcd2d4387d6bc049c3780d2a62 + md5: 78d3e3073a999e662385c9a80d84ecec + sha256: 19df168c25f2201b577e3b1f2ca8aec9b8ee1f7b5aeda9b5354a8b330a790a75 category: main optional: false - name: pandas - version: 2.3.3 + version: 3.0.0 manager: conda platform: win-64 dependencies: - numpy: '>=1.22.4' - python: '>=3.11,<3.12.0a0' + numpy: '>=1.26.0' + python: '' python-dateutil: '>=2.8.2' - python-tzdata: '>=2022.7' + python-tzdata: '' python_abi: 3.11.* - pytz: '>=2020.1' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.3.3-py311h11fd7f3_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-3.0.0-py311h0610301_0.conda hash: - md5: 6d7622c147fa008da95fe7dd7431a868 - sha256: 7a4695b360b6a38f477c4e6deaa02e244ef77465e0c2a3b727d12c26bc0e9676 + md5: 35cc74cfc8cf3824a9ae45ee706b3fe0 + sha256: 2790793389a779899db76b8e1e66493e7a7f703e69022c941843702412fb6fda category: main optional: false - name: pandoc @@ -5978,8 +5975,8 @@ package: hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: main - optional: false + category: dev + optional: true - name: pytz version: '2025.2' manager: conda @@ -5990,8 +5987,8 @@ package: hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: main - optional: false + category: dev + optional: true - name: pywin32 version: '311' manager: conda @@ -6564,27 +6561,27 @@ package: category: main optional: false - name: soupsieve - version: 2.8.2 + version: 2.8.3 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda hash: - md5: fcbe3971b6017792e9b24ff451daa7f5 - sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a + md5: 18de09b20462742fe093ba39185d9bac + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac category: dev optional: true - name: soupsieve - version: 2.8.2 + version: 2.8.3 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda hash: - md5: fcbe3971b6017792e9b24ff451daa7f5 - sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a + md5: 18de09b20462742fe093ba39185d9bac + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac category: dev optional: true - name: sphinx @@ -7522,27 +7519,29 @@ package: category: dev optional: true - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: widgetsnbextension @@ -7890,7 +7889,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7908,7 +7907,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7922,7 +7921,7 @@ package: category: main optional: false - name: geoh5py - version: 0.13.0a2.dev52+fda60c22 + version: 0.13.0a2.dev90+689e16d4 manager: pip platform: linux-64 dependencies: @@ -7930,16 +7929,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 hash: - sha256: fda60c226dafdcdcb0bbe312be4c1622451479dc + sha256: 689e16d471a2f6a3ccfbbc921292c1e0387e2413 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev52+fda60c22 + version: 0.13.0a2.dev90+689e16d4 manager: pip platform: win-64 dependencies: @@ -7947,12 +7946,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 hash: - sha256: fda60c226dafdcdcb0bbe312be4c1622451479dc + sha256: 689e16d471a2f6a3ccfbbc921292c1e0387e2413 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 category: main optional: false - name: grid-apps @@ -7962,7 +7961,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev11+3f02228 - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -7981,7 +7980,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev11+3f02228 - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' diff --git a/py-3.12.conda-lock.yml b/py-3.12.conda-lock.yml index aa9625ae..9d1b1920 100644 --- a/py-3.12.conda-lock.yml +++ b/py-3.12.conda-lock.yml @@ -952,12 +952,12 @@ package: libgcc: '>=14' libstdcxx: '>=14' numpy: '>=1.25' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* - url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312hd9148b4_3.conda + url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312h0a2e395_4.conda hash: - md5: 86cf7a7d861b79d38e3f0e5097e4965b - sha256: e173ea96fb135b233c7f57c35c0d07f7adc50ebacf814550f3daf1c7ba2ed51e + md5: 43c2bc96af3ae5ed9e8a10ded942aa50 + sha256: 62447faf7e8eb691e407688c0b4b7c230de40d5ecf95bf301111b4d05c5be473 category: main optional: false - name: contourpy @@ -966,15 +966,15 @@ package: platform: win-64 dependencies: numpy: '>=1.25' - python: '>=3.12,<3.13.0a0' + python: '' python_abi: 3.12.* ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py312hf90b1b7_3.conda + url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py312h78d62e6_4.conda hash: - md5: 9dabe26ca46b845b669408109975b922 - sha256: 735847f474ffbef028e2bac81c786f46b2498d422b834b799f50e30d95730b37 + md5: 475bd41a63e613f2f2a2764cd1cd3b25 + sha256: 5f0dd3a4243e8293acc40abf3b11bcb23401268a1ef2ed3bce4d5a060383c1da category: main optional: false - name: coverage @@ -2462,7 +2462,7 @@ package: category: dev optional: true - name: jupyter-book - version: 2.1.0 + version: 2.1.1 manager: conda platform: linux-64 dependencies: @@ -2472,14 +2472,14 @@ package: nodejs: '>=20' platformdirs: '>=4.2.2' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.1-pyhcf101f3_0.conda hash: - md5: d684ce882bb25ee88fb3c03127d26202 - sha256: 8bbe0db8d825169c3ad26d19ef670425267e3e215053ceb242357b497d0766fe + md5: 29cc201b7334408707a8866d6baa35cc + sha256: efea291760fba57a8abaf5b3a05c57f99d60cf11c8950fe8499f4d2eaa4473bb category: dev optional: true - name: jupyter-book - version: 2.1.0 + version: 2.1.1 manager: conda platform: win-64 dependencies: @@ -2489,10 +2489,10 @@ package: nodejs: '>=20' platformdirs: '>=4.2.2' python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.0-pyhcf101f3_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyter-book-2.1.1-pyhcf101f3_0.conda hash: - md5: d684ce882bb25ee88fb3c03127d26202 - sha256: 8bbe0db8d825169c3ad26d19ef670425267e3e215053ceb242357b497d0766fe + md5: 29cc201b7334408707a8866d6baa35cc + sha256: efea291760fba57a8abaf5b3a05c57f99d60cf11c8950fe8499f4d2eaa4473bb category: dev optional: true - name: jupyter-lsp @@ -2715,7 +2715,7 @@ package: category: dev optional: true - name: jupyterlab - version: 4.5.2 + version: 4.5.3 manager: conda platform: linux-64 dependencies: @@ -2734,14 +2734,14 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.3-pyhd8ed1ab_0.conda hash: - md5: 513e7fcc06c82b24c84ff88ece13ac9f - sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 + md5: 106f4e36e14797b9c2abfc3849d9e92f + sha256: 18b5bff46717023ef5e81ae6ba71b254c1aca474db32c6dc21897c46ea26fa75 category: dev optional: true - name: jupyterlab - version: 4.5.2 + version: 4.5.3 manager: conda platform: win-64 dependencies: @@ -2760,10 +2760,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/jupyterlab-4.5.3-pyhd8ed1ab_0.conda hash: - md5: 513e7fcc06c82b24c84ff88ece13ac9f - sha256: 4e277cee7fc4b403c954960476375e5a51babd06f3ac46a04bd9fff5971aa569 + md5: 106f4e36e14797b9c2abfc3849d9e92f + sha256: 18b5bff46717023ef5e81ae6ba71b254c1aca474db32c6dc21897c46ea26fa75 category: dev optional: true - name: jupyterlab_pygments @@ -3063,31 +3063,31 @@ package: category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - libgcc: '>=13' - libstdcxx: '>=13' - url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda + libgcc: '>=14' + libstdcxx: '>=14' + url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda hash: - md5: 01ba04e414e47f95c03d6ddd81fd37be - sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 + md5: 86f7414544ae606282352fa1e116b41f + sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688 category: main optional: false - name: libaec - version: 1.1.4 + version: 1.1.5 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda + vc: '>=14.3,<15' + vc14_runtime: '>=14.44.35208' + url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.5-haf901d7_0.conda hash: - md5: 85a2bed45827d77d5b308cb2b165404f - sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b + md5: 43b6385cfad52a7083f2c41984eb4e91 + sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8 category: main optional: false - name: libblas @@ -4790,10 +4790,10 @@ package: manager: conda platform: win-64 dependencies: {} - url: https://repo.prefix.dev/conda-forge/win-64/nodejs-25.2.1-he453025_1.conda + url: https://repo.prefix.dev/conda-forge/win-64/nodejs-25.2.1-he453025_2.conda hash: - md5: 461d47b472740c68ec0771c8b759868b - sha256: 9742d28cf4a171dc9898bfb3c8512858f1ed46aa3cbc26d8839003d879564beb + md5: b965c8d527c0a5b4781e39339abc808a + sha256: abe64c5dce6d7024919807f9d5ac72729862848238e6ad6bf9ed4e721c8cc232 category: dev optional: true - name: notebook @@ -5025,67 +5025,64 @@ package: category: dev optional: true - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: packaging - version: '25.0' + version: '26.0' manager: conda platform: win-64 dependencies: python: '>=3.8' - url: https://repo.prefix.dev/conda-forge/noarch/packaging-25.0-pyh29332c3_1.conda + url: https://repo.prefix.dev/conda-forge/noarch/packaging-26.0-pyhcf101f3_0.conda hash: - md5: 58335b26c38bf4a20f399384c33cbcf9 - sha256: 289861ed0c13a15d7bbb408796af4de72c2fe67e2bcb0de98f4c3fce259d7991 + md5: b76541e68fea4d511b1ac46a28dcd2c6 + sha256: c1fc0f953048f743385d31c468b4a678b3ad20caffdeaa94bed85ba63049fd58 category: main optional: false - name: pandas - version: 2.3.3 + version: 3.0.0 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=14' libstdcxx: '>=14' - numpy: '>=1.22.4' - python: '>=3.12,<3.13.0a0' + numpy: '>=1.26.0' + python: '' python-dateutil: '>=2.8.2' - python-tzdata: '>=2022.7' python_abi: 3.12.* - pytz: '>=2020.1' - url: https://repo.prefix.dev/conda-forge/linux-64/pandas-2.3.3-py312hf79963d_1.conda + url: https://repo.prefix.dev/conda-forge/linux-64/pandas-3.0.0-py312h8ecdadd_0.conda hash: - md5: e597b3e812d9613f659b7d87ad252d18 - sha256: f633d5f9b28e4a8f66a6ec9c89ef1b6743b880b0511330184b4ab9b7e2dda247 + md5: 2db19c9eb81049acf8108ccfbe5cc2ed + sha256: 729c74e74703ab8686ee3915fd3023b6c454d0d97c60ec2e5f5c537cdab5277a category: main optional: false - name: pandas - version: 2.3.3 + version: 3.0.0 manager: conda platform: win-64 dependencies: - numpy: '>=1.22.4' - python: '>=3.12,<3.13.0a0' + numpy: '>=1.26.0' + python: '' python-dateutil: '>=2.8.2' - python-tzdata: '>=2022.7' + python-tzdata: '' python_abi: 3.12.* - pytz: '>=2020.1' ucrt: '>=10.0.20348.0' vc: '>=14.3,<15' vc14_runtime: '>=14.44.35208' - url: https://repo.prefix.dev/conda-forge/win-64/pandas-2.3.3-py312hc128f0a_2.conda + url: https://repo.prefix.dev/conda-forge/win-64/pandas-3.0.0-py312h95189c4_0.conda hash: - md5: 57d80e87a8b3161bcf26472deceaa556 - sha256: 7f37f3ccea378f491f68979c7afd7f2dbc8ee83c3461dfab3cce15d436298f44 + md5: 471867d1335d19294ff2b3391c4c7122 + sha256: cf9409d6f3b82a966d62c6d25dac02cf7277887591ff98d5f80f44815acef084 category: main optional: false - name: pandoc @@ -6056,8 +6053,8 @@ package: hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: main - optional: false + category: dev + optional: true - name: pytz version: '2025.2' manager: conda @@ -6068,8 +6065,8 @@ package: hash: md5: bc8e3267d44011051f2eb14d22fb0960 sha256: 8d2a8bf110cc1fc3df6904091dead158ba3e614d8402a83e51ed3a8aa93cdeb0 - category: main - optional: false + category: dev + optional: true - name: pywin32 version: '311' manager: conda @@ -6644,27 +6641,27 @@ package: category: main optional: false - name: soupsieve - version: 2.8.2 + version: 2.8.3 manager: conda platform: linux-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda hash: - md5: fcbe3971b6017792e9b24ff451daa7f5 - sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a + md5: 18de09b20462742fe093ba39185d9bac + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac category: dev optional: true - name: soupsieve - version: 2.8.2 + version: 2.8.3 manager: conda platform: win-64 dependencies: python: '>=3.10' - url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.2-pyhd8ed1ab_0.conda + url: https://repo.prefix.dev/conda-forge/noarch/soupsieve-2.8.3-pyhd8ed1ab_0.conda hash: - md5: fcbe3971b6017792e9b24ff451daa7f5 - sha256: aacc87d88795ef887b89fe9401d1092312c43371d1ba92340d8924da1a982b6a + md5: 18de09b20462742fe093ba39185d9bac + sha256: 23b71ecf089967d2900126920e7f9ff18cdcef82dbff3e2f54ffa360243a17ac category: dev optional: true - name: sphinx @@ -7602,27 +7599,29 @@ package: category: dev optional: true - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: linux-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: wheel - version: 0.45.1 + version: 0.46.3 manager: conda platform: win-64 dependencies: - python: '>=3.9' - url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda + packaging: '>=24.0' + python: '>=3.10' + url: https://repo.prefix.dev/conda-forge/noarch/wheel-0.46.3-pyhd8ed1ab_0.conda hash: - md5: 75cb7132eb58d97896e173ef12ac9986 - sha256: 1b34021e815ff89a4d902d879c3bd2040bc1bd6169b32e9427497fa05c55f1ce + md5: bdbd7385b4a67025ac2dba4ef8cb6a8f + sha256: d6cf2f0ebd5e09120c28ecba450556ce553752652d91795442f0e70f837126ae category: main optional: false - name: widgetsnbextension @@ -7970,7 +7969,7 @@ package: manager: pip platform: linux-64 dependencies: - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -7988,7 +7987,7 @@ package: manager: pip platform: win-64 dependencies: - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 matplotlib: '>=3.8.4,<3.9.0' numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' @@ -8002,7 +8001,7 @@ package: category: main optional: false - name: geoh5py - version: 0.13.0a2.dev52+fda60c22 + version: 0.13.0a2.dev90+689e16d4 manager: pip platform: linux-64 dependencies: @@ -8010,16 +8009,16 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 hash: - sha256: fda60c226dafdcdcb0bbe312be4c1622451479dc + sha256: 689e16d471a2f6a3ccfbbc921292c1e0387e2413 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 category: main optional: false - name: geoh5py - version: 0.13.0a2.dev52+fda60c22 + version: 0.13.0a2.dev90+689e16d4 manager: pip platform: win-64 dependencies: @@ -8027,12 +8026,12 @@ package: numpy: '>=1.26.0,<1.27.0' pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.12.0,<3.0.0' - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 hash: - sha256: fda60c226dafdcdcb0bbe312be4c1622451479dc + sha256: 689e16d471a2f6a3ccfbbc921292c1e0387e2413 source: type: url - url: git+https://github.com/MiraGeoscience/geoh5py.git@fda60c226dafdcdcb0bbe312be4c1622451479dc + url: git+https://github.com/MiraGeoscience/geoh5py.git@689e16d471a2f6a3ccfbbc921292c1e0387e2413 category: main optional: false - name: grid-apps @@ -8042,7 +8041,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev11+3f02228 - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0' @@ -8061,7 +8060,7 @@ package: dependencies: discretize: '>=0.11.0,<0.12.dev' geoapps-utils: 0.7.0a2.dev11+3f02228 - geoh5py: 0.13.0a2.dev52+fda60c22 + geoh5py: 0.13.0a2.dev90+689e16d4 numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.12.0,<3.0.0' scipy: '>=1.14.0,<1.15.0'