From 307a5a848d9ae6365df4ae86bd559c20d52e036e Mon Sep 17 00:00:00 2001 From: benjamink Date: Wed, 4 Dec 2024 15:09:34 -0800 Subject: [PATCH 01/10] Put results in out_group and copy mesh to simpeggroup --- simpeg_drivers/components/meshes.py | 29 +++++++++++++++-------------- simpeg_drivers/utils/meshes.py | 29 ++++++++++++++++++++--------- 2 files changed, 35 insertions(+), 23 deletions(-) diff --git a/simpeg_drivers/components/meshes.py b/simpeg_drivers/components/meshes.py index 94c6f320..6d2e1b7c 100644 --- a/simpeg_drivers/components/meshes.py +++ b/simpeg_drivers/components/meshes.py @@ -127,21 +127,22 @@ def _auto_mesh(self): params = auto_mesh_parameters( self.params.data_object, self.params.topography_object ) - self._mesh = OctreeDriver.treemesh_from_params(params) + driver = OctreeDriver(params) - mesh_group = UIJsonGroup.create( - self.workspace, name="AutoMesh", parent=self.params.out_group - ) - # TODO: Update Octree params to BaseData and use it to handle out group - # and saving options. - - self._entity = treemesh_2_octree( - self.params.geoh5, - self._mesh, - parent=mesh_group, - name="OctreeMesh", - ) - self._permutation = np.arange(self.entity.n_cells) + mesh = driver.run() + self.entity = mesh.copy(parent=self.params.out_group) + + # self._mesh = OctreeDriver.treemesh_from_params(params) + + + # + # self._entity = treemesh_2_octree( + # self.params.geoh5, + # self._mesh, + # parent=mesh_group, + # name="OctreeMesh", + # ) + # self._permutation = np.arange(self.entity.n_cells) @property def mesh(self) -> TreeMesh | TensorMesh: diff --git a/simpeg_drivers/utils/meshes.py b/simpeg_drivers/utils/meshes.py index f7df45d3..bb7c803c 100644 --- a/simpeg_drivers/utils/meshes.py +++ b/simpeg_drivers/utils/meshes.py @@ -16,6 +16,7 @@ # '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' import numpy as np +from geoh5py.groups import UIJsonGroup from geoh5py.objects import ObjectBase from geoh5py.shared.utils import fetch_active_workspace from octree_creation_app.params import OctreeParams @@ -78,7 +79,7 @@ def auto_mesh_parameters( spacing = station_spacing(survey.locations) / cell_size_factor base_cell_size = round_nearest(spacing, 5) padding = auto_pad(survey.locations) - + out_group = UIJsonGroup.create(workspace, name="AutoMesh") params_dict = { "geoh5": workspace, "objects": survey, @@ -89,13 +90,23 @@ def auto_mesh_parameters( "vertical_padding": padding, "depth_core": 500.0, "diagonal_balance": True, - "Refinement A object": survey, - "Refinement A levels": survey_refinement, - "Refinement A horizon": False, - "Refinement B object": topography, - "Refinement B levels": topography_refinement, - "Refinement B horizon": True, "minimum_level": 6, + "refinements": [ + { + "refinement_object": survey, + "levels": survey_refinement, + "horizon": False, + }, + { + "refinement_object": topography, + "levels": topography_refinement, + "horizon": True, + }, + ], + "out_group": out_group } - - return OctreeParams(**params_dict) + params = OctreeParams(**params_dict) + dump = params.input_file.demote(params.input_file.stringify(params.model_dump())) + print(dump) + params.out_group.options = dump + return params From b1eef281864bb32394c80272918281e77a0dc5d4 Mon Sep 17 00:00:00 2001 From: benjamink Date: Wed, 4 Dec 2024 15:09:57 -0800 Subject: [PATCH 02/10] cleanup --- simpeg_drivers/components/meshes.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/simpeg_drivers/components/meshes.py b/simpeg_drivers/components/meshes.py index 6d2e1b7c..82efda5a 100644 --- a/simpeg_drivers/components/meshes.py +++ b/simpeg_drivers/components/meshes.py @@ -131,18 +131,7 @@ def _auto_mesh(self): mesh = driver.run() self.entity = mesh.copy(parent=self.params.out_group) - - # self._mesh = OctreeDriver.treemesh_from_params(params) - - - # - # self._entity = treemesh_2_octree( - # self.params.geoh5, - # self._mesh, - # parent=mesh_group, - # name="OctreeMesh", - # ) - # self._permutation = np.arange(self.entity.n_cells) + @property def mesh(self) -> TreeMesh | TensorMesh: From a43d85c98e43ce8eee0dedc3c2acc34d6404004a Mon Sep 17 00:00:00 2001 From: benjamink Date: Fri, 6 Dec 2024 11:20:47 -0800 Subject: [PATCH 03/10] switching branches --- simpeg_drivers/utils/meshes.py | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/simpeg_drivers/utils/meshes.py b/simpeg_drivers/utils/meshes.py index bb7c803c..152a14c2 100644 --- a/simpeg_drivers/utils/meshes.py +++ b/simpeg_drivers/utils/meshes.py @@ -106,7 +106,28 @@ def auto_mesh_parameters( "out_group": out_group } params = OctreeParams(**params_dict) - dump = params.input_file.demote(params.input_file.stringify(params.model_dump())) - print(dump) - params.out_group.options = dump + dump = params.model_dump() + ifile = params.input_file + ifile.data = dump + options = ifile.stringify(ifile.demote(ifile.ui_json)) + options = bool_to_string(options) + params.out_group.options = options + params.out_group.metadata = None + print(params.out_group.options) + return params + + +def bool_to_string(data: dict) -> dict: + """ + Recurse through dictionary and convert all boolean values to a string 'true' or 'false'. + + :param data: Nested dictionary with boolearn values. + """ + for key, value in data.items(): + if isinstance(value, dict): + data[key] = bool_to_string(value) + elif isinstance(value, bool): + data[key] = str(value).lower() + return data + From 4ae261e625798b91c796cbbd2daf3b808015ffb0 Mon Sep 17 00:00:00 2001 From: benjamink Date: Mon, 9 Dec 2024 11:12:55 -0800 Subject: [PATCH 04/10] Use params.add_options() --- simpeg_drivers/utils/meshes.py | 26 ++------------------------ 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/simpeg_drivers/utils/meshes.py b/simpeg_drivers/utils/meshes.py index 152a14c2..6bdd3d91 100644 --- a/simpeg_drivers/utils/meshes.py +++ b/simpeg_drivers/utils/meshes.py @@ -103,31 +103,9 @@ def auto_mesh_parameters( "horizon": True, }, ], - "out_group": out_group + "out_group": out_group, } params = OctreeParams(**params_dict) - dump = params.model_dump() - ifile = params.input_file - ifile.data = dump - options = ifile.stringify(ifile.demote(ifile.ui_json)) - options = bool_to_string(options) - params.out_group.options = options - params.out_group.metadata = None - print(params.out_group.options) + params.add_options() return params - - -def bool_to_string(data: dict) -> dict: - """ - Recurse through dictionary and convert all boolean values to a string 'true' or 'false'. - - :param data: Nested dictionary with boolearn values. - """ - for key, value in data.items(): - if isinstance(value, dict): - data[key] = bool_to_string(value) - elif isinstance(value, bool): - data[key] = str(value).lower() - return data - From d3a5ea4ad29d0eff840a65f1b586053f062aaf5d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 19:15:48 +0000 Subject: [PATCH 05/10] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- simpeg_drivers/components/meshes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/simpeg_drivers/components/meshes.py b/simpeg_drivers/components/meshes.py index 82efda5a..9b6d3b95 100644 --- a/simpeg_drivers/components/meshes.py +++ b/simpeg_drivers/components/meshes.py @@ -131,7 +131,6 @@ def _auto_mesh(self): mesh = driver.run() self.entity = mesh.copy(parent=self.params.out_group) - @property def mesh(self) -> TreeMesh | TensorMesh: From 8ae72a7f25c07d961499a7eb553d9b45798d62ac Mon Sep 17 00:00:00 2001 From: benjamink Date: Mon, 9 Dec 2024 11:16:54 -0800 Subject: [PATCH 06/10] linter --- simpeg_drivers/components/meshes.py | 1 - 1 file changed, 1 deletion(-) diff --git a/simpeg_drivers/components/meshes.py b/simpeg_drivers/components/meshes.py index 82efda5a..9b6d3b95 100644 --- a/simpeg_drivers/components/meshes.py +++ b/simpeg_drivers/components/meshes.py @@ -131,7 +131,6 @@ def _auto_mesh(self): mesh = driver.run() self.entity = mesh.copy(parent=self.params.out_group) - @property def mesh(self) -> TreeMesh | TensorMesh: From e0eb3fa82d41e754bffedfabbe2dafb477fee1a7 Mon Sep 17 00:00:00 2001 From: benjamink Date: Mon, 9 Dec 2024 13:36:10 -0800 Subject: [PATCH 07/10] lock octree-creation-app for 1864 --- .../py-3.10-linux-64-dev.conda.lock.yml | 56 +-- environments/py-3.10-linux-64.conda.lock.yml | 16 +- .../py-3.10-win-64-dev.conda.lock.yml | 56 +-- environments/py-3.10-win-64.conda.lock.yml | 16 +- .../py-3.11-linux-64-dev.conda.lock.yml | 56 +-- environments/py-3.11-linux-64.conda.lock.yml | 16 +- .../py-3.11-win-64-dev.conda.lock.yml | 56 +-- environments/py-3.11-win-64.conda.lock.yml | 16 +- py-3.10.conda-lock.yml | 416 +++++++++--------- py-3.11.conda-lock.yml | 412 ++++++++--------- pyproject.toml | 2 +- 11 files changed, 559 insertions(+), 559 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 3203f35f..d95c70f3 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: ca22b3cf594fe1241f8f87f565fd22f40f4228a4f15b395006f4324731b6a772 +# input_hash: 9a65a2811a0adc51908e577a29c37667597d736e94b69d76bc4751bffc9c7e2d channels: - conda-forge @@ -11,15 +11,15 @@ dependencies: - accessible-pygments=0.0.5=pyhd8ed1ab_0 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - - anyio=4.6.2.post1=pyhd8ed1ab_0 + - anyio=4.7.0=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_1 - argon2-cffi-bindings=21.2.0=py310ha75aee5_5 - - arrow=1.3.0=pyhd8ed1ab_0 + - arrow=1.3.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.5=py310hff52083_0 + - astroid=3.3.6=py310hff52083_0 - asttokens=3.0.0=pyhd8ed1ab_1 - - async-lru=2.0.4=pyhd8ed1ab_0 - - attrs=24.2.0=pyh71513ae_0 + - async-lru=2.0.4=pyhd8ed1ab_1 + - attrs=24.2.0=pyh71513ae_1 - babel=2.16.0=pyhd8ed1ab_1 - beautifulsoup4=4.12.3=pyha770c72_1 - bleach=6.2.0=pyhd8ed1ab_1 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.1=py310h3788b33_0 - - coverage=7.6.8=py310h89163eb_0 + - coverage=7.6.9=py310h89163eb_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.0=py310ha75aee5_1 - dask-core=2024.6.2=pyhd8ed1ab_0 @@ -54,9 +54,9 @@ dependencies: - empymod=2.2.2=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_0 + - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py310h89163eb_0 + - fonttools=4.55.2=py310h89163eb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -65,10 +65,10 @@ dependencies: - h11=0.14.0=pyhd8ed1ab_1 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py310h60e0fe6_102 - - hdf5=1.14.3=nompi_h2d575fe_107 + - hdf5=1.14.3=nompi_h2d575fe_108 - hpack=4.0.0=pyhd8ed1ab_1 - httpcore=1.0.7=pyh29332c3_1 - - httpx=0.28.0=pyhd8ed1ab_1 + - httpx=0.28.1=pyhd8ed1ab_0 - hyperframe=6.0.1=pyhd8ed1ab_1 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 @@ -84,7 +84,7 @@ dependencies: - isort=5.13.2=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - json5=0.10.0=pyhd8ed1ab_1 - jsonpointer=3.0.0=py310hff52083_1 - jsonschema=4.23.0=pyhd8ed1ab_1 @@ -100,7 +100,7 @@ dependencies: - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - jupyterlab=4.3.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - - jupyterlab_server=2.27.3=pyhd8ed1ab_0 + - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.16.4=pyh80e38bb_0 - keyutils=1.6.1=h166bdaf_0 @@ -136,7 +136,7 @@ dependencies: - libnsl=2.0.1=hd590300_0 - libpng=1.6.44=hadc24fc_0 - libsodium=1.0.20=h4ab18f5_0 - - libsqlite=3.47.0=hadc24fc_1 + - libsqlite=3.47.2=hee588c1_0 - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=hc0a3c3a_1 - libstdcxx-ng=14.2.0=h4852527_1 @@ -197,7 +197,7 @@ dependencies: - psutil=6.1.0=py310ha75aee5_0 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - - pure_eval=0.2.3=pyhd8ed1ab_0 + - pure_eval=0.2.3=pyhd8ed1ab_1 - pybtex=0.24.0=pyhd8ed1ab_2 - pybtex-docutils=1.0.3=py310hff52083_2 - pycparser=2.22=pyh29332c3_1 @@ -226,11 +226,11 @@ dependencies: - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_0 - referencing=0.35.1=pyhd8ed1ab_1 - requests=2.32.3=pyhd8ed1ab_1 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.22.3=py310h505e2c1_0 - scikit-learn=1.4.2=py310h981052a_1 - - scipy=1.14.1=py310hfcf56fc_1 + - scipy=1.14.1=py310hfcf56fc_2 - send2trash=1.8.3=pyh0d859eb_1 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 @@ -248,16 +248,16 @@ dependencies: - sphinx-multitoc-numbering=0.1.3=pyhd8ed1ab_0 - sphinx-thebe=0.3.1=pyhd8ed1ab_0 - sphinx-togglebutton=0.3.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-bibtex=2.5.0=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 + - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - sqlalchemy=2.0.36=py310ha75aee5_0 - - stack_data=0.6.2=pyhd8ed1ab_0 - - tabulate=0.9.0=pyhd8ed1ab_1 + - stack_data=0.6.3=pyhd8ed1ab_1 + - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=h84d6215_4 - tblib=3.0.0=pyhd8ed1ab_0 - terminado=0.18.1=pyh0d859eb_0 @@ -267,11 +267,11 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.2.1=pyhd8ed1ab_1 - tomlkit=0.13.2=pyha770c72_1 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py310ha75aee5_0 - tqdm=4.67.1=pyhd8ed1ab_0 - traitlets=5.14.3=pyhd8ed1ab_1 - - types-python-dateutil=2.9.0.20241003=pyhd8ed1ab_1 + - types-python-dateutil=2.9.0.20241206=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 @@ -299,7 +299,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index 327fb089..612bc845 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: ca22b3cf594fe1241f8f87f565fd22f40f4228a4f15b395006f4324731b6a772 +# input_hash: 9a65a2811a0adc51908e577a29c37667597d736e94b69d76bc4751bffc9c7e2d channels: - conda-forge @@ -31,19 +31,19 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py310h89163eb_0 + - fonttools=4.55.2=py310h89163eb_0 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py310hcb52e73_4 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py310h60e0fe6_102 - - hdf5=1.14.3=nompi_h2d575fe_107 + - hdf5=1.14.3=nompi_h2d575fe_108 - hpack=4.0.0=pyhd8ed1ab_1 - hyperframe=6.0.1=pyhd8ed1ab_1 - importlib-metadata=8.5.0=pyha770c72_1 - importlib_metadata=8.5.0=hd8ed1ab_1 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.7=py310h3788b33_0 - krb5=1.21.3=h659f571_0 @@ -75,7 +75,7 @@ dependencies: - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - libpng=1.6.44=hadc24fc_0 - - libsqlite=3.47.0=hadc24fc_1 + - libsqlite=3.47.2=hee588c1_0 - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=hc0a3c3a_1 - libstdcxx-ng=14.2.0=h4852527_1 @@ -123,7 +123,7 @@ dependencies: - pyyaml=6.0.2=py310ha75aee5_1 - readline=8.2=h8228510_1 - scikit-learn=1.4.2=py310h981052a_1 - - scipy=1.14.1=py310hfcf56fc_1 + - scipy=1.14.1=py310hfcf56fc_2 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 @@ -131,7 +131,7 @@ dependencies: - tblib=3.0.0=pyhd8ed1ab_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=noxft_h4845f30_101 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py310ha75aee5_0 - tqdm=4.67.1=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 @@ -152,7 +152,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: 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 945b3974..82752aec 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: 7327ab4f094c7c6278c24834b48028199bfe4438b048751196b4e832ee329eef +# input_hash: 8bc6351796ded660951160ec4d41232c9bdc18c68fe15b7cce1976f2a59558aa channels: - conda-forge @@ -9,15 +9,15 @@ dependencies: - accessible-pygments=0.0.5=pyhd8ed1ab_0 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - - anyio=4.6.2.post1=pyhd8ed1ab_0 + - anyio=4.7.0=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_1 - argon2-cffi-bindings=21.2.0=py310ha8f682b_5 - - arrow=1.3.0=pyhd8ed1ab_0 + - arrow=1.3.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.5=py310h5588dad_0 + - astroid=3.3.6=py310h5588dad_0 - asttokens=3.0.0=pyhd8ed1ab_1 - - async-lru=2.0.4=pyhd8ed1ab_0 - - attrs=24.2.0=pyh71513ae_0 + - async-lru=2.0.4=pyhd8ed1ab_1 + - attrs=24.2.0=pyh71513ae_1 - babel=2.16.0=pyhd8ed1ab_1 - beautifulsoup4=4.12.3=pyha770c72_1 - bleach=6.2.0=pyhd8ed1ab_1 @@ -36,7 +36,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.1=py310hc19bc0b_0 - - coverage=7.6.8=py310h38315fa_0 + - coverage=7.6.9=py310h38315fa_0 - cpython=3.10.16=py310hd8ed1ab_1 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.0=py310ha8f682b_1 @@ -52,9 +52,9 @@ dependencies: - empymod=2.2.2=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_0 + - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py310h38315fa_0 + - fonttools=4.55.2=py310h38315fa_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -63,10 +63,10 @@ dependencies: - h11=0.14.0=pyhd8ed1ab_1 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py310h2b0be38_102 - - hdf5=1.14.3=nompi_hd5d9e70_107 + - hdf5=1.14.3=nompi_hd5d9e70_108 - hpack=4.0.0=pyhd8ed1ab_1 - httpcore=1.0.7=pyh29332c3_1 - - httpx=0.28.0=pyhd8ed1ab_1 + - httpx=0.28.1=pyhd8ed1ab_0 - hyperframe=6.0.1=pyhd8ed1ab_1 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 @@ -83,7 +83,7 @@ dependencies: - isort=5.13.2=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - json5=0.10.0=pyhd8ed1ab_1 - jsonpointer=3.0.0=py310h5588dad_1 - jsonschema=4.23.0=pyhd8ed1ab_1 @@ -99,7 +99,7 @@ dependencies: - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - jupyterlab=4.3.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - - jupyterlab_server=2.27.3=pyhd8ed1ab_0 + - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.16.4=pyh80e38bb_0 - kiwisolver=1.4.7=py310hc19bc0b_0 @@ -124,7 +124,7 @@ dependencies: - liblzma=5.6.3=h2466b09_1 - libpng=1.6.44=h3ca93ac_0 - libsodium=1.0.20=hc70643c_0 - - libsqlite=3.47.0=h2466b09_1 + - libsqlite=3.47.2=h67fdade_0 - libssh2=1.11.1=he619c9f_0 - libtiff=4.7.0=hdefb170_2 - libwebp-base=1.4.0=hcfcfb64_0 @@ -184,7 +184,7 @@ dependencies: - psutil=6.1.0=py310ha8f682b_0 - pthread-stubs=0.4=hcd874cb_1001 - pthreads-win32=2.9.1=h2466b09_4 - - pure_eval=0.2.3=pyhd8ed1ab_0 + - pure_eval=0.2.3=pyhd8ed1ab_1 - pybtex=0.24.0=pyhd8ed1ab_2 - pybtex-docutils=1.0.3=py310h5588dad_2 - pycparser=2.22=pyh29332c3_1 @@ -214,11 +214,11 @@ dependencies: - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_0 - referencing=0.35.1=pyhd8ed1ab_1 - requests=2.32.3=pyhd8ed1ab_1 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.22.3=py310hc226416_0 - scikit-learn=1.4.2=py310hf2a6c47_1 - - scipy=1.14.1=py310hbd0dde3_1 + - scipy=1.14.1=py310hbd0dde3_2 - send2trash=1.8.3=pyh5737063_1 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 @@ -236,16 +236,16 @@ dependencies: - sphinx-multitoc-numbering=0.1.3=pyhd8ed1ab_0 - sphinx-thebe=0.3.1=pyhd8ed1ab_0 - sphinx-togglebutton=0.3.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-bibtex=2.5.0=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 + - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - sqlalchemy=2.0.36=py310ha8f682b_0 - - stack_data=0.6.2=pyhd8ed1ab_0 - - tabulate=0.9.0=pyhd8ed1ab_1 + - stack_data=0.6.3=pyhd8ed1ab_1 + - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=hc790b64_4 - tblib=3.0.0=pyhd8ed1ab_0 - terminado=0.18.1=pyh5737063_0 @@ -255,11 +255,11 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.2.1=pyhd8ed1ab_1 - tomlkit=0.13.2=pyha770c72_1 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py310ha8f682b_0 - tqdm=4.67.1=pyhd8ed1ab_0 - traitlets=5.14.3=pyhd8ed1ab_1 - - types-python-dateutil=2.9.0.20241003=pyhd8ed1ab_1 + - types-python-dateutil=2.9.0.20241206=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 @@ -293,7 +293,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index e363bd37..a9628fd3 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: 7327ab4f094c7c6278c24834b48028199bfe4438b048751196b4e832ee329eef +# input_hash: 8bc6351796ded660951160ec4d41232c9bdc18c68fe15b7cce1976f2a59558aa channels: - conda-forge @@ -28,20 +28,20 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py310h38315fa_0 + - fonttools=4.55.2=py310h38315fa_0 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py310h4856b71_4 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py310h2b0be38_102 - - hdf5=1.14.3=nompi_hd5d9e70_107 + - hdf5=1.14.3=nompi_hd5d9e70_108 - hpack=4.0.0=pyhd8ed1ab_1 - hyperframe=6.0.1=pyhd8ed1ab_1 - importlib-metadata=8.5.0=pyha770c72_1 - importlib_metadata=8.5.0=hd8ed1ab_1 - intel-openmp=2023.2.0=h57928b3_50497 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - kiwisolver=1.4.7=py310hc19bc0b_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.16=h67d730c_0 @@ -62,7 +62,7 @@ dependencies: - liblapack=3.9.0=20_win64_mkl - liblzma=5.6.3=h2466b09_1 - libpng=1.6.44=h3ca93ac_0 - - libsqlite=3.47.0=h2466b09_1 + - libsqlite=3.47.2=h67fdade_0 - libssh2=1.11.1=he619c9f_0 - libtiff=4.7.0=hdefb170_2 - libwebp-base=1.4.0=hcfcfb64_0 @@ -110,7 +110,7 @@ dependencies: - pytz=2024.1=pyhd8ed1ab_0 - pyyaml=6.0.2=py310ha8f682b_1 - scikit-learn=1.4.2=py310hf2a6c47_1 - - scipy=1.14.1=py310hbd0dde3_1 + - scipy=1.14.1=py310hbd0dde3_2 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 @@ -118,7 +118,7 @@ dependencies: - tblib=3.0.0=pyhd8ed1ab_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=h5226925_1 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py310ha8f682b_0 - tqdm=4.67.1=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 @@ -144,7 +144,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: 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 217392a4..c90181a6 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: 997ba03c5e150d084199fafa3b0f829be633e3a6b869405f7d8825f3380ec7ca +# input_hash: c41d19a2ca66c96196f613a3a576a0d43e7b66eaad12988f35a95ad7c941c0ac channels: - conda-forge @@ -11,15 +11,15 @@ dependencies: - accessible-pygments=0.0.5=pyhd8ed1ab_0 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - - anyio=4.6.2.post1=pyhd8ed1ab_0 + - anyio=4.7.0=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_1 - argon2-cffi-bindings=21.2.0=py311h9ecbd09_5 - - arrow=1.3.0=pyhd8ed1ab_0 + - arrow=1.3.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.5=py311h38be061_0 + - astroid=3.3.6=py311h38be061_0 - asttokens=3.0.0=pyhd8ed1ab_1 - - async-lru=2.0.4=pyhd8ed1ab_0 - - attrs=24.2.0=pyh71513ae_0 + - async-lru=2.0.4=pyhd8ed1ab_1 + - attrs=24.2.0=pyh71513ae_1 - babel=2.16.0=pyhd8ed1ab_1 - beautifulsoup4=4.12.3=pyha770c72_1 - bleach=6.2.0=pyhd8ed1ab_1 @@ -39,7 +39,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.1=py311hd18a35c_0 - - coverage=7.6.8=py311h2dc5d0c_0 + - coverage=7.6.9=py311h2dc5d0c_0 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.0=py311h9ecbd09_1 - dask-core=2024.6.2=pyhd8ed1ab_0 @@ -54,9 +54,9 @@ dependencies: - empymod=2.2.2=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_0 + - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py311h2dc5d0c_0 + - fonttools=4.55.2=py311h2dc5d0c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -65,10 +65,10 @@ dependencies: - h11=0.14.0=pyhd8ed1ab_1 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py311hb639ac4_102 - - hdf5=1.14.3=nompi_h2d575fe_107 + - hdf5=1.14.3=nompi_h2d575fe_108 - hpack=4.0.0=pyhd8ed1ab_1 - httpcore=1.0.7=pyh29332c3_1 - - httpx=0.28.0=pyhd8ed1ab_1 + - httpx=0.28.1=pyhd8ed1ab_0 - hyperframe=6.0.1=pyhd8ed1ab_1 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 @@ -84,7 +84,7 @@ dependencies: - isort=5.13.2=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - json5=0.10.0=pyhd8ed1ab_1 - jsonpointer=3.0.0=py311h38be061_1 - jsonschema=4.23.0=pyhd8ed1ab_1 @@ -100,7 +100,7 @@ dependencies: - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - jupyterlab=4.3.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - - jupyterlab_server=2.27.3=pyhd8ed1ab_0 + - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.16.4=pyh80e38bb_0 - keyutils=1.6.1=h166bdaf_0 @@ -137,7 +137,7 @@ dependencies: - libnsl=2.0.1=hd590300_0 - libpng=1.6.44=hadc24fc_0 - libsodium=1.0.20=h4ab18f5_0 - - libsqlite=3.47.0=hadc24fc_1 + - libsqlite=3.47.2=hee588c1_0 - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=hc0a3c3a_1 - libstdcxx-ng=14.2.0=h4852527_1 @@ -198,7 +198,7 @@ dependencies: - psutil=6.1.0=py311h9ecbd09_0 - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - - pure_eval=0.2.3=pyhd8ed1ab_0 + - pure_eval=0.2.3=pyhd8ed1ab_1 - pybtex=0.24.0=pyhd8ed1ab_2 - pybtex-docutils=1.0.3=py311h38be061_2 - pycparser=2.22=pyh29332c3_1 @@ -227,11 +227,11 @@ dependencies: - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_0 - referencing=0.35.1=pyhd8ed1ab_1 - requests=2.32.3=pyhd8ed1ab_1 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.22.3=py311h9e33e62_0 - scikit-learn=1.4.2=py311he08f58d_1 - - scipy=1.14.1=py311he9a78e4_1 + - scipy=1.14.1=py311he9a78e4_2 - send2trash=1.8.3=pyh0d859eb_1 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 @@ -249,16 +249,16 @@ dependencies: - sphinx-multitoc-numbering=0.1.3=pyhd8ed1ab_0 - sphinx-thebe=0.3.1=pyhd8ed1ab_0 - sphinx-togglebutton=0.3.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-bibtex=2.5.0=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 + - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - sqlalchemy=2.0.36=py311h9ecbd09_0 - - stack_data=0.6.2=pyhd8ed1ab_0 - - tabulate=0.9.0=pyhd8ed1ab_1 + - stack_data=0.6.3=pyhd8ed1ab_1 + - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=h84d6215_4 - tblib=3.0.0=pyhd8ed1ab_0 - terminado=0.18.1=pyh0d859eb_0 @@ -268,11 +268,11 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.2.1=pyhd8ed1ab_1 - tomlkit=0.13.2=pyha770c72_1 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py311h9ecbd09_0 - tqdm=4.67.1=pyhd8ed1ab_0 - traitlets=5.14.3=pyhd8ed1ab_1 - - types-python-dateutil=2.9.0.20241003=pyhd8ed1ab_1 + - types-python-dateutil=2.9.0.20241206=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 @@ -300,7 +300,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index c7593595..e6e3caa2 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: 997ba03c5e150d084199fafa3b0f829be633e3a6b869405f7d8825f3380ec7ca +# input_hash: c41d19a2ca66c96196f613a3a576a0d43e7b66eaad12988f35a95ad7c941c0ac channels: - conda-forge @@ -31,19 +31,19 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py311h2dc5d0c_0 + - fonttools=4.55.2=py311h2dc5d0c_0 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py311h92ebd52_4 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py311hb639ac4_102 - - hdf5=1.14.3=nompi_h2d575fe_107 + - hdf5=1.14.3=nompi_h2d575fe_108 - hpack=4.0.0=pyhd8ed1ab_1 - hyperframe=6.0.1=pyhd8ed1ab_1 - importlib-metadata=8.5.0=pyha770c72_1 - importlib_metadata=8.5.0=hd8ed1ab_1 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - keyutils=1.6.1=h166bdaf_0 - kiwisolver=1.4.7=py311hd18a35c_0 - krb5=1.21.3=h659f571_0 @@ -76,7 +76,7 @@ dependencies: - libnghttp2=1.64.0=h161d5f1_0 - libnsl=2.0.1=hd590300_0 - libpng=1.6.44=hadc24fc_0 - - libsqlite=3.47.0=hadc24fc_1 + - libsqlite=3.47.2=hee588c1_0 - libssh2=1.11.1=hf672d98_0 - libstdcxx=14.2.0=hc0a3c3a_1 - libstdcxx-ng=14.2.0=h4852527_1 @@ -124,7 +124,7 @@ dependencies: - pyyaml=6.0.2=py311h9ecbd09_1 - readline=8.2=h8228510_1 - scikit-learn=1.4.2=py311he08f58d_1 - - scipy=1.14.1=py311he9a78e4_1 + - scipy=1.14.1=py311he9a78e4_2 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 @@ -132,7 +132,7 @@ dependencies: - tblib=3.0.0=pyhd8ed1ab_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=noxft_h4845f30_101 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py311h9ecbd09_0 - tqdm=4.67.1=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 @@ -153,7 +153,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: 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 c2213ded..aa648053 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: dfb2441740d8a6ccd0cae412e3d5a2bc212589ce6860e33261da362b7bd058b9 +# input_hash: 2e49051d882d32ee097be0fed61e5bf2f3b3b5cec49183142256325ba766d5fc channels: - conda-forge @@ -9,15 +9,15 @@ dependencies: - accessible-pygments=0.0.5=pyhd8ed1ab_0 - alabaster=0.7.16=pyhd8ed1ab_0 - annotated-types=0.7.0=pyhd8ed1ab_1 - - anyio=4.6.2.post1=pyhd8ed1ab_0 + - anyio=4.7.0=pyhd8ed1ab_0 - argon2-cffi=23.1.0=pyhd8ed1ab_1 - argon2-cffi-bindings=21.2.0=py311he736701_5 - - arrow=1.3.0=pyhd8ed1ab_0 + - arrow=1.3.0=pyhd8ed1ab_1 - asciitree=0.3.3=py_2 - - astroid=3.3.5=py311h1ea47a8_0 + - astroid=3.3.6=py311h1ea47a8_0 - asttokens=3.0.0=pyhd8ed1ab_1 - - async-lru=2.0.4=pyhd8ed1ab_0 - - attrs=24.2.0=pyh71513ae_0 + - async-lru=2.0.4=pyhd8ed1ab_1 + - attrs=24.2.0=pyh71513ae_1 - babel=2.16.0=pyhd8ed1ab_1 - beautifulsoup4=4.12.3=pyha770c72_1 - bleach=6.2.0=pyhd8ed1ab_1 @@ -36,7 +36,7 @@ dependencies: - colorama=0.4.6=pyhd8ed1ab_1 - comm=0.2.2=pyhd8ed1ab_1 - contourpy=1.3.1=py311h3257749_0 - - coverage=7.6.8=py311h5082efb_0 + - coverage=7.6.9=py311h5082efb_0 - cpython=3.11.11=py311hd8ed1ab_1 - cycler=0.12.1=pyhd8ed1ab_1 - cytoolz=1.0.0=py311he736701_1 @@ -52,9 +52,9 @@ dependencies: - empymod=2.2.2=pyhd8ed1ab_0 - entrypoints=0.4=pyhd8ed1ab_1 - exceptiongroup=1.2.2=pyhd8ed1ab_1 - - executing=2.1.0=pyhd8ed1ab_0 + - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py311h5082efb_0 + - fonttools=4.55.2=py311h5082efb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -63,10 +63,10 @@ dependencies: - h11=0.14.0=pyhd8ed1ab_1 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py311h67016bb_102 - - hdf5=1.14.3=nompi_hd5d9e70_107 + - hdf5=1.14.3=nompi_hd5d9e70_108 - hpack=4.0.0=pyhd8ed1ab_1 - httpcore=1.0.7=pyh29332c3_1 - - httpx=0.28.0=pyhd8ed1ab_1 + - httpx=0.28.1=pyhd8ed1ab_0 - hyperframe=6.0.1=pyhd8ed1ab_1 - idna=3.10=pyhd8ed1ab_1 - imagesize=1.4.1=pyhd8ed1ab_0 @@ -83,7 +83,7 @@ dependencies: - isort=5.13.2=pyhd8ed1ab_1 - jedi=0.19.2=pyhd8ed1ab_1 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - json5=0.10.0=pyhd8ed1ab_1 - jsonpointer=3.0.0=py311h1ea47a8_1 - jsonschema=4.23.0=pyhd8ed1ab_1 @@ -99,7 +99,7 @@ dependencies: - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - jupyterlab=4.3.2=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - - jupyterlab_server=2.27.3=pyhd8ed1ab_0 + - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 - jupytext=1.16.4=pyh80e38bb_0 - kiwisolver=1.4.7=py311h3257749_0 @@ -125,7 +125,7 @@ dependencies: - liblzma=5.6.3=h2466b09_1 - libpng=1.6.44=h3ca93ac_0 - libsodium=1.0.20=hc70643c_0 - - libsqlite=3.47.0=h2466b09_1 + - libsqlite=3.47.2=h67fdade_0 - libssh2=1.11.1=he619c9f_0 - libtiff=4.7.0=hdefb170_2 - libwebp-base=1.4.0=hcfcfb64_0 @@ -185,7 +185,7 @@ dependencies: - psutil=6.1.0=py311he736701_0 - pthread-stubs=0.4=hcd874cb_1001 - pthreads-win32=2.9.1=h2466b09_4 - - pure_eval=0.2.3=pyhd8ed1ab_0 + - pure_eval=0.2.3=pyhd8ed1ab_1 - pybtex=0.24.0=pyhd8ed1ab_2 - pybtex-docutils=1.0.3=py311h1ea47a8_2 - pycparser=2.22=pyh29332c3_1 @@ -215,11 +215,11 @@ dependencies: - readthedocs-sphinx-ext=2.2.5=pyhd8ed1ab_0 - referencing=0.35.1=pyhd8ed1ab_1 - requests=2.32.3=pyhd8ed1ab_1 - - rfc3339-validator=0.1.4=pyhd8ed1ab_0 + - rfc3339-validator=0.1.4=pyhd8ed1ab_1 - rfc3986-validator=0.1.1=pyh9f0ad1d_0 - rpds-py=0.22.3=py311h533ab2d_0 - scikit-learn=1.4.2=py311hdcb8d17_1 - - scipy=1.14.1=py311hf16d85f_1 + - scipy=1.14.1=py311hf16d85f_2 - send2trash=1.8.3=pyh5737063_1 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 @@ -237,16 +237,16 @@ dependencies: - sphinx-multitoc-numbering=0.1.3=pyhd8ed1ab_0 - sphinx-thebe=0.3.1=pyhd8ed1ab_0 - sphinx-togglebutton=0.3.2=pyhd8ed1ab_0 - - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_0 + - sphinxcontrib-applehelp=2.0.0=pyhd8ed1ab_1 - sphinxcontrib-bibtex=2.5.0=pyhd8ed1ab_0 - - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_0 - - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_0 - - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_0 - - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_0 + - sphinxcontrib-devhelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-htmlhelp=2.1.0=pyhd8ed1ab_1 + - sphinxcontrib-jsmath=1.0.1=pyhd8ed1ab_1 + - sphinxcontrib-qthelp=2.0.0=pyhd8ed1ab_1 + - sphinxcontrib-serializinghtml=1.1.10=pyhd8ed1ab_1 - sqlalchemy=2.0.36=py311he736701_0 - - stack_data=0.6.2=pyhd8ed1ab_0 - - tabulate=0.9.0=pyhd8ed1ab_1 + - stack_data=0.6.3=pyhd8ed1ab_1 + - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=hc790b64_4 - tblib=3.0.0=pyhd8ed1ab_0 - terminado=0.18.1=pyh5737063_0 @@ -256,11 +256,11 @@ dependencies: - toml=0.10.2=pyhd8ed1ab_0 - tomli=2.2.1=pyhd8ed1ab_1 - tomlkit=0.13.2=pyha770c72_1 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py311he736701_0 - tqdm=4.67.1=pyhd8ed1ab_0 - traitlets=5.14.3=pyhd8ed1ab_1 - - types-python-dateutil=2.9.0.20241003=pyhd8ed1ab_1 + - types-python-dateutil=2.9.0.20241206=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 @@ -294,7 +294,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index b0c1718b..ec9a77ad 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: dfb2441740d8a6ccd0cae412e3d5a2bc212589ce6860e33261da362b7bd058b9 +# input_hash: 2e49051d882d32ee097be0fed61e5bf2f3b3b5cec49183142256325ba766d5fc channels: - conda-forge @@ -28,20 +28,20 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.1=py311h5082efb_0 + - fonttools=4.55.2=py311h5082efb_0 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py311h12feb9d_4 - h2=4.1.0=pyhd8ed1ab_1 - h5py=3.12.1=nompi_py311h67016bb_102 - - hdf5=1.14.3=nompi_hd5d9e70_107 + - hdf5=1.14.3=nompi_hd5d9e70_108 - hpack=4.0.0=pyhd8ed1ab_1 - hyperframe=6.0.1=pyhd8ed1ab_1 - importlib-metadata=8.5.0=pyha770c72_1 - importlib_metadata=8.5.0=hd8ed1ab_1 - intel-openmp=2023.2.0=h57928b3_50497 - jinja2=3.1.4=pyhd8ed1ab_1 - - joblib=1.4.2=pyhd8ed1ab_0 + - joblib=1.4.2=pyhd8ed1ab_1 - kiwisolver=1.4.7=py311h3257749_0 - krb5=1.21.3=hdf4eb48_0 - lcms2=2.16=h67d730c_0 @@ -63,7 +63,7 @@ dependencies: - liblapack=3.9.0=20_win64_mkl - liblzma=5.6.3=h2466b09_1 - libpng=1.6.44=h3ca93ac_0 - - libsqlite=3.47.0=h2466b09_1 + - libsqlite=3.47.2=h67fdade_0 - libssh2=1.11.1=he619c9f_0 - libtiff=4.7.0=hdefb170_2 - libwebp-base=1.4.0=hcfcfb64_0 @@ -111,7 +111,7 @@ dependencies: - pytz=2024.1=pyhd8ed1ab_0 - pyyaml=6.0.2=py311he736701_1 - scikit-learn=1.4.2=py311hdcb8d17_1 - - scipy=1.14.1=py311hf16d85f_1 + - scipy=1.14.1=py311hf16d85f_2 - setuptools=75.6.0=pyhff2d567_1 - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 @@ -119,7 +119,7 @@ dependencies: - tblib=3.0.0=pyhd8ed1ab_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=h5226925_1 - - toolz=1.0.0=pyhd8ed1ab_0 + - toolz=1.0.0=pyhd8ed1ab_1 - tornado=6.4.2=py311he736701_0 - tqdm=4.67.1=pyhd8ed1ab_0 - typing-extensions=4.12.2=hd8ed1ab_1 @@ -145,7 +145,7 @@ dependencies: - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index b7a7a958..20181080 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: 7327ab4f094c7c6278c24834b48028199bfe4438b048751196b4e832ee329eef - linux-64: ca22b3cf594fe1241f8f87f565fd22f40f4228a4f15b395006f4324731b6a772 + win-64: 8bc6351796ded660951160ec4d41232c9bdc18c68fe15b7cce1976f2a59558aa + linux-64: 9a65a2811a0adc51908e577a29c37667597d736e94b69d76bc4751bffc9c7e2d channels: - url: conda-forge used_env_vars: [] @@ -130,7 +130,7 @@ package: category: main optional: false - name: anyio - version: 4.6.2.post1 + version: 4.7.0 manager: conda platform: linux-64 dependencies: @@ -138,15 +138,15 @@ package: idna: '>=2.8' python: '>=3.9' sniffio: '>=1.1' - typing_extensions: '>=4.1' - url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda + typing_extensions: '>=4.5' + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda hash: - md5: 688697ec5e9588bdded167d19577625b - sha256: 4b54b7ce79d818e3cce54ae4d552dba51b7afac160ceecdefd04b3917a37c502 + md5: c88107912954a983c2caf25f7fd55158 + sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1 category: dev optional: true - name: anyio - version: 4.6.2.post1 + version: 4.7.0 manager: conda platform: win-64 dependencies: @@ -154,11 +154,11 @@ package: idna: '>=2.8' python: '>=3.9' sniffio: '>=1.1' - typing_extensions: '>=4.1' - url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda + typing_extensions: '>=4.5' + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda hash: - md5: 688697ec5e9588bdded167d19577625b - sha256: 4b54b7ce79d818e3cce54ae4d552dba51b7afac160ceecdefd04b3917a37c502 + md5: c88107912954a983c2caf25f7fd55158 + sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1 category: dev optional: true - name: argon2-cffi @@ -227,13 +227,13 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: - md5: b77d8c2313158e6e461ca0efb1c2c508 - sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db + md5: 46b53236fdd990271b03c3978d4218a9 + sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 category: dev optional: true - name: arrow @@ -241,13 +241,13 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: - md5: b77d8c2313158e6e461ca0efb1c2c508 - sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db + md5: 46b53236fdd990271b03c3978d4218a9 + sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 category: dev optional: true - name: asciitree @@ -275,31 +275,31 @@ package: category: main optional: false - name: astroid - version: 3.3.5 + version: 3.3.6 manager: conda platform: linux-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - typing-extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.5-py310hff52083_0.conda + typing_extensions: '>=4.0.0' + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.6-py310hff52083_0.conda hash: - md5: 508547850afc4097e6f06b57ddf83ea7 - sha256: be695a9127d3fe35240938c81dca83e047bf1207b5d25489c607c988ee0c4e86 + md5: 70c2a668c09c4da833350952a57536bb + sha256: 2045c6295cbf7513978e3c8fbffceeaf36c5ec2fe74c907174ffab536b6c3902 category: dev optional: true - name: astroid - version: 3.3.5 + version: 3.3.6 manager: conda platform: win-64 dependencies: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - typing-extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.5-py310h5588dad_0.conda + typing_extensions: '>=4.0.0' + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.6-py310h5588dad_0.conda hash: - md5: 3b40a8dc0988fa8a8056b4c031227ae1 - sha256: 533645c16342720fbfab9783020a7e73c280b0cd2ef9e307547d1dfee78e9e6b + md5: 35f9ff1dc2287643528f378bc46dc1b9 + sha256: 117b58ab8400f4e40422b5b9abc31d824d8d7fd2d07f8351aecddd28142e2396 category: dev optional: true - name: asttokens @@ -331,12 +331,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda hash: - md5: 3d081de3a6ea9f894bbb585e8e3a4dcb - sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 + md5: 40c673c7d585623b8f1ee650c8734eb6 + sha256: 344157f396dfdc929d1dff8fe010abe173cd168d22a56648583e616495f2929e category: dev optional: true - name: async-lru @@ -344,12 +344,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda hash: - md5: 3d081de3a6ea9f894bbb585e8e3a4dcb - sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 + md5: 40c673c7d585623b8f1ee650c8734eb6 + sha256: 344157f396dfdc929d1dff8fe010abe173cd168d22a56648583e616495f2929e category: dev optional: true - name: attrs @@ -357,11 +357,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda hash: - md5: 6732fa52eb8e66e5afeb32db8701a791 - sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8 + md5: 2018839db45c79654b57a924fcdd27d0 + sha256: 8488a116dffe204015a90b41982c0270534bd1070f44a00b316d59e4a79ae8c7 category: dev optional: true - name: attrs @@ -369,11 +369,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda hash: - md5: 6732fa52eb8e66e5afeb32db8701a791 - sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8 + md5: 2018839db45c79654b57a924fcdd27d0 + sha256: 8488a116dffe204015a90b41982c0270534bd1070f44a00b316d59e4a79ae8c7 category: dev optional: true - name: babel @@ -878,7 +878,7 @@ package: category: main optional: false - name: coverage - version: 7.6.8 + version: 7.6.9 manager: conda platform: linux-64 dependencies: @@ -887,14 +887,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* tomli: '' - url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.8-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.9-py310h89163eb_0.conda hash: - md5: 1109af252e695897f5acc7c1578202cd - sha256: bf344cd5cba14409c422022dcacdf030f66ed325493ecb6f6bf6f22b7e0ee39b + md5: 02795aff079fa439dbc85b4e19f9a122 + sha256: 26328d46ceacf754d3da6866afab3f07f4be8e99a3f5a5ff11239a2423598261 category: dev optional: true - name: coverage - version: 7.6.8 + version: 7.6.9 manager: conda platform: win-64 dependencies: @@ -904,10 +904,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.8-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.9-py310h38315fa_0.conda hash: - md5: 981d75123a07437c07181d5919a6c2af - sha256: 26f7df3758c5a6fbca73b76ee415eb0581fe40dd0734c99220cf88b76b18e2ba + md5: b34ac2764d574776c512ecf94c30b0c4 + sha256: b6ba74a17779175965844c112cf181ea6a665a404d6718216bc6cd50d6c27c07 category: dev optional: true - name: cpython @@ -1346,11 +1346,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: - md5: d0441db20c827c11721889a241df1220 - sha256: a52d7516e2e11d3eb10908e10d3eb3f8ef267fea99ed9b09d52d96c4db3441b8 + md5: ef8b5fca76806159fc25b4f48d8737eb + sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 category: dev optional: true - name: executing @@ -1358,11 +1358,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: - md5: d0441db20c827c11721889a241df1220 - sha256: a52d7516e2e11d3eb10908e10d3eb3f8ef267fea99ed9b09d52d96c4db3441b8 + md5: ef8b5fca76806159fc25b4f48d8737eb + sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 category: dev optional: true - name: fasteners @@ -1390,7 +1390,7 @@ package: category: main optional: false - name: fonttools - version: 4.55.1 + version: 4.55.2 manager: conda platform: linux-64 dependencies: @@ -1401,14 +1401,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.1-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.2-py310h89163eb_0.conda hash: - md5: a54efd76ebc13fa9ae8d85f2a269cdb6 - sha256: e8d8859060d7aca2ae5feef7df160b411e3368078a74e040db90cab10fcce969 + md5: ba7233e0e73010b3a6469c3476254139 + sha256: 32aabdb0cfef576186fab4feae104991f87f00e44c44cd0af3bf437977530133 category: main optional: false - name: fonttools - version: 4.55.1 + version: 4.55.2 manager: conda platform: win-64 dependencies: @@ -1420,10 +1420,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.1-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.2-py310h38315fa_0.conda hash: - md5: ba549f316fd67101ea41a04aa4e18296 - sha256: 87b20eb4beae4a0a71dd91152e8e368ef58425e3bd2b389089fb4d5fd8b2f796 + md5: e5b62dbd279159b3badb83f7b153338d + sha256: d4b7446b0dc62b927b0805a23801e044b965bcd2e8c19cf396f958d86aeda1c4 category: main optional: false - name: fqdn @@ -1680,10 +1680,10 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_107.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_108.conda hash: - md5: e370421dfe789ad5177452d377d96f8a - sha256: 84d9427b4700ba438064e48cd3c829f83974b7d78c2b477f88685a00348eb06e + md5: b74598031529dafb2a66f9e90f26f2dc + sha256: 340b997d57eb89c058d8f2e80d426e4716661a51efcd1d857afb2b29f59177a4 category: main optional: false - name: hdf5 @@ -1698,10 +1698,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hd5d9e70_107.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hd5d9e70_108.conda hash: - md5: 2fe16003742cbb2765462fdadadfe9d1 - sha256: bc06fa5d7c6e272b0d03632be2b69509705c72632fbcc4cd86017e8edcfa6af3 + md5: 8b76ed5e2c0838095aad285acb14a94c + sha256: 33dfcb8c544949559238af8933ca5d5f9874accc297362e52246f32f06b53074 category: main optional: false - name: hpack @@ -1763,7 +1763,7 @@ package: category: dev optional: true - name: httpx - version: 0.28.0 + version: 0.28.1 manager: conda platform: linux-64 dependencies: @@ -1772,14 +1772,14 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: - md5: 8a4a83ba566c6b5c718dd0531a362d01 - sha256: 0b864abaa9f1443fc42368b4d2a4f4efb9971a53f961d1fe30fabd7fbdd76b27 + md5: d6989ead454181f4f9bc987d3dc4e285 + sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 category: dev optional: true - name: httpx - version: 0.28.0 + version: 0.28.1 manager: conda platform: win-64 dependencies: @@ -1788,10 +1788,10 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: - md5: 8a4a83ba566c6b5c718dd0531a362d01 - sha256: 0b864abaa9f1443fc42368b4d2a4f4efb9971a53f961d1fe30fabd7fbdd76b27 + md5: d6989ead454181f4f9bc987d3dc4e285 + sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 category: dev optional: true - name: hyperframe @@ -2244,12 +2244,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: - md5: 25df261d4523d9f9783bcdb7208d872f - sha256: 8ad719524b1039510fcbd75eb776123189d75e2c09228189257ddbcab86f5b64 + md5: bf8243ee348f3a10a14ed0cae323e0c1 + sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b category: main optional: false - name: joblib @@ -2257,12 +2257,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: - md5: 25df261d4523d9f9783bcdb7208d872f - sha256: 8ad719524b1039510fcbd75eb776123189d75e2c09228189257ddbcab86f5b64 + md5: bf8243ee348f3a10a14ed0cae323e0c1 + sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b category: main optional: false - name: json5 @@ -2831,12 +2831,12 @@ package: jsonschema: '>=4.18' jupyter_server: '>=1.21,<3' packaging: '>=21.3' - python: '>=3.8' + python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: - md5: af8239bf1ba7e8c69b689f780f653488 - sha256: a23b26d1a35bccdb91b9232119e5f402624e1e1a252b0e64cc20c6eb5b87cefb + md5: 9dc4b2b0f41f0de41d27f3293e319357 + sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 category: dev optional: true - name: jupyterlab_server @@ -2851,12 +2851,12 @@ package: jsonschema: '>=4.18' jupyter_server: '>=1.21,<3' packaging: '>=21.3' - python: '>=3.8' + python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: - md5: af8239bf1ba7e8c69b689f780f653488 - sha256: a23b26d1a35bccdb91b9232119e5f402624e1e1a252b0e64cc20c6eb5b87cefb + md5: 9dc4b2b0f41f0de41d27f3293e319357 + sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 category: dev optional: true - name: jupyterlab_widgets @@ -3670,31 +3670,31 @@ package: category: dev optional: true - name: libsqlite - version: 3.47.0 + version: 3.47.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda hash: - md5: b6f02b52a174e612e89548f4663ce56a - sha256: 8a9aadf996a2399f65b679c6e7f29139d5059f699c63e6d7b50e20db10c00508 + md5: b58da17db24b6e08bcbf8fed2fb8c915 + sha256: 48af21ebc2cbf358976f1e0f4a0ab9e91dfc83d0ef337cf3837c6f5bc22fb352 category: main optional: false - name: libsqlite - version: 3.47.0 + version: 3.47.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.0-h2466b09_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.2-h67fdade_0.conda hash: - md5: 5b1f36012cc3d09c4eb9f24ad0e2c379 - sha256: 3342d6fe787f5830f7e8466d9c65c914bfd8d67220fb5673041b338cbba47afe + md5: ff00095330e0d35a16bd3bdbd1a2d3e7 + sha256: ecfc0182c3b2e63c870581be1fa0e4dbdfec70d2011cb4f5bde416ece26c41df category: main optional: false - name: libssh2 @@ -5464,11 +5464,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: - md5: 0f051f09d992e0d08941706ad519ee0e - sha256: dcfcb3cee1ae0a89729601582cc3edea20ba13c9493967a03a693c67567af0c8 + md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 + sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 category: dev optional: true - name: pure_eval @@ -5476,11 +5476,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: - md5: 0f051f09d992e0d08941706ad519ee0e - sha256: dcfcb3cee1ae0a89729601582cc3edea20ba13c9493967a03a693c67567af0c8 + md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 + sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 category: dev optional: true - name: pybtex @@ -6355,12 +6355,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.5' + python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: - md5: fed45fc5ea0813240707998abe49f520 - sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + md5: 36de09a8d3e5d5e6f4ee63af49e59706 + sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 category: dev optional: true - name: rfc3339-validator @@ -6368,12 +6368,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.5' + python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: - md5: fed45fc5ea0813240707998abe49f520 - sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + md5: 36de09a8d3e5d5e6f4ee63af49e59706 + sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 category: dev optional: true - name: rfc3986-validator @@ -6487,10 +6487,10 @@ package: numpy: '>=1.23.5' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py310hfcf56fc_2.conda hash: - md5: d9b1b75a227dbc42f3fe0e8bc852b805 - sha256: df95244cd5faf7ede8560081db49892cb8ae99e202044d9eb00e4792d9d29af0 + md5: b5d548b2a7cf8d0c74fc6c4bf42d1ca5 + sha256: a15008a51fd6b6dcaeb5563869ff0a8a015f1e0a8634a9d89d2c189eefbd7182 category: main optional: false - name: scipy @@ -6507,10 +6507,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py310hbd0dde3_2.conda hash: - md5: 40856f1a065530263c38af13fe7d8f25 - sha256: 6ba7d1ab0cc549931bb5979c5230d3fa64791a23a23dd8142813da9759ba2b1a + md5: 72a2a7c264a8b48d113111756c2bbbb4 + sha256: 761829fa9c91fdffff0ba5a1f56f7d4cc00bec71ca7fa06859dc7f5a98117273 category: main optional: false - name: send2trash @@ -6993,10 +6993,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: 9075bd8c033f0257122300db914e49c9 - sha256: 8ac476358cf26098e3a360b2a9037bd809243f72934c103953e25f4fda4b9f31 + md5: 16e3f039c0aa6446513e94ab18a8784b + sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba category: dev optional: true - name: sphinxcontrib-applehelp @@ -7006,10 +7006,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: 9075bd8c033f0257122300db914e49c9 - sha256: 8ac476358cf26098e3a360b2a9037bd809243f72934c103953e25f4fda4b9f31 + md5: 16e3f039c0aa6446513e94ab18a8784b + sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba category: dev optional: true - name: sphinxcontrib-bibtex @@ -7055,10 +7055,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: b3bcc38c471ebb738854f52a36059b48 - sha256: 6790efe55f168816dfc9c14235054d5156e5150d28546c5baf2ff4973eff8f6b + md5: 910f28a05c178feba832f842155cbfff + sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d category: dev optional: true - name: sphinxcontrib-devhelp @@ -7068,10 +7068,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: b3bcc38c471ebb738854f52a36059b48 - sha256: 6790efe55f168816dfc9c14235054d5156e5150d28546c5baf2ff4973eff8f6b + md5: 910f28a05c178feba832f842155cbfff + sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d category: dev optional: true - name: sphinxcontrib-htmlhelp @@ -7081,10 +7081,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: - md5: e25640d692c02e8acfff0372f547e940 - sha256: 55e14b77ed786ab6ff752b8d75f8448536f385ed250f432bd408d2eff5ea4a9e + md5: e9fb3fe8a5b758b4aff187d434f94f03 + sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 category: dev optional: true - name: sphinxcontrib-htmlhelp @@ -7094,10 +7094,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: - md5: e25640d692c02e8acfff0372f547e940 - sha256: 55e14b77ed786ab6ff752b8d75f8448536f385ed250f432bd408d2eff5ea4a9e + md5: e9fb3fe8a5b758b4aff187d434f94f03 + sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 category: dev optional: true - name: sphinxcontrib-jsmath @@ -7105,11 +7105,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: - md5: da1d979339e2714c30a8e806a33ec087 - sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2 + md5: fa839b5ff59e192f411ccc7dae6588bb + sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 category: dev optional: true - name: sphinxcontrib-jsmath @@ -7117,11 +7117,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: - md5: da1d979339e2714c30a8e806a33ec087 - sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2 + md5: fa839b5ff59e192f411ccc7dae6588bb + sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 category: dev optional: true - name: sphinxcontrib-qthelp @@ -7131,10 +7131,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: d6e5ea5fe00164ac6c2dcc5d76a42192 - sha256: 7ae639b729844de2ec74dbaf1acccc14843868a82fa46cd2ceb735bc8266af5b + md5: 00534ebcc0375929b45c3039b5ba7636 + sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca category: dev optional: true - name: sphinxcontrib-qthelp @@ -7144,10 +7144,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: d6e5ea5fe00164ac6c2dcc5d76a42192 - sha256: 7ae639b729844de2ec74dbaf1acccc14843868a82fa46cd2ceb735bc8266af5b + md5: 00534ebcc0375929b45c3039b5ba7636 + sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca category: dev optional: true - name: sphinxcontrib-serializinghtml @@ -7157,10 +7157,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: - md5: e507335cb4ca9cff4c3d0fa9cdab255e - sha256: bf80e4c0ff97d5e8e5f6db0831ba60007e820a3a438e8f1afd868aa516d67d6f + md5: 3bc61f7161d28137797e038263c04c54 + sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 category: dev optional: true - name: sphinxcontrib-serializinghtml @@ -7170,10 +7170,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: - md5: e507335cb4ca9cff4c3d0fa9cdab255e - sha256: bf80e4c0ff97d5e8e5f6db0831ba60007e820a3a438e8f1afd868aa516d67d6f + md5: 3bc61f7161d28137797e038263c04c54 + sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 category: dev optional: true - name: sqlalchemy @@ -7212,33 +7212,33 @@ package: category: dev optional: true - name: stack_data - version: 0.6.2 + version: 0.6.3 manager: conda platform: linux-64 dependencies: asttokens: '' executing: '' pure_eval: '' - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + md5: b1b505328da7a6b246787df4b5a49fbc + sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 category: dev optional: true - name: stack_data - version: 0.6.2 + version: 0.6.3 manager: conda platform: win-64 dependencies: asttokens: '' executing: '' pure_eval: '' - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + md5: b1b505328da7a6b246787df4b5a49fbc + sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 category: dev optional: true - name: tabulate @@ -7246,11 +7246,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: - md5: 4759805cce2d914c38472f70bf4d8bcb - sha256: f6e4a0dd24ba060a4af69ca79d32361a6678e61d78c73eb5e357909b025b4620 + md5: 959484a66b4b76befcddc4fa97c95567 + sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a category: dev optional: true - name: tabulate @@ -7258,11 +7258,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: - md5: 4759805cce2d914c38472f70bf4d8bcb - sha256: f6e4a0dd24ba060a4af69ca79d32361a6678e61d78c73eb5e357909b025b4620 + md5: 959484a66b4b76befcddc4fa97c95567 + sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a category: dev optional: true - name: tbb @@ -7505,11 +7505,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: - md5: 34feccdd4177f2d3d53c73fc44fd9a37 - sha256: 6371cf3cf8292f2abdcc2bf783d6e70203d72f8ff0c1625f55a486711e276c75 + md5: 40d0ed782a8aaa16ef248e68c06c168d + sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 category: main optional: false - name: toolz @@ -7517,11 +7517,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: - md5: 34feccdd4177f2d3d53c73fc44fd9a37 - sha256: 6371cf3cf8292f2abdcc2bf783d6e70203d72f8ff0c1625f55a486711e276c75 + md5: 40d0ed782a8aaa16ef248e68c06c168d + sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 category: main optional: false - name: tornado @@ -7606,27 +7606,27 @@ package: category: dev optional: true - name: types-python-dateutil - version: 2.9.0.20241003 + version: 2.9.0.20241206 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: - md5: cb0e8ce6fe1198a058040619a09bc424 - sha256: 78538b566f1f1cd1e309bba8361875523c69db1a25db292a54977603c5ea1421 + md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 + sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 category: dev optional: true - name: types-python-dateutil - version: 2.9.0.20241003 + version: 2.9.0.20241206 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: - md5: cb0e8ce6fe1198a058040619a09bc424 - sha256: 78538b566f1f1cd1e309bba8361875523c69db1a25db292a54977603c5ea1421 + md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 + sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 category: dev optional: true - name: typing-extensions @@ -8430,12 +8430,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a hash: - sha256: ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + sha256: 61d39638af252d31fc490d41283a43e2b223d60a source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a category: main optional: false - name: octree-creation-app @@ -8451,12 +8451,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a hash: - sha256: ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + sha256: 61d39638af252d31fc490d41283a43e2b223d60a source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a category: main optional: false - name: param-sweeps diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 7eae8815..18bf4699 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: dfb2441740d8a6ccd0cae412e3d5a2bc212589ce6860e33261da362b7bd058b9 - linux-64: 997ba03c5e150d084199fafa3b0f829be633e3a6b869405f7d8825f3380ec7ca + win-64: 2e49051d882d32ee097be0fed61e5bf2f3b3b5cec49183142256325ba766d5fc + linux-64: c41d19a2ca66c96196f613a3a576a0d43e7b66eaad12988f35a95ad7c941c0ac channels: - url: conda-forge used_env_vars: [] @@ -130,7 +130,7 @@ package: category: main optional: false - name: anyio - version: 4.6.2.post1 + version: 4.7.0 manager: conda platform: linux-64 dependencies: @@ -138,15 +138,15 @@ package: idna: '>=2.8' python: '>=3.9' sniffio: '>=1.1' - typing_extensions: '>=4.1' - url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda + typing_extensions: '>=4.5' + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda hash: - md5: 688697ec5e9588bdded167d19577625b - sha256: 4b54b7ce79d818e3cce54ae4d552dba51b7afac160ceecdefd04b3917a37c502 + md5: c88107912954a983c2caf25f7fd55158 + sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1 category: dev optional: true - name: anyio - version: 4.6.2.post1 + version: 4.7.0 manager: conda platform: win-64 dependencies: @@ -154,11 +154,11 @@ package: idna: '>=2.8' python: '>=3.9' sniffio: '>=1.1' - typing_extensions: '>=4.1' - url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda + typing_extensions: '>=4.5' + url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda hash: - md5: 688697ec5e9588bdded167d19577625b - sha256: 4b54b7ce79d818e3cce54ae4d552dba51b7afac160ceecdefd04b3917a37c502 + md5: c88107912954a983c2caf25f7fd55158 + sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1 category: dev optional: true - name: argon2-cffi @@ -227,13 +227,13 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: - md5: b77d8c2313158e6e461ca0efb1c2c508 - sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db + md5: 46b53236fdd990271b03c3978d4218a9 + sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 category: dev optional: true - name: arrow @@ -241,13 +241,13 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '>=3.9' python-dateutil: '>=2.7.0' types-python-dateutil: '>=2.8.10' - url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda hash: - md5: b77d8c2313158e6e461ca0efb1c2c508 - sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db + md5: 46b53236fdd990271b03c3978d4218a9 + sha256: c4b0bdb3d5dee50b60db92f99da3e4c524d5240aafc0a5fcc15e45ae2d1a3cd1 category: dev optional: true - name: asciitree @@ -275,29 +275,29 @@ package: category: main optional: false - name: astroid - version: 3.3.5 + version: 3.3.6 manager: conda platform: linux-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.5-py311h38be061_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.6-py311h38be061_0.conda hash: - md5: d9172b38ee6b043710cf9537b0e1cd5d - sha256: 6a881e2b248fb91a286d5c92ca3c7ef6d9d7fe5d77742daf8a4844752cfe4b9e + md5: 90beb3745e382dfe003d48c5970419a9 + sha256: 92bf363286423e99e42c5d2e9bf8ed02efb1a047be4c238670fb9c9991e4ecf2 category: dev optional: true - name: astroid - version: 3.3.5 + version: 3.3.6 manager: conda platform: win-64 dependencies: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.5-py311h1ea47a8_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.6-py311h1ea47a8_0.conda hash: - md5: 82980fcae537ffec25214858ce67c561 - sha256: 8dc5284fb6a3b8f0abecb120ac48e340aa1772bf6f6c42c8d26b814d75e7bf2e + md5: d2e767d8b82e17f768b9e07bad3caa16 + sha256: 4a84b273e99a2c89641d9b5cedcd9b7b674b21a35a2f608f56f385a8da5b976b category: dev optional: true - name: asttokens @@ -329,12 +329,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda hash: - md5: 3d081de3a6ea9f894bbb585e8e3a4dcb - sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 + md5: 40c673c7d585623b8f1ee650c8734eb6 + sha256: 344157f396dfdc929d1dff8fe010abe173cd168d22a56648583e616495f2929e category: dev optional: true - name: async-lru @@ -342,12 +342,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '>=3.9' typing_extensions: '>=4.0.0' - url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda hash: - md5: 3d081de3a6ea9f894bbb585e8e3a4dcb - sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518 + md5: 40c673c7d585623b8f1ee650c8734eb6 + sha256: 344157f396dfdc929d1dff8fe010abe173cd168d22a56648583e616495f2929e category: dev optional: true - name: attrs @@ -355,11 +355,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda hash: - md5: 6732fa52eb8e66e5afeb32db8701a791 - sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8 + md5: 2018839db45c79654b57a924fcdd27d0 + sha256: 8488a116dffe204015a90b41982c0270534bd1070f44a00b316d59e4a79ae8c7 category: dev optional: true - name: attrs @@ -367,11 +367,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda hash: - md5: 6732fa52eb8e66e5afeb32db8701a791 - sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8 + md5: 2018839db45c79654b57a924fcdd27d0 + sha256: 8488a116dffe204015a90b41982c0270534bd1070f44a00b316d59e4a79ae8c7 category: dev optional: true - name: babel @@ -876,7 +876,7 @@ package: category: main optional: false - name: coverage - version: 7.6.8 + version: 7.6.9 manager: conda platform: linux-64 dependencies: @@ -885,14 +885,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* tomli: '' - url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.8-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.9-py311h2dc5d0c_0.conda hash: - md5: 8d6a690e582941ee3161500d1982ea3e - sha256: 820f5d4119149f77995f10e0aefc587117b23501a55c69a026bfcb50fa6917ff + md5: 098c90e7d8761167e0f54ed6f81ee2f0 + sha256: cab65b097814c390e45427a6cc1b2acc567ad613f18bd6b3df4fd65060b64293 category: dev optional: true - name: coverage - version: 7.6.8 + version: 7.6.9 manager: conda platform: win-64 dependencies: @@ -902,10 +902,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.8-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.9-py311h5082efb_0.conda hash: - md5: 06f5b27c266b026247d671f66f690908 - sha256: a394422eab4ef0ed7532db8ef2e9df2248ba58fc388d6cbdebb3f0636681ab5e + md5: acd81d733506237db89951d1dca8f01d + sha256: 38a7275c2264a8bd0c5ee38a96099fd20b300a588cce6726a4caf3fc6605441b category: dev optional: true - name: cpython @@ -1344,11 +1344,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: - md5: d0441db20c827c11721889a241df1220 - sha256: a52d7516e2e11d3eb10908e10d3eb3f8ef267fea99ed9b09d52d96c4db3441b8 + md5: ef8b5fca76806159fc25b4f48d8737eb + sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 category: dev optional: true - name: executing @@ -1356,11 +1356,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=2.7' - url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_1.conda hash: - md5: d0441db20c827c11721889a241df1220 - sha256: a52d7516e2e11d3eb10908e10d3eb3f8ef267fea99ed9b09d52d96c4db3441b8 + md5: ef8b5fca76806159fc25b4f48d8737eb + sha256: 28d25ea375ebab4bf7479228f8430db20986187b04999136ff5c722ebd32eb60 category: dev optional: true - name: fasteners @@ -1388,7 +1388,7 @@ package: category: main optional: false - name: fonttools - version: 4.55.1 + version: 4.55.2 manager: conda platform: linux-64 dependencies: @@ -1399,14 +1399,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.1-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.2-py311h2dc5d0c_0.conda hash: - md5: 7e891abfe80fe852757e3c92d314a245 - sha256: 1d130b501942bd43e9d2e47fee0321eb861853fc171e98bb3a7c6cfe2b7f7131 + md5: 1546b0b7837803047bfe3930acfd8ccb + sha256: 9ee2ef7229d5107c74d14c2acdb9fc790f01af481ea30ba54ece5fe5163c976f category: main optional: false - name: fonttools - version: 4.55.1 + version: 4.55.2 manager: conda platform: win-64 dependencies: @@ -1418,10 +1418,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.1-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.2-py311h5082efb_0.conda hash: - md5: 4d05b5fd390be4220d5820e1d98bd870 - sha256: 8b8b119d0e33998326d0cd67ff191ed61ab34e17937970fc40cd23156a88b8d1 + md5: 278131b51e244f89357510688f551c44 + sha256: fb0a9f1dcccefbd9c829e9794ae3620ac4dcda6cdfb405a950faaca549b71d9b category: main optional: false - name: fqdn @@ -1678,10 +1678,10 @@ package: libstdcxx: '>=13' libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.4.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_107.conda + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_108.conda hash: - md5: e370421dfe789ad5177452d377d96f8a - sha256: 84d9427b4700ba438064e48cd3c829f83974b7d78c2b477f88685a00348eb06e + md5: b74598031529dafb2a66f9e90f26f2dc + sha256: 340b997d57eb89c058d8f2e80d426e4716661a51efcd1d857afb2b29f59177a4 category: main optional: false - name: hdf5 @@ -1696,10 +1696,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hd5d9e70_107.conda + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.3-nompi_hd5d9e70_108.conda hash: - md5: 2fe16003742cbb2765462fdadadfe9d1 - sha256: bc06fa5d7c6e272b0d03632be2b69509705c72632fbcc4cd86017e8edcfa6af3 + md5: 8b76ed5e2c0838095aad285acb14a94c + sha256: 33dfcb8c544949559238af8933ca5d5f9874accc297362e52246f32f06b53074 category: main optional: false - name: hpack @@ -1761,7 +1761,7 @@ package: category: dev optional: true - name: httpx - version: 0.28.0 + version: 0.28.1 manager: conda platform: linux-64 dependencies: @@ -1770,14 +1770,14 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: - md5: 8a4a83ba566c6b5c718dd0531a362d01 - sha256: 0b864abaa9f1443fc42368b4d2a4f4efb9971a53f961d1fe30fabd7fbdd76b27 + md5: d6989ead454181f4f9bc987d3dc4e285 + sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 category: dev optional: true - name: httpx - version: 0.28.0 + version: 0.28.1 manager: conda platform: win-64 dependencies: @@ -1786,10 +1786,10 @@ package: httpcore: 1.* idna: '' python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.0-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda hash: - md5: 8a4a83ba566c6b5c718dd0531a362d01 - sha256: 0b864abaa9f1443fc42368b4d2a4f4efb9971a53f961d1fe30fabd7fbdd76b27 + md5: d6989ead454181f4f9bc987d3dc4e285 + sha256: cd0f1de3697b252df95f98383e9edb1d00386bfdd03fdf607fa42fe5fcb09950 category: dev optional: true - name: hyperframe @@ -2242,12 +2242,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' + python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: - md5: 25df261d4523d9f9783bcdb7208d872f - sha256: 8ad719524b1039510fcbd75eb776123189d75e2c09228189257ddbcab86f5b64 + md5: bf8243ee348f3a10a14ed0cae323e0c1 + sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b category: main optional: false - name: joblib @@ -2255,12 +2255,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' + python: '>=3.9' setuptools: '' - url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/joblib-1.4.2-pyhd8ed1ab_1.conda hash: - md5: 25df261d4523d9f9783bcdb7208d872f - sha256: 8ad719524b1039510fcbd75eb776123189d75e2c09228189257ddbcab86f5b64 + md5: bf8243ee348f3a10a14ed0cae323e0c1 + sha256: 51cc2dc491668af0c4d9299b0ab750f16ccf413ec5e2391b924108c1fbacae9b category: main optional: false - name: json5 @@ -2829,12 +2829,12 @@ package: jsonschema: '>=4.18' jupyter_server: '>=1.21,<3' packaging: '>=21.3' - python: '>=3.8' + python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: - md5: af8239bf1ba7e8c69b689f780f653488 - sha256: a23b26d1a35bccdb91b9232119e5f402624e1e1a252b0e64cc20c6eb5b87cefb + md5: 9dc4b2b0f41f0de41d27f3293e319357 + sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 category: dev optional: true - name: jupyterlab_server @@ -2849,12 +2849,12 @@ package: jsonschema: '>=4.18' jupyter_server: '>=1.21,<3' packaging: '>=21.3' - python: '>=3.8' + python: '>=3.9' requests: '>=2.31' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda hash: - md5: af8239bf1ba7e8c69b689f780f653488 - sha256: a23b26d1a35bccdb91b9232119e5f402624e1e1a252b0e64cc20c6eb5b87cefb + md5: 9dc4b2b0f41f0de41d27f3293e319357 + sha256: d03d0b7e23fa56d322993bc9786b3a43b88ccc26e58b77c756619a921ab30e86 category: dev optional: true - name: jupyterlab_widgets @@ -3695,31 +3695,31 @@ package: category: dev optional: true - name: libsqlite - version: 3.47.0 + version: 3.47.2 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc: '>=13' libzlib: '>=1.3.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda hash: - md5: b6f02b52a174e612e89548f4663ce56a - sha256: 8a9aadf996a2399f65b679c6e7f29139d5059f699c63e6d7b50e20db10c00508 + md5: b58da17db24b6e08bcbf8fed2fb8c915 + sha256: 48af21ebc2cbf358976f1e0f4a0ab9e91dfc83d0ef337cf3837c6f5bc22fb352 category: main optional: false - name: libsqlite - version: 3.47.0 + version: 3.47.2 manager: conda platform: win-64 dependencies: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.0-h2466b09_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.47.2-h67fdade_0.conda hash: - md5: 5b1f36012cc3d09c4eb9f24ad0e2c379 - sha256: 3342d6fe787f5830f7e8466d9c65c914bfd8d67220fb5673041b338cbba47afe + md5: ff00095330e0d35a16bd3bdbd1a2d3e7 + sha256: ecfc0182c3b2e63c870581be1fa0e4dbdfec70d2011cb4f5bde416ece26c41df category: main optional: false - name: libssh2 @@ -5489,11 +5489,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: - md5: 0f051f09d992e0d08941706ad519ee0e - sha256: dcfcb3cee1ae0a89729601582cc3edea20ba13c9493967a03a693c67567af0c8 + md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 + sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 category: dev optional: true - name: pure_eval @@ -5501,11 +5501,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda hash: - md5: 0f051f09d992e0d08941706ad519ee0e - sha256: dcfcb3cee1ae0a89729601582cc3edea20ba13c9493967a03a693c67567af0c8 + md5: 3bfdfb8dbcdc4af1ae3f9a8eb3948f04 + sha256: 71bd24600d14bb171a6321d523486f6a06f855e75e547fa0cb2a0953b02047f0 category: dev optional: true - name: pybtex @@ -6382,12 +6382,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.5' + python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: - md5: fed45fc5ea0813240707998abe49f520 - sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + md5: 36de09a8d3e5d5e6f4ee63af49e59706 + sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 category: dev optional: true - name: rfc3339-validator @@ -6395,12 +6395,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.5' + python: '>=3.9' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/rfc3339-validator-0.1.4-pyhd8ed1ab_1.conda hash: - md5: fed45fc5ea0813240707998abe49f520 - sha256: 7c7052b51de0b5c558f890bb11f8b5edbb9934a653d76be086b1182b9f54185d + md5: 36de09a8d3e5d5e6f4ee63af49e59706 + sha256: 2e4372f600490a6e0b3bac60717278448e323cab1c0fecd5f43f7c56535a99c5 category: dev optional: true - name: rfc3986-validator @@ -6514,10 +6514,10 @@ package: numpy: <2.3 python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/scipy-1.14.1-py311he9a78e4_2.conda hash: - md5: 49ba89bf4d8a995efb99517d1c7aeb1e - sha256: 59482b974c36c375fdfd0bc3e5a3003ea2d2ae72b64b8f3deaeef5a851dbc91d + md5: c4aee8cadc4c9fc9a91aca0803473690 + sha256: b28d91a55205b886308da82428cd522e9dce0ef912445a2e9d89318379c15759 category: main optional: false - name: scipy @@ -6534,10 +6534,10 @@ package: ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_1.conda + url: https://conda.anaconda.org/conda-forge/win-64/scipy-1.14.1-py311hf16d85f_2.conda hash: - md5: b7c132408b0ee7408dcfa998ef6f7939 - sha256: bd3c3ec5ba203143818fa3ca300060a459d78da566049b49ed2ef20e04ea5b96 + md5: 8d3393f64df60e48be00d06ccb63bb18 + sha256: ef98270586c1dfb551f9ff868312554f248f155406f924b91df07cd46c14d302 category: main optional: false - name: send2trash @@ -7020,10 +7020,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: 9075bd8c033f0257122300db914e49c9 - sha256: 8ac476358cf26098e3a360b2a9037bd809243f72934c103953e25f4fda4b9f31 + md5: 16e3f039c0aa6446513e94ab18a8784b + sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba category: dev optional: true - name: sphinxcontrib-applehelp @@ -7033,10 +7033,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-applehelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: 9075bd8c033f0257122300db914e49c9 - sha256: 8ac476358cf26098e3a360b2a9037bd809243f72934c103953e25f4fda4b9f31 + md5: 16e3f039c0aa6446513e94ab18a8784b + sha256: d7433a344a9ad32a680b881c81b0034bc61618d12c39dd6e3309abeffa9577ba category: dev optional: true - name: sphinxcontrib-bibtex @@ -7082,10 +7082,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: b3bcc38c471ebb738854f52a36059b48 - sha256: 6790efe55f168816dfc9c14235054d5156e5150d28546c5baf2ff4973eff8f6b + md5: 910f28a05c178feba832f842155cbfff + sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d category: dev optional: true - name: sphinxcontrib-devhelp @@ -7095,10 +7095,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-devhelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: b3bcc38c471ebb738854f52a36059b48 - sha256: 6790efe55f168816dfc9c14235054d5156e5150d28546c5baf2ff4973eff8f6b + md5: 910f28a05c178feba832f842155cbfff + sha256: 55d5076005d20b84b20bee7844e686b7e60eb9f683af04492e598a622b12d53d category: dev optional: true - name: sphinxcontrib-htmlhelp @@ -7108,10 +7108,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: - md5: e25640d692c02e8acfff0372f547e940 - sha256: 55e14b77ed786ab6ff752b8d75f8448536f385ed250f432bd408d2eff5ea4a9e + md5: e9fb3fe8a5b758b4aff187d434f94f03 + sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 category: dev optional: true - name: sphinxcontrib-htmlhelp @@ -7121,10 +7121,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-htmlhelp-2.1.0-pyhd8ed1ab_1.conda hash: - md5: e25640d692c02e8acfff0372f547e940 - sha256: 55e14b77ed786ab6ff752b8d75f8448536f385ed250f432bd408d2eff5ea4a9e + md5: e9fb3fe8a5b758b4aff187d434f94f03 + sha256: c1492c0262ccf16694bdcd3bb62aa4627878ea8782d5cd3876614ffeb62b3996 category: dev optional: true - name: sphinxcontrib-jsmath @@ -7132,11 +7132,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: - md5: da1d979339e2714c30a8e806a33ec087 - sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2 + md5: fa839b5ff59e192f411ccc7dae6588bb + sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 category: dev optional: true - name: sphinxcontrib-jsmath @@ -7144,11 +7144,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-jsmath-1.0.1-pyhd8ed1ab_1.conda hash: - md5: da1d979339e2714c30a8e806a33ec087 - sha256: d4337d83b8edba688547766fc80f1ac86d6ec86ceeeda93f376acc04079c5ce2 + md5: fa839b5ff59e192f411ccc7dae6588bb + sha256: 578bef5ec630e5b2b8810d898bbbf79b9ae66d49b7938bcc3efc364e679f2a62 category: dev optional: true - name: sphinxcontrib-qthelp @@ -7158,10 +7158,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: d6e5ea5fe00164ac6c2dcc5d76a42192 - sha256: 7ae639b729844de2ec74dbaf1acccc14843868a82fa46cd2ceb735bc8266af5b + md5: 00534ebcc0375929b45c3039b5ba7636 + sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca category: dev optional: true - name: sphinxcontrib-qthelp @@ -7171,10 +7171,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-qthelp-2.0.0-pyhd8ed1ab_1.conda hash: - md5: d6e5ea5fe00164ac6c2dcc5d76a42192 - sha256: 7ae639b729844de2ec74dbaf1acccc14843868a82fa46cd2ceb735bc8266af5b + md5: 00534ebcc0375929b45c3039b5ba7636 + sha256: c664fefae4acdb5fae973bdde25836faf451f41d04342b64a358f9a7753c92ca category: dev optional: true - name: sphinxcontrib-serializinghtml @@ -7184,10 +7184,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: - md5: e507335cb4ca9cff4c3d0fa9cdab255e - sha256: bf80e4c0ff97d5e8e5f6db0831ba60007e820a3a438e8f1afd868aa516d67d6f + md5: 3bc61f7161d28137797e038263c04c54 + sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 category: dev optional: true - name: sphinxcontrib-serializinghtml @@ -7197,10 +7197,10 @@ package: dependencies: python: '>=3.9' sphinx: '>=5' - url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/sphinxcontrib-serializinghtml-1.1.10-pyhd8ed1ab_1.conda hash: - md5: e507335cb4ca9cff4c3d0fa9cdab255e - sha256: bf80e4c0ff97d5e8e5f6db0831ba60007e820a3a438e8f1afd868aa516d67d6f + md5: 3bc61f7161d28137797e038263c04c54 + sha256: 64d89ecc0264347486971a94487cb8d7c65bfc0176750cf7502b8a272f4ab557 category: dev optional: true - name: sqlalchemy @@ -7239,33 +7239,33 @@ package: category: dev optional: true - name: stack_data - version: 0.6.2 + version: 0.6.3 manager: conda platform: linux-64 dependencies: asttokens: '' executing: '' pure_eval: '' - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + md5: b1b505328da7a6b246787df4b5a49fbc + sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 category: dev optional: true - name: stack_data - version: 0.6.2 + version: 0.6.3 manager: conda platform: win-64 dependencies: asttokens: '' executing: '' pure_eval: '' - python: '>=3.5' - url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda hash: - md5: e7df0fdd404616638df5ece6e69ba7af - sha256: a58433e75229bec39f3be50c02efbe9b7083e53a1f31d8ee247564f370191eec + md5: b1b505328da7a6b246787df4b5a49fbc + sha256: 570da295d421661af487f1595045760526964f41471021056e993e73089e9c41 category: dev optional: true - name: tabulate @@ -7273,11 +7273,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: - md5: 4759805cce2d914c38472f70bf4d8bcb - sha256: f6e4a0dd24ba060a4af69ca79d32361a6678e61d78c73eb5e357909b025b4620 + md5: 959484a66b4b76befcddc4fa97c95567 + sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a category: dev optional: true - name: tabulate @@ -7285,11 +7285,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_1.tar.bz2 + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tabulate-0.9.0-pyhd8ed1ab_2.conda hash: - md5: 4759805cce2d914c38472f70bf4d8bcb - sha256: f6e4a0dd24ba060a4af69ca79d32361a6678e61d78c73eb5e357909b025b4620 + md5: 959484a66b4b76befcddc4fa97c95567 + sha256: 090023bddd40d83468ef86573976af8c514f64119b2bd814ee63a838a542720a category: dev optional: true - name: tbb @@ -7532,11 +7532,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: - md5: 34feccdd4177f2d3d53c73fc44fd9a37 - sha256: 6371cf3cf8292f2abdcc2bf783d6e70203d72f8ff0c1625f55a486711e276c75 + md5: 40d0ed782a8aaa16ef248e68c06c168d + sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 category: main optional: false - name: toolz @@ -7544,11 +7544,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/toolz-1.0.0-pyhd8ed1ab_1.conda hash: - md5: 34feccdd4177f2d3d53c73fc44fd9a37 - sha256: 6371cf3cf8292f2abdcc2bf783d6e70203d72f8ff0c1625f55a486711e276c75 + md5: 40d0ed782a8aaa16ef248e68c06c168d + sha256: eda38f423c33c2eaeca49ed946a8d3bf466cc3364970e083a65eb2fd85258d87 category: main optional: false - name: tornado @@ -7633,27 +7633,27 @@ package: category: dev optional: true - name: types-python-dateutil - version: 2.9.0.20241003 + version: 2.9.0.20241206 manager: conda platform: linux-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: - md5: cb0e8ce6fe1198a058040619a09bc424 - sha256: 78538b566f1f1cd1e309bba8361875523c69db1a25db292a54977603c5ea1421 + md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 + sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 category: dev optional: true - name: types-python-dateutil - version: 2.9.0.20241003 + version: 2.9.0.20241206 manager: conda platform: win-64 dependencies: python: '>=3.9' - url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhd8ed1ab_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241206-pyhd8ed1ab_0.conda hash: - md5: cb0e8ce6fe1198a058040619a09bc424 - sha256: 78538b566f1f1cd1e309bba8361875523c69db1a25db292a54977603c5ea1421 + md5: 1dbc4a115e2ad9fb7f9d5b68397f66f9 + sha256: 8b98cd9464837174ab58aaa912fc95d5831879864676650a383994033533b8d1 category: dev optional: true - name: typing-extensions @@ -8457,12 +8457,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a hash: - sha256: ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + sha256: 61d39638af252d31fc490d41283a43e2b223d60a source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a category: main optional: false - name: octree-creation-app @@ -8478,12 +8478,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a hash: - sha256: ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + sha256: 61d39638af252d31fc490d41283a43e2b223d60a source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@ac05f803c7c86a475ddb9e5ba6ea8cabd1bc5924 + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a category: main optional: false - name: param-sweeps diff --git a/pyproject.toml b/pyproject.toml index 368def0a..26f01f28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ scipy = "~1.14.0" geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop"} #octree-creation-app = {version = ">=0.3.0a1, <0.4.0a.dev", source = "pypi", allow-prereleases = true} -octree-creation-app = {git = "https://github.com/MiraGeoscience/octree-creation-app.git", rev = "develop"} +octree-creation-app = {git = "https://github.com/MiraGeoscience/octree-creation-app.git", rev = "GEOPY-1864"} #geoapps-utils = {version = ">=0.5.0a1, <0.6.0a.dev", source = "pypi", allow-prereleases = true} geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop"} From 0200d4184f8db558355c8f3e513b62009022a812 Mon Sep 17 00:00:00 2001 From: benjamink Date: Tue, 10 Dec 2024 09:38:46 -0800 Subject: [PATCH 08/10] update lock files --- .../py-3.10-linux-64-dev.conda.lock.yml | 18 +-- environments/py-3.10-linux-64.conda.lock.yml | 10 +- .../py-3.10-win-64-dev.conda.lock.yml | 18 +-- environments/py-3.10-win-64.conda.lock.yml | 10 +- .../py-3.11-linux-64-dev.conda.lock.yml | 18 +-- environments/py-3.11-linux-64.conda.lock.yml | 10 +- .../py-3.11-win-64-dev.conda.lock.yml | 18 +-- environments/py-3.11-win-64.conda.lock.yml | 10 +- py-3.10.conda-lock.yml | 145 +++++++++--------- py-3.11.conda-lock.yml | 145 +++++++++--------- pyproject.toml | 2 +- 11 files changed, 203 insertions(+), 201 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 d95c70f3..9f5172ac 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: 9a65a2811a0adc51908e577a29c37667597d736e94b69d76bc4751bffc9c7e2d +# input_hash: c837fcb378b6cae5d84c5cef43bce5d50f77d827a2e71bb205685721b939cb4f channels: - conda-forge @@ -98,7 +98,7 @@ dependencies: - jupyter_events=0.10.0=pyhd8ed1ab_1 - jupyter_server=2.14.2=pyhd8ed1ab_1 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.3.2=pyhd8ed1ab_0 + - jupyterlab=4.3.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -147,7 +147,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.5=h0d44e9d_1 - libzlib=1.3.1=hb9d3cd8_2 - - linkify-it-py=2.0.3=pyhd8ed1ab_0 + - linkify-it-py=2.0.3=pyhd8ed1ab_1 - llvm-openmp=19.1.5=h024ca30_0 - llvmlite=0.43.0=py310h1a6248f_1 - locket=1.0.0=pyhd8ed1ab_0 @@ -176,12 +176,12 @@ dependencies: - numba=0.60.0=py310h5dc88bb_0 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.2=h488ebb8_0 + - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.4.0=hb9d3cd8_0 - overrides=7.7.0=pyhd8ed1ab_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py310h5eaa309_1 - - pandoc=3.5=ha770c72_0 + - pandoc=3.6=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.4=pyhd8ed1ab_1 - partd=1.4.2=pyhd8ed1ab_0 @@ -259,7 +259,7 @@ dependencies: - stack_data=0.6.3=pyhd8ed1ab_1 - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=h84d6215_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - terminado=0.18.1=pyh0d859eb_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tinycss2=1.4.0=pyhd8ed1ab_0 @@ -276,7 +276,7 @@ dependencies: - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2024b=hc8b5060_0 - - uc-micro-py=1.0.3=pyhd8ed1ab_0 + - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=15.1.0=py310ha75aee5_1 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.2.3=pyhd8ed1ab_1 @@ -296,10 +296,10 @@ dependencies: - zstandard=0.23.0=py310ha39cb0e_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index 612bc845..b293039b 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: 9a65a2811a0adc51908e577a29c37667597d736e94b69d76bc4751bffc9c7e2d +# input_hash: c837fcb378b6cae5d84c5cef43bce5d50f77d827a2e71bb205685721b939cb4f channels: - conda-forge @@ -98,7 +98,7 @@ dependencies: - numba=0.60.0=py310h5dc88bb_0 - numcodecs=0.13.1=py310h5eaa309_0 - numpy=1.26.4=py310hb13e2d6_0 - - openjpeg=2.5.2=h488ebb8_0 + - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.4.0=hb9d3cd8_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py310h5eaa309_1 @@ -128,7 +128,7 @@ dependencies: - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 - tbb=2021.12.0=h84d6215_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=noxft_h4845f30_101 - toolz=1.0.0=pyhd8ed1ab_1 @@ -149,10 +149,10 @@ dependencies: - zstandard=0.23.0=py310ha39cb0e_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: 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 82752aec..6a63cdad 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: 8bc6351796ded660951160ec4d41232c9bdc18c68fe15b7cce1976f2a59558aa +# input_hash: 0bc88791b352e66c88ebf282bbe19853e7a2f7c26ac4e31c350297d88bd4f063 channels: - conda-forge @@ -97,7 +97,7 @@ dependencies: - jupyter_events=0.10.0=pyhd8ed1ab_1 - jupyter_server=2.14.2=pyhd8ed1ab_1 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.3.2=pyhd8ed1ab_0 + - jupyterlab=4.3.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -131,7 +131,7 @@ dependencies: - libxcb=1.16=h013a479_1 - libxml2=2.13.5=he286e8c_1 - libzlib=1.3.1=h2466b09_2 - - linkify-it-py=2.0.3=pyhd8ed1ab_0 + - linkify-it-py=2.0.3=pyhd8ed1ab_1 - llvmlite=0.43.0=py310h0288bfe_1 - locket=1.0.0=pyhd8ed1ab_0 - m2w64-gcc-libgfortran=5.3.0=6 @@ -164,12 +164,12 @@ dependencies: - numba=0.60.0=py310h7793332_0 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.2=h3d672ee_0 + - openjpeg=2.5.3=h4d64b90_0 - openssl=3.4.0=h2466b09_0 - overrides=7.7.0=pyhd8ed1ab_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py310hb4db72f_1 - - pandoc=3.5=h57928b3_0 + - pandoc=3.6=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.4=pyhd8ed1ab_1 - partd=1.4.2=pyhd8ed1ab_0 @@ -247,7 +247,7 @@ dependencies: - stack_data=0.6.3=pyhd8ed1ab_1 - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=hc790b64_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - terminado=0.18.1=pyh5737063_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tinycss2=1.4.0=pyhd8ed1ab_0 @@ -264,7 +264,7 @@ dependencies: - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2024b=hc8b5060_0 - - uc-micro-py=1.0.3=pyhd8ed1ab_0 + - uc-micro-py=1.0.3=pyhd8ed1ab_1 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=15.1.0=py310ha8f682b_1 - uri-template=1.3.0=pyhd8ed1ab_1 @@ -290,10 +290,10 @@ dependencies: - zstandard=0.23.0=py310he5e10e1_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index a9628fd3..c4bdb16d 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: 8bc6351796ded660951160ec4d41232c9bdc18c68fe15b7cce1976f2a59558aa +# input_hash: 0bc88791b352e66c88ebf282bbe19853e7a2f7c26ac4e31c350297d88bd4f063 channels: - conda-forge @@ -85,7 +85,7 @@ dependencies: - numba=0.60.0=py310h7793332_0 - numcodecs=0.13.1=py310hb4db72f_0 - numpy=1.26.4=py310hf667824_0 - - openjpeg=2.5.2=h3d672ee_0 + - openjpeg=2.5.3=h4d64b90_0 - openssl=3.4.0=h2466b09_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py310hb4db72f_1 @@ -115,7 +115,7 @@ dependencies: - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 - tbb=2021.12.0=hc790b64_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=h5226925_1 - toolz=1.0.0=pyhd8ed1ab_1 @@ -141,10 +141,10 @@ dependencies: - zstandard=0.23.0=py310he5e10e1_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: 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 c90181a6..ed02f614 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: c41d19a2ca66c96196f613a3a576a0d43e7b66eaad12988f35a95ad7c941c0ac +# input_hash: c7b988407738db6b5ec0e16e7072a8a35c88942bb1648e8633efeae5b4acede5 channels: - conda-forge @@ -98,7 +98,7 @@ dependencies: - jupyter_events=0.10.0=pyhd8ed1ab_1 - jupyter_server=2.14.2=pyhd8ed1ab_1 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.3.2=pyhd8ed1ab_0 + - jupyterlab=4.3.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -148,7 +148,7 @@ dependencies: - libxcrypt=4.4.36=hd590300_1 - libxml2=2.13.5=h0d44e9d_1 - libzlib=1.3.1=hb9d3cd8_2 - - linkify-it-py=2.0.3=pyhd8ed1ab_0 + - linkify-it-py=2.0.3=pyhd8ed1ab_1 - llvm-openmp=19.1.5=h024ca30_0 - llvmlite=0.43.0=py311h9c9ff8c_1 - locket=1.0.0=pyhd8ed1ab_0 @@ -177,12 +177,12 @@ dependencies: - numba=0.60.0=py311h4bc866e_0 - numcodecs=0.14.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - - openjpeg=2.5.2=h488ebb8_0 + - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.4.0=hb9d3cd8_0 - overrides=7.7.0=pyhd8ed1ab_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py311h7db5c69_1 - - pandoc=3.5=ha770c72_0 + - pandoc=3.6=ha770c72_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.4=pyhd8ed1ab_1 - partd=1.4.2=pyhd8ed1ab_0 @@ -260,7 +260,7 @@ dependencies: - stack_data=0.6.3=pyhd8ed1ab_1 - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=h84d6215_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - terminado=0.18.1=pyh0d859eb_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tinycss2=1.4.0=pyhd8ed1ab_0 @@ -277,7 +277,7 @@ dependencies: - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2024b=hc8b5060_0 - - uc-micro-py=1.0.3=pyhd8ed1ab_0 + - uc-micro-py=1.0.3=pyhd8ed1ab_1 - unicodedata2=15.1.0=py311h9ecbd09_1 - uri-template=1.3.0=pyhd8ed1ab_1 - urllib3=2.2.3=pyhd8ed1ab_1 @@ -297,10 +297,10 @@ dependencies: - zstandard=0.23.0=py311hbc35293_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index e6e3caa2..3a985ddc 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: c41d19a2ca66c96196f613a3a576a0d43e7b66eaad12988f35a95ad7c941c0ac +# input_hash: c7b988407738db6b5ec0e16e7072a8a35c88942bb1648e8633efeae5b4acede5 channels: - conda-forge @@ -99,7 +99,7 @@ dependencies: - numba=0.60.0=py311h4bc866e_0 - numcodecs=0.14.1=py311h7db5c69_0 - numpy=1.26.4=py311h64a7726_0 - - openjpeg=2.5.2=h488ebb8_0 + - openjpeg=2.5.3=h5fbd93e_0 - openssl=3.4.0=hb9d3cd8_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py311h7db5c69_1 @@ -129,7 +129,7 @@ dependencies: - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 - tbb=2021.12.0=h84d6215_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=noxft_h4845f30_101 - toolz=1.0.0=pyhd8ed1ab_1 @@ -150,10 +150,10 @@ dependencies: - zstandard=0.23.0=py311hbc35293_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: 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 aa648053..270301b8 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: 2e49051d882d32ee097be0fed61e5bf2f3b3b5cec49183142256325ba766d5fc +# input_hash: 5ffc651c21d79f4646f5306be92e248da2e48cbd48d2267296642361c3d4db54 channels: - conda-forge @@ -97,7 +97,7 @@ dependencies: - jupyter_events=0.10.0=pyhd8ed1ab_1 - jupyter_server=2.14.2=pyhd8ed1ab_1 - jupyter_server_terminals=0.5.3=pyhd8ed1ab_1 - - jupyterlab=4.3.2=pyhd8ed1ab_0 + - jupyterlab=4.3.3=pyhd8ed1ab_0 - jupyterlab_pygments=0.3.0=pyhd8ed1ab_2 - jupyterlab_server=2.27.3=pyhd8ed1ab_1 - jupyterlab_widgets=1.1.11=pyhd8ed1ab_0 @@ -132,7 +132,7 @@ dependencies: - libxcb=1.16=h013a479_1 - libxml2=2.13.5=he286e8c_1 - libzlib=1.3.1=h2466b09_2 - - linkify-it-py=2.0.3=pyhd8ed1ab_0 + - linkify-it-py=2.0.3=pyhd8ed1ab_1 - llvmlite=0.43.0=py311h7deaa30_1 - locket=1.0.0=pyhd8ed1ab_0 - m2w64-gcc-libgfortran=5.3.0=6 @@ -165,12 +165,12 @@ dependencies: - numba=0.60.0=py311h0673bce_0 - numcodecs=0.14.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.2=h3d672ee_0 + - openjpeg=2.5.3=h4d64b90_0 - openssl=3.4.0=h2466b09_0 - overrides=7.7.0=pyhd8ed1ab_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py311hcf9f919_1 - - pandoc=3.5=h57928b3_0 + - pandoc=3.6=h57928b3_0 - pandocfilters=1.5.0=pyhd8ed1ab_0 - parso=0.8.4=pyhd8ed1ab_1 - partd=1.4.2=pyhd8ed1ab_0 @@ -248,7 +248,7 @@ dependencies: - stack_data=0.6.3=pyhd8ed1ab_1 - tabulate=0.9.0=pyhd8ed1ab_2 - tbb=2021.12.0=hc790b64_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - terminado=0.18.1=pyh5737063_0 - threadpoolctl=3.5.0=pyhc1e730c_0 - tinycss2=1.4.0=pyhd8ed1ab_0 @@ -265,7 +265,7 @@ dependencies: - typing_extensions=4.12.2=pyha770c72_1 - typing_utils=0.1.0=pyhd8ed1ab_1 - tzdata=2024b=hc8b5060_0 - - uc-micro-py=1.0.3=pyhd8ed1ab_0 + - uc-micro-py=1.0.3=pyhd8ed1ab_1 - ucrt=10.0.22621.0=h57928b3_1 - unicodedata2=15.1.0=py311he736701_1 - uri-template=1.3.0=pyhd8ed1ab_1 @@ -291,10 +291,10 @@ dependencies: - zstandard=0.23.0=py311h53056dc_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index ec9a77ad..2074ef4f 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: 2e49051d882d32ee097be0fed61e5bf2f3b3b5cec49183142256325ba766d5fc +# input_hash: 5ffc651c21d79f4646f5306be92e248da2e48cbd48d2267296642361c3d4db54 channels: - conda-forge @@ -86,7 +86,7 @@ dependencies: - numba=0.60.0=py311h0673bce_0 - numcodecs=0.14.1=py311hcf9f919_0 - numpy=1.26.4=py311h0b4df5a_0 - - openjpeg=2.5.2=h3d672ee_0 + - openjpeg=2.5.3=h4d64b90_0 - openssl=3.4.0=h2466b09_0 - packaging=24.2=pyhd8ed1ab_2 - pandas=2.2.3=py311hcf9f919_1 @@ -116,7 +116,7 @@ dependencies: - six=1.17.0=pyhd8ed1ab_0 - sortedcontainers=2.4.0=pyhd8ed1ab_0 - tbb=2021.12.0=hc790b64_4 - - tblib=3.0.0=pyhd8ed1ab_0 + - tblib=3.0.0=pyhd8ed1ab_1 - threadpoolctl=3.5.0=pyhc1e730c_0 - tk=8.6.13=h5226925_1 - toolz=1.0.0=pyhd8ed1ab_1 @@ -142,10 +142,10 @@ dependencies: - zstandard=0.23.0=py311h53056dc_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e - param-sweeps @ git+https://github.com/MiraGeoscience/param-sweeps.git@644febfba1e81b1777a8ebf86744541c8e1fce09 variables: diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 20181080..5fc6c44f 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: 8bc6351796ded660951160ec4d41232c9bdc18c68fe15b7cce1976f2a59558aa - linux-64: 9a65a2811a0adc51908e577a29c37667597d736e94b69d76bc4751bffc9c7e2d + win-64: 0bc88791b352e66c88ebf282bbe19853e7a2f7c26ac4e31c350297d88bd4f063 + linux-64: c837fcb378b6cae5d84c5cef43bce5d50f77d827a2e71bb205685721b939cb4f channels: - url: conda-forge used_env_vars: [] @@ -2740,12 +2740,12 @@ package: category: dev optional: true - name: jupyterlab - version: 4.3.2 + version: 4.3.3 manager: conda platform: linux-64 dependencies: async-lru: '>=1.0.0' - httpx: '>=0.28.0,<0.29.0' + httpx: '>=0.25.0' importlib-metadata: '>=4.8.3' ipykernel: '>=6.5.0' jinja2: '>=3.0.3' @@ -2760,19 +2760,19 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda hash: - md5: 5f0d3b774cae26dd785e443a0e1623ae - sha256: e806f753fe91faaffbad3d1d3aab7ceee785ae01bf0d758a82f1466164d727d6 + md5: 0707e62d944a89c365ba11da4898f8af + sha256: 63aa00427abd4a3e7c1738257b8e296f5e0ba04a4a1ab9ff3bc186440c8b9fdc category: dev optional: true - name: jupyterlab - version: 4.3.2 + version: 4.3.3 manager: conda platform: win-64 dependencies: async-lru: '>=1.0.0' - httpx: '>=0.28.0,<0.29.0' + httpx: '>=0.25.0' importlib-metadata: '>=4.8.3' ipykernel: '>=6.5.0' jinja2: '>=3.0.3' @@ -2787,10 +2787,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda hash: - md5: 5f0d3b774cae26dd785e443a0e1623ae - sha256: e806f753fe91faaffbad3d1d3aab7ceee785ae01bf0d758a82f1466164d727d6 + md5: 0707e62d944a89c365ba11da4898f8af + sha256: 63aa00427abd4a3e7c1738257b8e296f5e0ba04a4a1ab9ff3bc186440c8b9fdc category: dev optional: true - name: jupyterlab_pygments @@ -3939,12 +3939,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' + python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: - md5: f1b64ca4faf563605cf6f6ca93f9ff3f - sha256: aa99d44e8c83865026575a8af253141c53e0b3ab05f053befaa7757c8525064f + md5: b02fe519b5dc0dc55e7299810fcdfb8e + sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: linkify-it-py @@ -3952,12 +3952,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' + python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: - md5: f1b64ca4faf563605cf6f6ca93f9ff3f - sha256: aa99d44e8c83865026575a8af253141c53e0b3ab05f053befaa7757c8525064f + md5: b02fe519b5dc0dc55e7299810fcdfb8e + sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: llvm-openmp @@ -4893,36 +4893,37 @@ package: category: main optional: false - name: openjpeg - version: 2.5.2 + version: 2.5.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libpng: '>=1.6.43,<1.7.0a0' - libstdcxx-ng: '>=12' - libtiff: '>=4.6.0,<4.8.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libpng: '>=1.6.44,<1.7.0a0' + libstdcxx: '>=13' + libtiff: '>=4.7.0,<4.8.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: - md5: 7f2e286780f072ed750df46dc2631138 - sha256: 5600a0b82df042bd27d01e4e687187411561dfc11cc05143a08ce29b64bf2af2 + md5: 9e5816bc95d285c115a3ebc2f8563564 + sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 category: main optional: false - name: openjpeg - version: 2.5.2 + version: 2.5.3 manager: conda platform: win-64 dependencies: - libpng: '>=1.6.43,<1.7.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libzlib: '>=1.2.13,<2.0.0a0' + libpng: '>=1.6.44,<1.7.0a0' + libtiff: '>=4.7.0,<4.8.0a0' + libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: - md5: 7e7099ad94ac3b599808950cec30ad4e - sha256: dda71cbe094234ab208f3552dec1f4ca6f2e614175d010808d6cb66ecf0bc753 + md5: fc050366dd0b8313eb797ed1ffef3a29 + sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 category: main optional: false - name: openssl @@ -5045,25 +5046,25 @@ package: category: main optional: false - name: pandoc - version: '3.5' + version: '3.6' manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.5-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6-ha770c72_0.conda hash: - md5: 2889e6b9c666c3a564ab90cedc5832fd - sha256: 56df96c2707a5ac71b2e5d3b32e38521c0bac91006d0b8948c1d347dd5c12609 + md5: 38ee82616a780cf22ec6355e386e2563 + sha256: 9d4cfbb4cb844c50cecb0bc3c1ad7479908f422299bf79e667aa75129c4b0a21 category: dev optional: true - name: pandoc - version: '3.5' + version: '3.6' manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.5-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6-h57928b3_0.conda hash: - md5: 2c4a6c475e0f1bbffac672b0943dc520 - sha256: 2ef7593628529429ab0041128f90e7bb32eb447a05850c40ff178d9ad9df2e9b + md5: 0ec4b5943313ed989ccaebd37f04f46b + sha256: 43e5cb6d762f9777371ffcb00b766019a36be5fc2faddb56fd8ba1e7f2e4b789 category: dev optional: true - name: pandocfilters @@ -7302,11 +7303,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda hash: - md5: 04eedddeb68ad39871c8127dd1c21f4f - sha256: 2e2c255b6f24a6d75b9938cb184520e27db697db2c24f04e18342443ae847c0a + md5: 60ce69f73f3e75b21f1c27b1b471320c + sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a category: main optional: false - name: tblib @@ -7314,11 +7315,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda hash: - md5: 04eedddeb68ad39871c8127dd1c21f4f - sha256: 2e2c255b6f24a6d75b9938cb184520e27db697db2c24f04e18342443ae847c0a + md5: 60ce69f73f3e75b21f1c27b1b471320c + sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a category: main optional: false - name: terminado @@ -7728,11 +7729,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: - md5: 3b7fc78d7be7b450952aaa916fb78877 - sha256: 54293cd94da3a6b978b353eb7897555055d925ad0008bc73e85cca19e2587ed0 + md5: 9c96c9876ba45368a03056ddd0f20431 + sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b category: dev optional: true - name: uc-micro-py @@ -7740,11 +7741,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: - md5: 3b7fc78d7be7b450952aaa916fb78877 - sha256: 54293cd94da3a6b978b353eb7897555055d925ad0008bc73e85cca19e2587ed0 + md5: 9c96c9876ba45368a03056ddd0f20431 + sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b category: dev optional: true - name: ucrt @@ -8312,12 +8313,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 hash: - sha256: a2a851feabdeacf58dcd9acc083086ffbe9f27fa + sha256: 8b639f035603f72bb0427f621c00876185760da8 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 category: main optional: false - name: geoapps-utils @@ -8329,12 +8330,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 hash: - sha256: a2a851feabdeacf58dcd9acc083086ffbe9f27fa + sha256: 8b639f035603f72bb0427f621c00876185760da8 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 category: main optional: false - name: geoh5py @@ -8430,12 +8431,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e hash: - sha256: 61d39638af252d31fc490d41283a43e2b223d60a + sha256: 1d6becd648f94cd089c44b3c009d9c1c8263616e source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e category: main optional: false - name: octree-creation-app @@ -8451,12 +8452,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e hash: - sha256: 61d39638af252d31fc490d41283a43e2b223d60a + sha256: 1d6becd648f94cd089c44b3c009d9c1c8263616e source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e category: main optional: false - name: param-sweeps diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 18bf4699..019d5ece 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: 2e49051d882d32ee097be0fed61e5bf2f3b3b5cec49183142256325ba766d5fc - linux-64: c41d19a2ca66c96196f613a3a576a0d43e7b66eaad12988f35a95ad7c941c0ac + win-64: 5ffc651c21d79f4646f5306be92e248da2e48cbd48d2267296642361c3d4db54 + linux-64: c7b988407738db6b5ec0e16e7072a8a35c88942bb1648e8633efeae5b4acede5 channels: - url: conda-forge used_env_vars: [] @@ -2738,12 +2738,12 @@ package: category: dev optional: true - name: jupyterlab - version: 4.3.2 + version: 4.3.3 manager: conda platform: linux-64 dependencies: async-lru: '>=1.0.0' - httpx: '>=0.28.0,<0.29.0' + httpx: '>=0.25.0' importlib-metadata: '>=4.8.3' ipykernel: '>=6.5.0' jinja2: '>=3.0.3' @@ -2758,19 +2758,19 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda hash: - md5: 5f0d3b774cae26dd785e443a0e1623ae - sha256: e806f753fe91faaffbad3d1d3aab7ceee785ae01bf0d758a82f1466164d727d6 + md5: 0707e62d944a89c365ba11da4898f8af + sha256: 63aa00427abd4a3e7c1738257b8e296f5e0ba04a4a1ab9ff3bc186440c8b9fdc category: dev optional: true - name: jupyterlab - version: 4.3.2 + version: 4.3.3 manager: conda platform: win-64 dependencies: async-lru: '>=1.0.0' - httpx: '>=0.28.0,<0.29.0' + httpx: '>=0.25.0' importlib-metadata: '>=4.8.3' ipykernel: '>=6.5.0' jinja2: '>=3.0.3' @@ -2785,10 +2785,10 @@ package: tomli: '>=1.2.2' tornado: '>=6.2.0' traitlets: '' - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.2-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda hash: - md5: 5f0d3b774cae26dd785e443a0e1623ae - sha256: e806f753fe91faaffbad3d1d3aab7ceee785ae01bf0d758a82f1466164d727d6 + md5: 0707e62d944a89c365ba11da4898f8af + sha256: 63aa00427abd4a3e7c1738257b8e296f5e0ba04a4a1ab9ff3bc186440c8b9fdc category: dev optional: true - name: jupyterlab_pygments @@ -3964,12 +3964,12 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' + python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: - md5: f1b64ca4faf563605cf6f6ca93f9ff3f - sha256: aa99d44e8c83865026575a8af253141c53e0b3ab05f053befaa7757c8525064f + md5: b02fe519b5dc0dc55e7299810fcdfb8e + sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: linkify-it-py @@ -3977,12 +3977,12 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' + python: '>=3.9' uc-micro-py: '' - url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/linkify-it-py-2.0.3-pyhd8ed1ab_1.conda hash: - md5: f1b64ca4faf563605cf6f6ca93f9ff3f - sha256: aa99d44e8c83865026575a8af253141c53e0b3ab05f053befaa7757c8525064f + md5: b02fe519b5dc0dc55e7299810fcdfb8e + sha256: d975a2015803d4fdaaae3f53e21f64996577d7a069eb61c6d2792504f16eb57b category: dev optional: true - name: llvm-openmp @@ -4918,36 +4918,37 @@ package: category: main optional: false - name: openjpeg - version: 2.5.2 + version: 2.5.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libpng: '>=1.6.43,<1.7.0a0' - libstdcxx-ng: '>=12' - libtiff: '>=4.6.0,<4.8.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda + __glibc: '>=2.17,<3.0.a0' + libgcc: '>=13' + libpng: '>=1.6.44,<1.7.0a0' + libstdcxx: '>=13' + libtiff: '>=4.7.0,<4.8.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda hash: - md5: 7f2e286780f072ed750df46dc2631138 - sha256: 5600a0b82df042bd27d01e4e687187411561dfc11cc05143a08ce29b64bf2af2 + md5: 9e5816bc95d285c115a3ebc2f8563564 + sha256: 5bee706ea5ba453ed7fd9da7da8380dd88b865c8d30b5aaec14d2b6dd32dbc39 category: main optional: false - name: openjpeg - version: 2.5.2 + version: 2.5.3 manager: conda platform: win-64 dependencies: - libpng: '>=1.6.43,<1.7.0a0' - libtiff: '>=4.6.0,<4.8.0a0' - libzlib: '>=1.2.13,<2.0.0a0' + libpng: '>=1.6.44,<1.7.0a0' + libtiff: '>=4.7.0,<4.8.0a0' + libzlib: '>=1.3.1,<2.0a0' ucrt: '>=10.0.20348.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.2-h3d672ee_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda hash: - md5: 7e7099ad94ac3b599808950cec30ad4e - sha256: dda71cbe094234ab208f3552dec1f4ca6f2e614175d010808d6cb66ecf0bc753 + md5: fc050366dd0b8313eb797ed1ffef3a29 + sha256: 410175815df192f57a07c29a6b3fdd4231937173face9e63f0830c1234272ce3 category: main optional: false - name: openssl @@ -5070,25 +5071,25 @@ package: category: main optional: false - name: pandoc - version: '3.5' + version: '3.6' manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.5-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.6-ha770c72_0.conda hash: - md5: 2889e6b9c666c3a564ab90cedc5832fd - sha256: 56df96c2707a5ac71b2e5d3b32e38521c0bac91006d0b8948c1d347dd5c12609 + md5: 38ee82616a780cf22ec6355e386e2563 + sha256: 9d4cfbb4cb844c50cecb0bc3c1ad7479908f422299bf79e667aa75129c4b0a21 category: dev optional: true - name: pandoc - version: '3.5' + version: '3.6' manager: conda platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.5-h57928b3_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/pandoc-3.6-h57928b3_0.conda hash: - md5: 2c4a6c475e0f1bbffac672b0943dc520 - sha256: 2ef7593628529429ab0041128f90e7bb32eb447a05850c40ff178d9ad9df2e9b + md5: 0ec4b5943313ed989ccaebd37f04f46b + sha256: 43e5cb6d762f9777371ffcb00b766019a36be5fc2faddb56fd8ba1e7f2e4b789 category: dev optional: true - name: pandocfilters @@ -7329,11 +7330,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda hash: - md5: 04eedddeb68ad39871c8127dd1c21f4f - sha256: 2e2c255b6f24a6d75b9938cb184520e27db697db2c24f04e18342443ae847c0a + md5: 60ce69f73f3e75b21f1c27b1b471320c + sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a category: main optional: false - name: tblib @@ -7341,11 +7342,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/tblib-3.0.0-pyhd8ed1ab_1.conda hash: - md5: 04eedddeb68ad39871c8127dd1c21f4f - sha256: 2e2c255b6f24a6d75b9938cb184520e27db697db2c24f04e18342443ae847c0a + md5: 60ce69f73f3e75b21f1c27b1b471320c + sha256: 6869cd2e043426d30c84d0ff6619f176b39728f9c75dc95dca89db994548bb8a category: main optional: false - name: terminado @@ -7755,11 +7756,11 @@ package: manager: conda platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: - md5: 3b7fc78d7be7b450952aaa916fb78877 - sha256: 54293cd94da3a6b978b353eb7897555055d925ad0008bc73e85cca19e2587ed0 + md5: 9c96c9876ba45368a03056ddd0f20431 + sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b category: dev optional: true - name: uc-micro-py @@ -7767,11 +7768,11 @@ package: manager: conda platform: win-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/uc-micro-py-1.0.3-pyhd8ed1ab_1.conda hash: - md5: 3b7fc78d7be7b450952aaa916fb78877 - sha256: 54293cd94da3a6b978b353eb7897555055d925ad0008bc73e85cca19e2587ed0 + md5: 9c96c9876ba45368a03056ddd0f20431 + sha256: a2f837780af450d633efc052219c31378bcad31356766663fb88a99e8e4c817b category: dev optional: true - name: ucrt @@ -8339,12 +8340,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 hash: - sha256: a2a851feabdeacf58dcd9acc083086ffbe9f27fa + sha256: 8b639f035603f72bb0427f621c00876185760da8 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 category: main optional: false - name: geoapps-utils @@ -8356,12 +8357,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 hash: - sha256: a2a851feabdeacf58dcd9acc083086ffbe9f27fa + sha256: 8b639f035603f72bb0427f621c00876185760da8 source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@a2a851feabdeacf58dcd9acc083086ffbe9f27fa + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 category: main optional: false - name: geoh5py @@ -8457,12 +8458,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e hash: - sha256: 61d39638af252d31fc490d41283a43e2b223d60a + sha256: 1d6becd648f94cd089c44b3c009d9c1c8263616e source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e category: main optional: false - name: octree-creation-app @@ -8478,12 +8479,12 @@ package: pillow: '>=10.3.0,<10.4.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e hash: - sha256: 61d39638af252d31fc490d41283a43e2b223d60a + sha256: 1d6becd648f94cd089c44b3c009d9c1c8263616e source: type: url - url: git+https://github.com/MiraGeoscience/octree-creation-app.git@61d39638af252d31fc490d41283a43e2b223d60a + url: git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e category: main optional: false - name: param-sweeps diff --git a/pyproject.toml b/pyproject.toml index 26f01f28..a19d05cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ geoh5py = {git = "https://github.com/MiraGeoscience/geoh5py.git", rev = "develop octree-creation-app = {git = "https://github.com/MiraGeoscience/octree-creation-app.git", rev = "GEOPY-1864"} #geoapps-utils = {version = ">=0.5.0a1, <0.6.0a.dev", source = "pypi", allow-prereleases = true} -geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "develop"} +geoapps-utils = {git = "https://github.com/MiraGeoscience/geoapps-utils.git", rev = "GEOPY-1864"} #mira-simpeg = {version = ">=0.22.0.1a1, <0.22.1a.dev", source="pypi", allow-prereleases = true, extras = ["dask"]} mira-simpeg = {git = "https://github.com/MiraGeoscience/simpeg.git", rev = "develop", extras = ["dask"]} From 814d08def9aecfd811c9a572b47a05971f3df679 Mon Sep 17 00:00:00 2001 From: benjamink Date: Tue, 10 Dec 2024 14:49:48 -0800 Subject: [PATCH 09/10] call params serialize and set options --- simpeg_drivers/utils/meshes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/simpeg_drivers/utils/meshes.py b/simpeg_drivers/utils/meshes.py index 6bdd3d91..7f1217d9 100644 --- a/simpeg_drivers/utils/meshes.py +++ b/simpeg_drivers/utils/meshes.py @@ -106,6 +106,8 @@ def auto_mesh_parameters( "out_group": out_group, } params = OctreeParams(**params_dict) - params.add_options() + options = params.serialize() + options.pop("out_group") + out_group.options = options return params From 5288ed3e8907279fea4db18f32522a2cd90c922f Mon Sep 17 00:00:00 2001 From: benjamink Date: Wed, 11 Dec 2024 09:50:07 -0800 Subject: [PATCH 10/10] lock files --- .../py-3.10-linux-64-dev.conda.lock.yml | 8 +-- environments/py-3.10-linux-64.conda.lock.yml | 4 +- .../py-3.10-win-64-dev.conda.lock.yml | 8 +-- environments/py-3.10-win-64.conda.lock.yml | 4 +- .../py-3.11-linux-64-dev.conda.lock.yml | 8 +-- environments/py-3.11-linux-64.conda.lock.yml | 4 +- .../py-3.11-win-64-dev.conda.lock.yml | 8 +-- environments/py-3.11-win-64.conda.lock.yml | 4 +- py-3.10.conda-lock.yml | 60 +++++++++---------- py-3.11.conda-lock.yml | 60 +++++++++---------- 10 files changed, 84 insertions(+), 84 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 9f5172ac..3a7311bd 100644 --- a/environments/py-3.10-linux-64-dev.conda.lock.yml +++ b/environments/py-3.10-linux-64-dev.conda.lock.yml @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.2.2=pyhd8ed1ab_1 - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py310h89163eb_0 + - fonttools=4.55.3=py310h89163eb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -156,7 +156,7 @@ dependencies: - matplotlib-base=3.8.4=py310hef631a5_2 - matplotlib-inline=0.1.7=pyhd8ed1ab_1 - mccabe=0.7.0=pyhd8ed1ab_1 - - mdit-py-plugins=0.4.2=pyhd8ed1ab_0 + - mdit-py-plugins=0.4.2=pyhd8ed1ab_1 - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.0.2=pyhd8ed1ab_1 - mkl=2023.2.0=h84fe81f_50496 @@ -198,7 +198,7 @@ dependencies: - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_2 + - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py310hff52083_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.10.3=pyh3cfb1c2_0 @@ -296,7 +296,7 @@ dependencies: - zstandard=0.23.0=py310ha39cb0e_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e diff --git a/environments/py-3.10-linux-64.conda.lock.yml b/environments/py-3.10-linux-64.conda.lock.yml index b293039b..45a04ce2 100644 --- a/environments/py-3.10-linux-64.conda.lock.yml +++ b/environments/py-3.10-linux-64.conda.lock.yml @@ -31,7 +31,7 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py310h89163eb_0 + - fonttools=4.55.3=py310h89163eb_0 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py310hcb52e73_4 @@ -149,7 +149,7 @@ dependencies: - zstandard=0.23.0=py310ha39cb0e_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e 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 6a63cdad..233975f1 100644 --- a/environments/py-3.10-win-64-dev.conda.lock.yml +++ b/environments/py-3.10-win-64-dev.conda.lock.yml @@ -54,7 +54,7 @@ dependencies: - exceptiongroup=1.2.2=pyhd8ed1ab_1 - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py310h38315fa_0 + - fonttools=4.55.3=py310h38315fa_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -144,7 +144,7 @@ dependencies: - matplotlib-base=3.8.4=py310hadb10a8_2 - matplotlib-inline=0.1.7=pyhd8ed1ab_1 - mccabe=0.7.0=pyhd8ed1ab_1 - - mdit-py-plugins=0.4.2=pyhd8ed1ab_0 + - mdit-py-plugins=0.4.2=pyhd8ed1ab_1 - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.0.2=pyhd8ed1ab_1 - mkl=2023.2.0=h6a75c08_50497 @@ -185,7 +185,7 @@ dependencies: - pthread-stubs=0.4=hcd874cb_1001 - pthreads-win32=2.9.1=h2466b09_4 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_2 + - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py310h5588dad_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.10.3=pyh3cfb1c2_0 @@ -290,7 +290,7 @@ dependencies: - zstandard=0.23.0=py310he5e10e1_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e diff --git a/environments/py-3.10-win-64.conda.lock.yml b/environments/py-3.10-win-64.conda.lock.yml index c4bdb16d..cfff7220 100644 --- a/environments/py-3.10-win-64.conda.lock.yml +++ b/environments/py-3.10-win-64.conda.lock.yml @@ -28,7 +28,7 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py310h38315fa_0 + - fonttools=4.55.3=py310h38315fa_0 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py310h4856b71_4 @@ -141,7 +141,7 @@ dependencies: - zstandard=0.23.0=py310he5e10e1_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e 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 ed02f614..1541bef1 100644 --- a/environments/py-3.11-linux-64-dev.conda.lock.yml +++ b/environments/py-3.11-linux-64-dev.conda.lock.yml @@ -56,7 +56,7 @@ dependencies: - exceptiongroup=1.2.2=pyhd8ed1ab_1 - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py311h2dc5d0c_0 + - fonttools=4.55.3=py311h2dc5d0c_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -157,7 +157,7 @@ dependencies: - matplotlib-base=3.8.4=py311ha4ca890_2 - matplotlib-inline=0.1.7=pyhd8ed1ab_1 - mccabe=0.7.0=pyhd8ed1ab_1 - - mdit-py-plugins=0.4.2=pyhd8ed1ab_0 + - mdit-py-plugins=0.4.2=pyhd8ed1ab_1 - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.0.2=pyhd8ed1ab_1 - mkl=2023.2.0=h84fe81f_50496 @@ -199,7 +199,7 @@ dependencies: - pthread-stubs=0.4=hb9d3cd8_1002 - ptyprocess=0.7.0=pyhd8ed1ab_1 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_2 + - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py311h38be061_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.10.3=pyh3cfb1c2_0 @@ -297,7 +297,7 @@ dependencies: - zstandard=0.23.0=py311hbc35293_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e diff --git a/environments/py-3.11-linux-64.conda.lock.yml b/environments/py-3.11-linux-64.conda.lock.yml index 3a985ddc..d9002ada 100644 --- a/environments/py-3.11-linux-64.conda.lock.yml +++ b/environments/py-3.11-linux-64.conda.lock.yml @@ -31,7 +31,7 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py311h2dc5d0c_0 + - fonttools=4.55.3=py311h2dc5d0c_0 - freetype=2.12.1=h267a509_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py311h92ebd52_4 @@ -150,7 +150,7 @@ dependencies: - zstandard=0.23.0=py311hbc35293_1 - zstd=1.5.6=ha6fb4c9_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e 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 270301b8..58543dc1 100644 --- a/environments/py-3.11-win-64-dev.conda.lock.yml +++ b/environments/py-3.11-win-64-dev.conda.lock.yml @@ -54,7 +54,7 @@ dependencies: - exceptiongroup=1.2.2=pyhd8ed1ab_1 - executing=2.1.0=pyhd8ed1ab_1 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py311h5082efb_0 + - fonttools=4.55.3=py311h5082efb_0 - fqdn=1.5.1=pyhd8ed1ab_1 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 @@ -145,7 +145,7 @@ dependencies: - matplotlib-base=3.8.4=py311h9b31f6e_2 - matplotlib-inline=0.1.7=pyhd8ed1ab_1 - mccabe=0.7.0=pyhd8ed1ab_1 - - mdit-py-plugins=0.4.2=pyhd8ed1ab_0 + - mdit-py-plugins=0.4.2=pyhd8ed1ab_1 - mdurl=0.1.2=pyhd8ed1ab_1 - mistune=3.0.2=pyhd8ed1ab_1 - mkl=2023.2.0=h6a75c08_50497 @@ -186,7 +186,7 @@ dependencies: - pthread-stubs=0.4=hcd874cb_1001 - pthreads-win32=2.9.1=h2466b09_4 - pure_eval=0.2.3=pyhd8ed1ab_1 - - pybtex=0.24.0=pyhd8ed1ab_2 + - pybtex=0.24.0=pyhd8ed1ab_3 - pybtex-docutils=1.0.3=py311h1ea47a8_2 - pycparser=2.22=pyh29332c3_1 - pydantic=2.10.3=pyh3cfb1c2_0 @@ -291,7 +291,7 @@ dependencies: - zstandard=0.23.0=py311h53056dc_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e diff --git a/environments/py-3.11-win-64.conda.lock.yml b/environments/py-3.11-win-64.conda.lock.yml index 2074ef4f..8f16d17c 100644 --- a/environments/py-3.11-win-64.conda.lock.yml +++ b/environments/py-3.11-win-64.conda.lock.yml @@ -28,7 +28,7 @@ dependencies: - distributed=2024.6.2=pyhd8ed1ab_0 - empymod=2.2.2=pyhd8ed1ab_0 - fasteners=0.17.3=pyhd8ed1ab_0 - - fonttools=4.55.2=py311h5082efb_0 + - fonttools=4.55.3=py311h5082efb_0 - freetype=2.12.1=hdaf720e_2 - fsspec=2022.11.0=pyhd8ed1ab_0 - geoana=0.5.0=py311h12feb9d_4 @@ -142,7 +142,7 @@ dependencies: - zstandard=0.23.0=py311h53056dc_1 - zstd=1.5.6=h0ea2cb4_0 - pip: - - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + - geoapps-utils @ git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f - geoh5py @ git+https://github.com/MiraGeoscience/geoh5py.git@fe9db0338ad1f77427f1e5e64bf49356d0c14c18 - mira-simpeg @ git+https://github.com/MiraGeoscience/simpeg.git@59133afc4586f2924236098f5f001d402f162667 - octree-creation-app @ git+https://github.com/MiraGeoscience/octree-creation-app.git@1d6becd648f94cd089c44b3c009d9c1c8263616e diff --git a/py-3.10.conda-lock.yml b/py-3.10.conda-lock.yml index 5fc6c44f..d6a97e9d 100644 --- a/py-3.10.conda-lock.yml +++ b/py-3.10.conda-lock.yml @@ -1390,7 +1390,7 @@ package: category: main optional: false - name: fonttools - version: 4.55.2 + version: 4.55.3 manager: conda platform: linux-64 dependencies: @@ -1401,14 +1401,14 @@ package: python: '>=3.10,<3.11.0a0' python_abi: 3.10.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.2-py310h89163eb_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.3-py310h89163eb_0.conda hash: - md5: ba7233e0e73010b3a6469c3476254139 - sha256: 32aabdb0cfef576186fab4feae104991f87f00e44c44cd0af3bf437977530133 + md5: edd1be5d8c667f5e53667433e84efabc + sha256: 82aa35dc32b53f1553b68d714e74fdbe41a73fd1bd058da019536049a1e7a8f5 category: main optional: false - name: fonttools - version: 4.55.2 + version: 4.55.3 manager: conda platform: win-64 dependencies: @@ -1420,10 +1420,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.2-py310h38315fa_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.3-py310h38315fa_0.conda hash: - md5: e5b62dbd279159b3badb83f7b153338d - sha256: d4b7446b0dc62b927b0805a23801e044b965bcd2e8c19cf396f958d86aeda1c4 + md5: 1a7c85a5dc2cca557de839ceb144ea16 + sha256: b5fd15b93b1f4359873e733a07672bc1f2e8729182fedd1ca3f3b50ec0cdc696 category: main optional: false - name: fqdn @@ -4268,11 +4268,11 @@ package: platform: linux-64 dependencies: markdown-it-py: '>=1.0.0,<4.0.0' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: - md5: 5387f2cfa28f8a3afa3368bb4ba201e8 - sha256: 5cedc99412278b37e9596f1f991d49f5a1663fe79767cf814a288134a1400ba9 + md5: af2060041d4f3250a7eb6ab3ec0e549b + sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 category: dev optional: true - name: mdit-py-plugins @@ -4281,11 +4281,11 @@ package: platform: win-64 dependencies: markdown-it-py: '>=1.0.0,<4.0.0' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: - md5: 5387f2cfa28f8a3afa3368bb4ba201e8 - sha256: 5cedc99412278b37e9596f1f991d49f5a1663fe79767cf814a288134a1400ba9 + md5: af2060041d4f3250a7eb6ab3ec0e549b + sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 category: dev optional: true - name: mdurl @@ -5490,14 +5490,14 @@ package: platform: linux-64 dependencies: latexcodec: '>=1.0.4' - python: '>=3.6' + python: '>=3.9' pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: - md5: 2099b86a7399c44c0c61cdb6de6915ba - sha256: 258fbf46050bbd51fbaa504116e56e8f3064156f0e08cad4e2fec97f5f29e6dc + md5: 556a52a96313364aa79990ed1337b9a5 + sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 category: dev optional: true - name: pybtex @@ -5506,14 +5506,14 @@ package: platform: win-64 dependencies: latexcodec: '>=1.0.4' - python: '>=3.6' + python: '>=3.9' pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: - md5: 2099b86a7399c44c0c61cdb6de6915ba - sha256: 258fbf46050bbd51fbaa504116e56e8f3064156f0e08cad4e2fec97f5f29e6dc + md5: 556a52a96313364aa79990ed1337b9a5 + sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 category: dev optional: true - name: pybtex-docutils @@ -8313,12 +8313,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f hash: - sha256: 8b639f035603f72bb0427f621c00876185760da8 + sha256: 286b783369303403467a3715f6cba5eef6cb7e1f source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f category: main optional: false - name: geoapps-utils @@ -8330,12 +8330,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f hash: - sha256: 8b639f035603f72bb0427f621c00876185760da8 + sha256: 286b783369303403467a3715f6cba5eef6cb7e1f source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f category: main optional: false - name: geoh5py diff --git a/py-3.11.conda-lock.yml b/py-3.11.conda-lock.yml index 019d5ece..e514cd90 100644 --- a/py-3.11.conda-lock.yml +++ b/py-3.11.conda-lock.yml @@ -1388,7 +1388,7 @@ package: category: main optional: false - name: fonttools - version: 4.55.2 + version: 4.55.3 manager: conda platform: linux-64 dependencies: @@ -1399,14 +1399,14 @@ package: python: '>=3.11,<3.12.0a0' python_abi: 3.11.* unicodedata2: '>=15.1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.2-py311h2dc5d0c_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.3-py311h2dc5d0c_0.conda hash: - md5: 1546b0b7837803047bfe3930acfd8ccb - sha256: 9ee2ef7229d5107c74d14c2acdb9fc790f01af481ea30ba54ece5fe5163c976f + md5: 27bc755bed4972c51f4d2789f2cde56c + sha256: e08fab6ad4b8a065d4ed9744a1b18ccfcd0a9338f73e1cd06a9ca903f4b8085d category: main optional: false - name: fonttools - version: 4.55.2 + version: 4.55.3 manager: conda platform: win-64 dependencies: @@ -1418,10 +1418,10 @@ package: unicodedata2: '>=15.1.0' vc: '>=14.2,<15' vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.2-py311h5082efb_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/fonttools-4.55.3-py311h5082efb_0.conda hash: - md5: 278131b51e244f89357510688f551c44 - sha256: fb0a9f1dcccefbd9c829e9794ae3620ac4dcda6cdfb405a950faaca549b71d9b + md5: 4febde696add58b533b8b262960a0fd1 + sha256: a4402d5c7fb0710dae74a71b066275d85320a50750a65d2c3f188142d8e37a92 category: main optional: false - name: fqdn @@ -4293,11 +4293,11 @@ package: platform: linux-64 dependencies: markdown-it-py: '>=1.0.0,<4.0.0' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: - md5: 5387f2cfa28f8a3afa3368bb4ba201e8 - sha256: 5cedc99412278b37e9596f1f991d49f5a1663fe79767cf814a288134a1400ba9 + md5: af2060041d4f3250a7eb6ab3ec0e549b + sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 category: dev optional: true - name: mdit-py-plugins @@ -4306,11 +4306,11 @@ package: platform: win-64 dependencies: markdown-it-py: '>=1.0.0,<4.0.0' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_0.conda + python: '>=3.9' + url: https://conda.anaconda.org/conda-forge/noarch/mdit-py-plugins-0.4.2-pyhd8ed1ab_1.conda hash: - md5: 5387f2cfa28f8a3afa3368bb4ba201e8 - sha256: 5cedc99412278b37e9596f1f991d49f5a1663fe79767cf814a288134a1400ba9 + md5: af2060041d4f3250a7eb6ab3ec0e549b + sha256: c63ed79d9745109c0a70397713b0c07f06e7d3561abcb122cfc80a141ab3b449 category: dev optional: true - name: mdurl @@ -5515,14 +5515,14 @@ package: platform: linux-64 dependencies: latexcodec: '>=1.0.4' - python: '>=3.6' + python: '>=3.9' pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: - md5: 2099b86a7399c44c0c61cdb6de6915ba - sha256: 258fbf46050bbd51fbaa504116e56e8f3064156f0e08cad4e2fec97f5f29e6dc + md5: 556a52a96313364aa79990ed1337b9a5 + sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 category: dev optional: true - name: pybtex @@ -5531,14 +5531,14 @@ package: platform: win-64 dependencies: latexcodec: '>=1.0.4' - python: '>=3.6' + python: '>=3.9' pyyaml: '>=3.01' setuptools: '' six: '' - url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_2.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/pybtex-0.24.0-pyhd8ed1ab_3.conda hash: - md5: 2099b86a7399c44c0c61cdb6de6915ba - sha256: 258fbf46050bbd51fbaa504116e56e8f3064156f0e08cad4e2fec97f5f29e6dc + md5: 556a52a96313364aa79990ed1337b9a5 + sha256: c87615fcc7327c5dcc247f309731c98f7b9867a48e6265e9584af6dc8cd82345 category: dev optional: true - name: pybtex-docutils @@ -8340,12 +8340,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f hash: - sha256: 8b639f035603f72bb0427f621c00876185760da8 + sha256: 286b783369303403467a3715f6cba5eef6cb7e1f source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f category: main optional: false - name: geoapps-utils @@ -8357,12 +8357,12 @@ package: numpy: '>=1.26.0,<1.27.0' pydantic: '>=2.5.2,<3.0.0' scipy: '>=1.14.0,<1.15.0' - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f hash: - sha256: 8b639f035603f72bb0427f621c00876185760da8 + sha256: 286b783369303403467a3715f6cba5eef6cb7e1f source: type: url - url: git+https://github.com/MiraGeoscience/geoapps-utils.git@8b639f035603f72bb0427f621c00876185760da8 + url: git+https://github.com/MiraGeoscience/geoapps-utils.git@286b783369303403467a3715f6cba5eef6cb7e1f category: main optional: false - name: geoh5py