From cb7ba18cb542eea6effaedeef9a6f1a55dd52e59 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Tue, 23 Apr 2024 11:59:28 +0300 Subject: [PATCH 01/26] ci: Replace `black --check` with `black --diff` Makes it easier to debug failures. --- .github/workflows/conda_pip.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda_pip.yml b/.github/workflows/conda_pip.yml index ed67d642..0fdeb9e1 100644 --- a/.github/workflows/conda_pip.yml +++ b/.github/workflows/conda_pip.yml @@ -44,7 +44,7 @@ jobs: run: "pip install 'black'" - name: "Run linters" - run: "black --check ./" + run: "black --diff ./" run-tests: needs: "run-linters" From f74b63d1c3acaa59b44b4d1101b43bc595e114a6 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Tue, 23 Apr 2024 11:50:52 +0300 Subject: [PATCH 02/26] tools: Add `get_zarr_encoding()` and `get_netcdf_encoding()` --- dependencies/main.yml | 2 + environments/base-p3.10.yml | 2 + environments/base-p3.11.yml | 2 + environments/base-p3.12.yml | 2 + environments/base-p3.9.yml | 2 + environments/full-p3.10.yml | 2 + environments/full-p3.11.yml | 2 + environments/full-p3.12.yml | 2 + environments/full-p3.9.yml | 2 + environments/viz-p3.10.yml | 2 + environments/viz-p3.11.yml | 2 + environments/viz-p3.12.yml | 2 + environments/viz-p3.9.yml | 2 + locks/requirements-ci.txt | 1 + locks/requirements-full.txt | 1 + locks/requirements-viz.txt | 1 + locks/requirements.txt | 1 + poetry.lock | 60 +++++++++++++++- pyposeidon/tools.py | 132 ++++++++++++++++++++++++++++++++---- pyproject.toml | 6 +- tests/test_tools.py | 94 +++++++++++++++++++++++++ 21 files changed, 305 insertions(+), 17 deletions(-) diff --git a/dependencies/main.yml b/dependencies/main.yml index 184fa9b8..a284afc6 100644 --- a/dependencies/main.yml +++ b/dependencies/main.yml @@ -5,6 +5,7 @@ channels: - "gbrey" dependencies: + - "bottleneck" - "cartopy" - "cfgrib" - "colorlog" @@ -13,6 +14,7 @@ dependencies: - "geopandas" - "jinja2" - "netCDF4" + - "numcodecs" - "numpy" - "pandas<2" - "psutil" diff --git a/environments/base-p3.10.yml b/environments/base-p3.10.yml index ec264a47..63cd0d1e 100644 --- a/environments/base-p3.10.yml +++ b/environments/base-p3.10.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -17,6 +18,7 @@ dependencies: - jigsaw>=0.9.12 - jinja2 - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/base-p3.11.yml b/environments/base-p3.11.yml index 0413cbac..5841b918 100644 --- a/environments/base-p3.11.yml +++ b/environments/base-p3.11.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -17,6 +18,7 @@ dependencies: - jigsaw>=0.9.12 - jinja2 - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/base-p3.12.yml b/environments/base-p3.12.yml index 2b201c38..45b18ff3 100644 --- a/environments/base-p3.12.yml +++ b/environments/base-p3.12.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -17,6 +18,7 @@ dependencies: - jigsaw>=0.9.12 - jinja2 - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/base-p3.9.yml b/environments/base-p3.9.yml index e2339bc1..0ab462e3 100644 --- a/environments/base-p3.9.yml +++ b/environments/base-p3.9.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -17,6 +18,7 @@ dependencies: - jigsaw>=0.9.12 - jinja2 - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/full-p3.10.yml b/environments/full-p3.10.yml index 22beb23a..c759e7e0 100644 --- a/environments/full-p3.10.yml +++ b/environments/full-p3.10.yml @@ -3,6 +3,7 @@ channels: - gbrey dependencies: - black<24.0 + - bottleneck - bump2version - cartopy - cfgrib @@ -29,6 +30,7 @@ dependencies: - mkdocs-material - mkdocstrings - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/full-p3.11.yml b/environments/full-p3.11.yml index e93f1521..6599d426 100644 --- a/environments/full-p3.11.yml +++ b/environments/full-p3.11.yml @@ -3,6 +3,7 @@ channels: - gbrey dependencies: - black<24.0 + - bottleneck - bump2version - cartopy - cfgrib @@ -29,6 +30,7 @@ dependencies: - mkdocs-material - mkdocstrings - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/full-p3.12.yml b/environments/full-p3.12.yml index d9c38fce..d68f838b 100644 --- a/environments/full-p3.12.yml +++ b/environments/full-p3.12.yml @@ -3,6 +3,7 @@ channels: - gbrey dependencies: - black<24.0 + - bottleneck - bump2version - cartopy - cfgrib @@ -29,6 +30,7 @@ dependencies: - mkdocs-material - mkdocstrings - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/full-p3.9.yml b/environments/full-p3.9.yml index d8fd6f77..37a19e90 100644 --- a/environments/full-p3.9.yml +++ b/environments/full-p3.9.yml @@ -3,6 +3,7 @@ channels: - gbrey dependencies: - black<24.0 + - bottleneck - bump2version - cartopy - cfgrib @@ -29,6 +30,7 @@ dependencies: - mkdocs-material - mkdocstrings - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/viz-p3.10.yml b/environments/viz-p3.10.yml index 7cfa8ac6..2d43b84b 100644 --- a/environments/viz-p3.10.yml +++ b/environments/viz-p3.10.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -23,6 +24,7 @@ dependencies: - matplotlib>=3.3 - mayavi - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/viz-p3.11.yml b/environments/viz-p3.11.yml index 9993c5b4..cdb6f2b1 100644 --- a/environments/viz-p3.11.yml +++ b/environments/viz-p3.11.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -23,6 +24,7 @@ dependencies: - matplotlib>=3.3 - mayavi - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/viz-p3.12.yml b/environments/viz-p3.12.yml index b4a02551..efb6ea3d 100644 --- a/environments/viz-p3.12.yml +++ b/environments/viz-p3.12.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -23,6 +24,7 @@ dependencies: - matplotlib>=3.3 - mayavi - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/environments/viz-p3.9.yml b/environments/viz-p3.9.yml index 85cc33e8..2211fb26 100644 --- a/environments/viz-p3.9.yml +++ b/environments/viz-p3.9.yml @@ -2,6 +2,7 @@ channels: - conda-forge - gbrey dependencies: + - bottleneck - cartopy - cfgrib - colorlog @@ -23,6 +24,7 @@ dependencies: - matplotlib>=3.3 - mayavi - netCDF4 + - numcodecs - numpy - pandas<2 - pip diff --git a/locks/requirements-ci.txt b/locks/requirements-ci.txt index 22cec9b1..46c154f4 100644 --- a/locks/requirements-ci.txt +++ b/locks/requirements-ci.txt @@ -5,6 +5,7 @@ asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" black==24.3.0 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements-full.txt b/locks/requirements-full.txt index 2bcb9285..97bc820c 100644 --- a/locks/requirements-full.txt +++ b/locks/requirements-full.txt @@ -13,6 +13,7 @@ beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" black==24.3.0 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" bokeh==3.4.0 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements-viz.txt b/locks/requirements-viz.txt index 1f3af139..734ab644 100644 --- a/locks/requirements-viz.txt +++ b/locks/requirements-viz.txt @@ -11,6 +11,7 @@ attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" bokeh==3.4.0 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements.txt b/locks/requirements.txt index 0640aaf6..fcdfc618 100644 --- a/locks/requirements.txt +++ b/locks/requirements.txt @@ -4,6 +4,7 @@ anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" diff --git a/poetry.lock b/poetry.lock index 0d50f936..46f6037f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -307,6 +307,64 @@ PyYAML = ">=3.10" tornado = ">=6.2" xyzservices = ">=2021.09.1" +[[package]] +name = "bottleneck" +version = "1.3.8" +description = "Fast NumPy array functions written in C" +optional = false +python-versions = "*" +files = [ + {file = "Bottleneck-1.3.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:865c8ed5b798c0198b0b80553e09cc0d890c4f5feb3d81d31661517ca7819fa3"}, + {file = "Bottleneck-1.3.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d073a31e259d40b25e29dbba80f73abf38afe98fd730c79dad7edd9a0ad6cff5"}, + {file = "Bottleneck-1.3.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b806b277ab47495032822f55f43b8d336e4b7e73f8506ed34d3ea3da6d644abc"}, + {file = "Bottleneck-1.3.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:770b517609916adeb39d3b1a386a29bc316da03dd61e7ee6e8a38325b80cc327"}, + {file = "Bottleneck-1.3.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2948502b0394ee419945b55b092585222a505c61d41a874c741be49f2cac056f"}, + {file = "Bottleneck-1.3.8-cp310-cp310-win32.whl", hash = "sha256:271b6333522beb8aee32e640ba49a2064491d2c10317baa58a5996be3dd443e4"}, + {file = "Bottleneck-1.3.8-cp310-cp310-win_amd64.whl", hash = "sha256:d41000ea7ca196b5fd39d6fccd34bf0704c8831731cedd2da2dcae3c6ac49c42"}, + {file = "Bottleneck-1.3.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d0a7f454394cd3642498b6e077e70f4a6b9fd46a8eb908c83ac737fdc9f9a98c"}, + {file = "Bottleneck-1.3.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2c4ea8b9024dcb4e83b5c118a3c8faa863ace2ad572849da548a74a8ee4e8f2a"}, + {file = "Bottleneck-1.3.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f40724b6e965ff5b88b333d4a10097b1629e60c0db21bb3d08c24d7b1a904a16"}, + {file = "Bottleneck-1.3.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4bd7183b8dcca89d0e65abe4507c19667dd31dacfbcc8ed705bad642f26a46e1"}, + {file = "Bottleneck-1.3.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:20aa31a7d9d747c499ace1610a6e1f7aba6e3d4a9923e0312f6b4b6d68a59af3"}, + {file = "Bottleneck-1.3.8-cp311-cp311-win32.whl", hash = "sha256:350520105d9449e6565b3f0c4ce1f80a0b3e4d63695ebbf29db41f62e13f6461"}, + {file = "Bottleneck-1.3.8-cp311-cp311-win_amd64.whl", hash = "sha256:167a278902775defde7dfded6e98e3707dfe54971ffd9aec25c43bc74e4e381a"}, + {file = "Bottleneck-1.3.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c6e93ed45c6c83392f73d0333b310b38772df7eb78c120c1447245691bdedaf4"}, + {file = "Bottleneck-1.3.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3400f47dda0196b5af50b0b0678e33cc8c42e52e55ae0a63cdfed60725659bc"}, + {file = "Bottleneck-1.3.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fba5fd1805c71b2eeea50bea93d59be449c4af23ebd8da5f75fd74fd0331e314"}, + {file = "Bottleneck-1.3.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:60139c5c3d2a9c1454a04af5ee981a9f56548d27fa36f264069b149a6e9b01ed"}, + {file = "Bottleneck-1.3.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:99fab17fa26c811ccad63e208314726e718ae6605314329eca09641954550523"}, + {file = "Bottleneck-1.3.8-cp312-cp312-win32.whl", hash = "sha256:d3ae2bb5d4168912e438e377cc1301fa01df949ba59cd86317b3e00404fd4a97"}, + {file = "Bottleneck-1.3.8-cp312-cp312-win_amd64.whl", hash = "sha256:bcba1d5d5328c50f94852ab521fcb26f35d9e0ccd928d120d56455d1a5bb743f"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8d01fd5389d3160d54619119987ac24b020fa6810b7b398fff4945892237b3da"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ca25f0003ef65264942f6306d793e0f270ece8b406c5a293dfc7d878146e9f8"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7763cf1516fa388c3587d12182fc1bc1c8089eab1a0a1bf09761f4c41af73c"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:38837c022350e2a656453f0e448416b7108cf67baccf11d04a0b3b70a48074dd"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:84ca5e741fae1c1796744dbdd0d2c1789cb74dd79c12ea8ec5834f83430f8520"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-win32.whl", hash = "sha256:f4dfc22a3450227e692ef2ff4657639c33eec88ad04ee3ce29d1a23a4942da24"}, + {file = "Bottleneck-1.3.8-cp37-cp37m-win_amd64.whl", hash = "sha256:90b87eed152bbd760c4eb11473c2cf036abdb26e2f84caeb00787da74fb08c40"}, + {file = "Bottleneck-1.3.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:54a1b5d9d63b2d9f2955f8542eea26c418f97873e0abf86ca52beea0208c9306"}, + {file = "Bottleneck-1.3.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:019dd142d1e870388fb0b649213a0d8e569cce784326e183deba8f17826edd9f"}, + {file = "Bottleneck-1.3.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b5ed34a540eb7df59f45da659af9f792306637de1c69c95f020294f3b9fc4a8"}, + {file = "Bottleneck-1.3.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b69fcd4d818bcf9d53497d8accd0d5f852a447728baaa33b9b7168f8c4221d06"}, + {file = "Bottleneck-1.3.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:02616a830bd477f5ba51103396092da4b9d83cea2e88f5b8069e3f4f7b796704"}, + {file = "Bottleneck-1.3.8-cp38-cp38-win32.whl", hash = "sha256:93d359fb83eb3bdd6635ef6e64835c38ffdc211441fc190549f286e6af98b5f6"}, + {file = "Bottleneck-1.3.8-cp38-cp38-win_amd64.whl", hash = "sha256:51c8bb3dffeb72c14f0382b80de76eabac6726d316babbd48f7e4056267d7910"}, + {file = "Bottleneck-1.3.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:84453548b0f722c3be912ce3c6b685917fea842bf1252eeb63714a2c1fd1ffc9"}, + {file = "Bottleneck-1.3.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92700867504a213cafa9b8d9be529bd6e18dc83366b2ba00e86e80769b93f678"}, + {file = "Bottleneck-1.3.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fadfd2f3931fdff42f4b9867eb02ed7c662d01e6099ff6b347b6ced791450651"}, + {file = "Bottleneck-1.3.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:cfbc4a3a934b677bfbc37ac8757c4e1264a76262b774259bd3fa8a265dbd668b"}, + {file = "Bottleneck-1.3.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3c74c18f86a1ffac22280b005df8bb8a58505ac6663c4d6807f39873c17dc347"}, + {file = "Bottleneck-1.3.8-cp39-cp39-win32.whl", hash = "sha256:211f881159e8adb3a57df2263028ae6dc89ec4328bfd43f3421e507406c28654"}, + {file = "Bottleneck-1.3.8-cp39-cp39-win_amd64.whl", hash = "sha256:8615eeb75009ba7c0a112a5a6a5154ed3d61fd6b0879631778b3e42e2d9a6d65"}, + {file = "Bottleneck-1.3.8.tar.gz", hash = "sha256:6780d896969ba7f53c8995ba90c87c548beb3db435dc90c60b9a10ed1ab4d868"}, +] + +[package.dependencies] +numpy = "*" + +[package.extras] +doc = ["gitpython", "numpydoc", "sphinx"] + [[package]] name = "bump2version" version = "1.0.1" @@ -5679,4 +5737,4 @@ viz = ["geoviews", "holoviews", "hvplot", "ipykernel", "itkwidgets", "matplotlib [metadata] lock-version = "2.0" python-versions = ">=3.9, <4" -content-hash = "3b82313d68e68c02a7b42b03ee5678adaec056d90fb8bfc773ecc1858c069f9e" +content-hash = "ccefdc029726419ea610067524982095bb9082c3e4b47e08e3015930cce28787" diff --git a/pyposeidon/tools.py b/pyposeidon/tools.py index db02354f..3a4918cc 100644 --- a/pyposeidon/tools.py +++ b/pyposeidon/tools.py @@ -4,32 +4,34 @@ # Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the Licence for the specific language governing permissions and limitations under the Licence. +from __future__ import annotations + import itertools import logging import os -import shlex import pathlib import re -import subprocess -from collections.abc import Iterable -import time +import shlex import shutil +import subprocess import sys +import time +import typing as T +from collections import abc +from typing import TypeVar +import bottleneck as bn import cartopy.feature import colorlog import geopandas as gpd import jinja2 +import numcodecs import numpy as np +import numpy.typing as npt import psutil import rioxarray import xarray as xr -from typing import Iterator -from typing import Optional -from typing import Tuple -from typing import TypeVar -from typing import Union from pyposeidon.utils.get_value import get_value @@ -121,7 +123,7 @@ def setup_logging( - min_level: int = logging.DEBUG, color: bool = True, log_file: Optional[os.PathLike[str]] = "pyposeidon.log" + min_level: int = logging.DEBUG, color: bool = True, log_file: os.PathLike[str] | str | None = "pyposeidon.log" ) -> None: # The purpose is to have a function that will allow us to easily setup some pyposeidon logging # and that will allow us to also dynamically change the log levels @@ -360,7 +362,7 @@ def open_dataset(source: os.PathLike, **kwargs) -> xr.Dataset: def is_iterable(obj): - return isinstance(obj, Iterable) + return isinstance(obj, abc.Iterable) def cast_path_to_str(path: os.PathLike) -> str: @@ -436,12 +438,12 @@ def get_coastlines(resolution: str, category="physical", name="land") -> gpd.Geo def grouper( - iterable: Iterable[_T], + iterable: abc.Iterable[_T], n: int, *, incomplete: str = "fill", - fillvalue: Union[_U, None] = None, -) -> Iterator[tuple[Union[_T, _U], ...]]: + fillvalue: _U | None = None, +) -> abc.Iterator[tuple[_T | _U, ...]]: """Collect data into non-overlapping fixed-length chunks or blocks""" # grouper('ABCDEFG', 3, fillvalue='x') --> ABC DEF Gxx # grouper('ABCDEFG', 3, incomplete='strict') --> ABC DEF ValueError @@ -476,3 +478,105 @@ def resolve_schism_path(instance, kwargs) -> str: # ------------------------------------------------------------------------------ bin_path = "schism" return bin_path + + +class QuantizationParams(T.TypedDict): + scale_factor: float + add_offset: float + missing_value: int + dtype: npt.DTypeLike + + +def calc_quantization_params( + data_min: float, + data_max: float, + dtype: npt.DTypeLike, +) -> QuantizationParams: + bits = np.iinfo(dtype).bits + missing_value = (2**bits - 2) // 2 + scale_factor = (data_max - data_min) / (2**bits - 2) + add_offset = data_min + 2 ** (bits - 1) * scale_factor + return { + "scale_factor": scale_factor, + "add_offset": add_offset, + "dtype": dtype, + "missing_value": missing_value, + } + + +def quantize( + array: npt.NDArray[np.float_], + *, + add_offset: float, + scale_factor: float, + dtype: npt.DTypeLike, + missing_value: int, +) -> npt.NDArray[np.int_]: + nans = np.isnan(array) + quantized: npt.NDArray[np.int_] = np.round((array - add_offset) / scale_factor, 0) + quantized[nans] = missing_value + return quantized.astype(dtype) + + +def dequantize( + array: npt.NDArray[np.int_], + *, + add_offset: float, + scale_factor: float, + missing_value: int, + dtype: npt.DTypeLike, +) -> npt.NDArray[np.float_]: + array = bn.replace(array.astype(np.float_), missing_value, np.nan) + dequantized = (array * scale_factor) + add_offset + return dequantized + + +def update_or_add(outer: dict[str, T.Any], key: str, inner: abc.Mapping[str, T.Any]) -> None: + if key in outer: + outer[key].update(inner) + else: + outer[key] = inner + + +def get_zarr_encoding( + ds: xr.Dataset, + *, + compressor: numcodecs.Blosc | None = numcodecs.Zstd(level=3), + quantized_vars: abc.Mapping[str, npt.DTypeLike] | None = None, +) -> dict[str, dict[str, T.Any]]: + encoding = ds.encoding.copy() + for var in [str(var) for var in ds.variables]: + update_or_add(encoding, var, {"compressor": compressor}) + if quantized_vars: + for var, dtype in quantized_vars.items(): + params = calc_quantization_params( + data_min=float(ds[var].min()), + data_max=float(ds[var].max()), + dtype=dtype, + ) + update_or_add(encoding, var, params) + return encoding + + +def get_netcdf_encoding( + ds: xr.Dataset, + *, + quantized_vars: abc.Mapping[str, npt.DTypeLike] | None = None, + compression_level: int = 1, +) -> dict[str, dict[str, T.Any]]: + encoding = ds.encoding.copy() + for var in [str(var) for var in ds.variables]: + update_or_add(encoding, var, {"zlib": compression_level > 0, "complevel": compression_level}) + # Use chunks if they are defined + if ds[var].chunks: + chunksizes = [values[0] for values in ds[var].chunksizes.values()] + update_or_add(encoding, var, {"chunksizes": chunksizes}) + if quantized_vars: + for var, dtype in quantized_vars.items(): + params = calc_quantization_params( + data_min=float(ds[var].min()), + data_max=float(ds[var].max()), + dtype=dtype, + ) + update_or_add(encoding, var, params) + return encoding diff --git a/pyproject.toml b/pyproject.toml index adfd79ca..341b4339 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ [tool.poetry.dependencies] # python = ">=3.10, <3.11" python = ">=3.9, <4" -setuptools = "*" +bottleneck = "*" Cartopy = "*" cfgrib = "*" colorlog = "*" @@ -46,16 +46,19 @@ jinja2 = "*" joblib = "*" llvmlite = "*" netCDF4 = "*" +numcodecs = "*" numpy = ">=1.20, <2.0" pandas = "*" psutil = "*" pydap = ">=3.4.0" +pyogrio = "*" pyresample = "*" rasterio = "*" requests = "*" rioxarray = "*" scipy = "*" searvey = "*" +setuptools = "*" Shapely = ">=2" #Shapely = { url = "https://github.com/shapely/shapely/archive/refs/tags/1.7.1.zip" } tqdm = "*" @@ -72,7 +75,6 @@ mayavi = { version = "*", optional = true } numba = { version = ">=0.51", optional = true } spatialpandas = { version = "*", optional = true } vtk = {version = "*", optional = true} -pyogrio = "*" [tool.poetry.extras] viz = [ diff --git a/tests/test_tools.py b/tests/test_tools.py index bfb7a694..1812ba9c 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -1,8 +1,14 @@ +from __future__ import annotations + import logging import os import pathlib import shutil +import bottleneck as bn +import numcodecs.abc +import numpy as np +import pandas as pd import psutil import pytest import xarray as xr @@ -112,3 +118,91 @@ def test_setup_logging(): # we should be able to change the min_level tools.setup_logging(min_level=logging.INFO) assert logger.level == logging.INFO + + +def test_calc_quantization_params() -> None: + params = tools.calc_quantization_params(0, 10, dtype=np.int8) + assert pytest.approx(params["scale_factor"], abs=1e-3) == 0.039 + assert pytest.approx(params["add_offset"], abs=1e-3) == 5.039 + assert params["missing_value"] == 127 + assert params["dtype"] == np.int8 + # + params = tools.calc_quantization_params(0, 10, dtype=np.int16) + assert pytest.approx(params["scale_factor"], abs=1e-4) == 0.0001 + assert pytest.approx(params["add_offset"], abs=1e-4) == 5.0001 + assert params["missing_value"] == 32767 + assert params["dtype"] == np.int16 + # + params = tools.calc_quantization_params(0, 10, dtype=np.int32) + assert pytest.approx(params["scale_factor"], abs=1e-8) == 0 + assert pytest.approx(params["add_offset"], abs=1e-8) == 5 + assert params["missing_value"] == 2147483647 + assert params["dtype"] == np.int32 + + +def test_quantization_roundtrip_with_nans() -> None: + original = np.array([0, 4.9, np.nan, 10, np.nan]) + params = tools.calc_quantization_params(bn.nanmin(original), bn.nanmax(original), dtype=np.int8) + expected = np.array([-128, -4, 127, 126, 127], dtype=np.int8) + quantized = tools.quantize(original, **params) + assert np.allclose(expected, quantized) + dequantized = tools.dequantize(quantized, **params) + assert np.allclose(original, dequantized, atol=1e-1, equal_nan=True) + + +def test_zarr_encoding_compressor_default(): + ds = pd.DataFrame({"a": [1, 5, 10, np.nan]}).to_xarray() + default_compressor = numcodecs.Zstd(level=3) + encoding = tools.get_zarr_encoding(ds) + expected = { + "a": {"compressor": default_compressor}, + "index": {"compressor": default_compressor}, + } + assert encoding == expected + + +@pytest.mark.parametrize("compressor", [None, pytest.param(numcodecs.Blosc(cname="zstd", clevel=1), id="blosc")]) +def test_zarr_encoding_compressor_custom(compressor): + ds = pd.DataFrame({"a": [1, 5, 10, np.nan]}).to_xarray() + encoding = tools.get_zarr_encoding(ds, compressor=compressor) + expected = { + "a": {"compressor": compressor}, + "index": {"compressor": compressor}, + } + assert encoding == expected + + +def test_zarr_encoding_quantized_vars(): + ds = pd.DataFrame({"a": [1, 5, 10, np.nan]}).to_xarray() + default_compressor = numcodecs.Zstd(level=3) + encoding = tools.get_zarr_encoding(ds, quantized_vars={"a": np.int8}) + expected = { + "a": { + "compressor": default_compressor, + "scale_factor": 0.03543307086614173, + "add_offset": 5.535433070866142, + "dtype": np.int8, + "missing_value": 127, + }, + "index": {"compressor": default_compressor}, + } + assert encoding == expected + + +def test_netcdfr_encoding_quantized_vars(): + ds = pd.DataFrame({"a": [1, 5, 10, np.nan]}).to_xarray() + ds = ds.chunk(index=1) + encoding = tools.get_netcdf_encoding(ds, quantized_vars={"a": np.int8}) + expected = { + "a": { + "zlib": True, + "complevel": 1, + "chunksizes": [1], + "scale_factor": 0.03543307086614173, + "add_offset": 5.535433070866142, + "dtype": np.int8, + "missing_value": 127, + }, + "index": {"zlib": True, "complevel": 1}, + } + assert encoding == expected From 234d9f5434f66344cc8d98f88b58de4d9bab599f Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Thu, 2 May 2024 22:32:07 +0300 Subject: [PATCH 03/26] schism: Add `parse_station_in()` --- pyposeidon/schism.py | 5 +++++ tests/data/station.in | 3 +++ tests/test_schism.py | 12 ++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 tests/data/station.in diff --git a/pyposeidon/schism.py b/pyposeidon/schism.py index 6ce34faa..bda59300 100644 --- a/pyposeidon/schism.py +++ b/pyposeidon/schism.py @@ -1984,3 +1984,8 @@ def parse_staout(path: os.PathLike[str] | str, start: pd.Timestamp = pd.NaT): index = index.rename("time") df = df.set_index(index) return df + + +def parse_station_in(path: os.PathLike[str] | str = "station.in") -> pd.DataFrame: + df = pd.read_csv(path, skiprows=2, header=None, names=["lon", "lat", "layer"], sep="\s+") + return df diff --git a/tests/data/station.in b/tests/data/station.in new file mode 100644 index 00000000..ac872db4 --- /dev/null +++ b/tests/data/station.in @@ -0,0 +1,3 @@ +1 0 0 0 0 0 0 0 0 +1 +1 -21.9435235194 64.1473641012 0 diff --git a/tests/test_schism.py b/tests/test_schism.py index d1449154..24796cca 100644 --- a/tests/test_schism.py +++ b/tests/test_schism.py @@ -186,3 +186,15 @@ def test_parse_staout_with_start_date(): assert isinstance(df.index, pd.DatetimeIndex) assert df.index.name == "time" assert df.index[0] == pd.Timestamp("2017-10-01T00:02:30") # that's 150 seconds after midnight + + +def test_parse_station_in(): + path = DATA_DIR / "station.in" + df = pyposeidon.schism.parse_station_in(path) + assert isinstance(df, pd.DataFrame) + assert len(df) == 1 + assert len(df.columns) == 3 + assert df.columns.equals(pd.Index(["lon", "lat", "layer"])) + assert df.iloc[0].lon == -21.9435235194 + assert df.iloc[0].lat == 64.1473641012 + assert df.iloc[0].layer == 0 From a889f3bdc0395e9682de058c9d23d93278f002a3 Mon Sep 17 00:00:00 2001 From: brey Date: Wed, 26 Jun 2024 11:03:48 +0300 Subject: [PATCH 04/26] mesh: Add gradient as scale This is only available for gmsh for now. --- .gitignore | 1 + pyposeidon/mgmsh.py | 273 +++++++++++++++++++++++------------------- pyposeidon/mjigsaw.py | 18 +-- 3 files changed, 159 insertions(+), 133 deletions(-) diff --git a/.gitignore b/.gitignore index fdfcbd6f..07575acb 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ Tutorial/bgmesh Tutorial/gmsh Tutorial/jigsaw Tutorial/data +Tutorial/global # the local jigsaw folder pyPoseidon/tests/jigsaw/* diff --git a/pyposeidon/mgmsh.py b/pyposeidon/mgmsh.py index 37cfe0fb..117d2497 100644 --- a/pyposeidon/mgmsh.py +++ b/pyposeidon/mgmsh.py @@ -22,18 +22,11 @@ from pyposeidon.utils.spline import use_spline from pyposeidon.utils.global_bgmesh import make_bgmesh_global -from pyposeidon.utils.stereo import to_stereo, to_3d, to_lat_lon -from pyposeidon.utils.pos import to_st, to_global_pos, to_sq -from pyposeidon.utils.scale import scale_dem -from pyposeidon.utils.topology import ( - MakeTriangleFaces_periodic, - MakeQuadFaces, - tria_to_df, - tria_to_df_3d, - quads_to_df, -) +from pyposeidon.utils.stereo import to_lat_lon +from pyposeidon.utils.pos import to_global_pos import pyposeidon.dem as pdem from pyposeidon.tools import orient +from pyposeidon.dem_tools import compute_dem_gradient, make_bgmesh import multiprocessing @@ -262,29 +255,80 @@ def get(contours, **kwargs): gglobal = kwargs.get("gglobal", False) + dh1 = None + dh2 = None + if bgmesh == "auto": - try: - rpath = kwargs.get("rpath", ".") - if not os.path.exists(rpath + "/gmsh/"): # check if run folder exists - os.makedirs(rpath + "/gmsh/") + bg_dem = kwargs.get("bg_dem", True) + + if bg_dem: + try: + rpath = kwargs.get("rpath", ".") + + if not os.path.exists(rpath + "/gmsh/"): # check if run folder exists + os.makedirs(rpath + "/gmsh/") + + fpos = rpath + "/gmsh/bgmesh1.pos" - fpos = rpath + "/gmsh/bgmesh.pos" + if gglobal: + dem = pdem.Dem(**kwargs) + + nds, lms = make_bgmesh_global(contours, fpos, dem.Dataset, **kwargs) + dh1 = to_global_pos(nds, lms, fpos, **kwargs) + + else: + dh1 = make_bgmesh(contours, fpos, **kwargs) + + kwargs.update({"bgmesh1": fpos}) + + except OSError as e: + logger.warning("bgmesh1 failed... continuing without background mesh size") + dh1 = None + kwargs.update({"bgmesh1": None}) + else: + dh1 = None + + # same for dem gradient + bg_dem_grad = kwargs.get("bg_dem_grad", True) + + if bg_dem_grad: + try: + fpos = rpath + "/gmsh/bgmesh2.pos" + + slope_parameter = kwargs.get("slope_parameter", 20) + filter_quotient = kwargs.get("filter_quotient", 50) + min_edge_length = kwargs.get("min_edge_length", 0.3) + max_edge_length = kwargs.get("max_edge_length", 2) + min_elevation_cutoff = kwargs.get("min_elevation_cutoff", -50.0) - if gglobal: dem = pdem.Dem(**kwargs) + gdem = compute_dem_gradient( + dem.Dataset, + slope_parameter=slope_parameter, + filter_quotient=filter_quotient, + min_edge_length=min_edge_length, + max_edge_length=max_edge_length, + min_elevation_cutoff=-50.0, + ) - nds, lms = make_bgmesh_global(contours, fpos, dem.Dataset, **kwargs) - dh = to_global_pos(nds, lms, fpos, **kwargs) - else: - dh = make_bgmesh(contours, fpos, **kwargs) + kwargs.update({"var": "gradient"}) + + if gglobal: + nds, lms = make_bgmesh_global(contours, fpos, gdem, scale=False, **kwargs) + dh2 = to_global_pos(nds, lms, fpos, **kwargs) + else: + dh2 = make_bgmesh(contours, fpos, gdem, scale=False, **kwargs) - kwargs.update({"bgmesh": fpos}) + kwargs.update({"bgmesh2": fpos}) - except OSError as e: - logger.warning("bgmesh failed... continuing without background mesh size") - dh = None - kwargs.update({"bgmesh": None}) + except OSError as e: + logger.warning("bgmesh2 failed... continuing without background mesh size") + dh2 = None + kwargs.update({"bgmesh2": None}) + + else: + dh2 = None if use_bindings: logger.info("Using python bindings") @@ -303,11 +347,7 @@ def get(contours, **kwargs): else: gr = None - try: - bg = dh - except: - bg = None - + bg = [dh1, dh2] return gr, bg @@ -563,10 +603,10 @@ def to_geo(df, **kwargs): f.write(",".join(map(str, np.arange(ptag0, ptag + 1)))) f.write("};\n") - SizeMin = kwargs.get("SizeMin", 0.01) - SizeMax = kwargs.get("SizeMax", 0.1) - DistMin = kwargs.get("DistMin", 0.0) - DistMax = kwargs.get("DistMax", 0.05) + SizeMin = kwargs.get("SizeMin", 0.1) + SizeMax = kwargs.get("SizeMax", 0.5) + DistMin = kwargs.get("DistMin", 0.01) + DistMax = kwargs.get("DistMax", 0.2) f.write("Field[2] = Threshold;\n") f.write("Field[2].IField = 1;\n") @@ -575,23 +615,38 @@ def to_geo(df, **kwargs): f.write("Field[2].SizeMin = {};\n".format(SizeMin)) f.write("Field[2].SizeMax = {};\n".format(SizeMax)) + f.write("Field[2].StopAtDistMax = 1;\n") + bgmesh = kwargs.get("bgmesh", None) + if bgmesh == "auto": + bgmesh = None + bgmesh1 = kwargs.get("bgmesh1", None) + bgmesh2 = kwargs.get("bgmesh2", None) + + if any([bgmesh, bgmesh1, bgmesh2]): + + ib = 2 + vi = -1 - if bgmesh: - # get full path - bgmesh_path = os.path.abspath(bgmesh) + for bgm in [bgmesh, bgmesh1, bgmesh2]: - f.write('Merge "{}";\n'.format(bgmesh_path)) + if bgm: - f.write("Field[2].StopAtDistMax = 1;\n") + ib += 1 + vi += 1 + # get full path + bgmesh_path = os.path.abspath(bgm) - f.write("Field[3] = PostView;\n") - f.write("Field[3].ViewIndex = 0;\n") + f.write('Merge "{}";\n'.format(bgmesh_path)) - f.write("Field[4] = Min;\n") - f.write("Field[4].FieldsList = {2, 3};\n") + f.write(f"Field[{ib}] = PostView;\n") + f.write(f"Field[{ib}].ViewIndex = {vi};\n") - f.write("Background Field = 4;\n") + flist = np.arange(2, ib + 1) + f.write(f"Field[{ib+1}] = Min;\n") + f.write(f"Field[{ib+1}].FieldsList = {{{', '.join(map(str,flist))}}};\n") + + f.write(f"Background Field = {ib+1};\n") else: f.write("Background Field = 2;\n") @@ -599,6 +654,9 @@ def to_geo(df, **kwargs): MeshSizeMin = kwargs.get("MeshSizeMin", SizeMin) MeshSizeMax = kwargs.get("MeshSizeMax", SizeMax) + f.write(f"Mesh.MeshSizeMin= {MeshSizeMin};\n") + f.write(f"Mesh.MeshSizeMax= {MeshSizeMax};\n") + f.write("Mesh.MeshSizeFromPoints = 0;\n") f.write("Mesh.MeshSizeFromCurvature = 0;\n") f.write("Mesh.MeshSizeExtendFromBoundary = 0;\n") @@ -738,68 +796,6 @@ def outer_boundary(df, **kwargs): return rb0, land_lines, open_lines -def make_bgmesh(df, fpos, **kwargs): - lon_min = df.bounds.minx.min() - lon_max = df.bounds.maxx.max() - lat_min = df.bounds.miny.min() - lat_max = df.bounds.maxy.max() - - kwargs_ = kwargs.copy() - kwargs_.pop("lon_min", None) - kwargs_.pop("lon_max", None) - kwargs_.pop("lat_min", None) - kwargs_.pop("lat_max", None) - - dem = kwargs.get("dem_source", None) - - if not isinstance(dem, xr.Dataset): - logger.info("Reading DEM") - dem = pdem.Dem(lon_min=lon_min, lon_max=lon_max, lat_min=lat_min, lat_max=lat_max, **kwargs_) - dem = dem.Dataset - - res_min = kwargs.get("resolution_min", 0.01) - res_max = kwargs.get("resolution_max", 0.5) - - logger.info("Evaluating bgmesh") - - # scale bathymetry - try: - b = dem.adjusted.to_dataframe() - except: - b = dem.elevation.to_dataframe() - - b = b.reset_index() - - b.columns = ["latitude", "longitude", "z"] - - nodes = scale_dem(b, res_min, res_max, **kwargs) - - x = dem.longitude.values - y = dem.latitude.values - - quad = MakeQuadFaces(y.shape[0], x.shape[0]) - elems = pd.DataFrame(quad, columns=["a", "b", "c", "d"]) - df = quads_to_df(elems, nodes) - - dh = xr.Dataset( - { - "h": ( - ["longitude", "latitude"], - nodes.d2.values.flatten().reshape((x.shape[0], y.shape[0])), - ) - }, - coords={"longitude": ("longitude", x), "latitude": ("latitude", y)}, - ) - - logger.info("Saving bgmesh to {}".format(fpos)) - - to_sq(df, fpos) # save bgmesh - - kwargs.update({"bgmesh": fpos}) - - return dh - - def make_gmsh(df, **kwargs): import gmsh @@ -956,22 +952,37 @@ def make_gmsh(df, **kwargs): model.mesh.field.setNumber(2, "SizeMax", SizeMax) model.mesh.field.setNumber(2, "DistMin", DistMin) model.mesh.field.setNumber(2, "DistMax", DistMax) + model.mesh.field.setNumber(2, "StopAtDistMax", 1) # Set bgmesh bgmesh = kwargs.get("bgmesh", None) + if bgmesh == "auto": + bgmesh = None + bgmesh1 = kwargs.get("bgmesh1", None) + bgmesh2 = kwargs.get("bgmesh2", None) + + if any([bgmesh, bgmesh1, bgmesh2]): + + ib = 2 + vi = -1 + + for bgm in [bgmesh, bgmesh1, bgmesh2]: + + if bgm: - if bgmesh: - gmsh.merge(bgmesh) + ib += 1 + vi += 1 - model.mesh.field.setNumber(2, "StopAtDistMax", 1) + gmsh.merge(bgm) - model.mesh.field.add("PostView", 3) - model.mesh.field.setNumber(3, "ViewIndex", 0) + model.mesh.field.add("PostView", ib) + model.mesh.field.setNumber(ib, "ViewIndex", vi) - model.mesh.field.add("Min", 4) - model.mesh.field.setNumbers(4, "FieldsList", [2, 3]) + blist = np.arange(2, ib + 1).tolist() + model.mesh.field.add("Min", ib + 1) + model.mesh.field.setNumbers(ib + 1, "FieldsList", blist) - model.mesh.field.setAsBackgroundMesh(4) + model.mesh.field.setAsBackgroundMesh(ib + 1) else: model.mesh.field.setAsBackgroundMesh(2) @@ -980,8 +991,8 @@ def make_gmsh(df, **kwargs): gmsh.option.setNumber("Mesh.MeshSizeFromPoints", 0) gmsh.option.setNumber("Mesh.MeshSizeFromCurvature", 0) - MeshSizeMin = kwargs.get("MeshSizeMin", None) - MeshSizeMax = kwargs.get("MeshSizeMax", None) + MeshSizeMin = kwargs.get("MeshSizeMin", SizeMin) + MeshSizeMax = kwargs.get("MeshSizeMax", SizeMax) if MeshSizeMin is not None: gmsh.option.setNumber("Mesh.MeshSizeMin", MeshSizeMin) @@ -1111,19 +1122,33 @@ def make_gmsh_3d(df, **kwargs): # Set bgmesh bgmesh = kwargs.get("bgmesh", None) + if bgmesh == "auto": + bgmesh = None + bgmesh1 = kwargs.get("bgmesh1", None) + bgmesh2 = kwargs.get("bgmesh2", None) + + if any([bgmesh, bgmesh1, bgmesh2]): + + ib = 2 + vi = -1 + + for bgm in [bgmesh, bgmesh1, bgmesh2]: + + if bgm: - if bgmesh: - gmsh.merge(bgmesh) + ib += 1 + vi += 1 - model.mesh.field.setNumber(2, "StopAtDistMax", 1) + gmsh.merge(bgm) - model.mesh.field.add("PostView", 3) - model.mesh.field.setNumber(3, "ViewIndex", 0) + model.mesh.field.add("PostView", ib) + model.mesh.field.setNumber(ib, "ViewIndex", vi) - model.mesh.field.add("Min", 4) - model.mesh.field.setNumbers(4, "FieldsList", [2, 3]) + blist = np.arange(2, ib + 1).tolist() + model.mesh.field.add("Min", ib + 1) + model.mesh.field.setNumbers(ib + 1, "FieldsList", blist) - model.mesh.field.setAsBackgroundMesh(4) + model.mesh.field.setAsBackgroundMesh(ib + 1) else: model.mesh.field.setAsBackgroundMesh(2) diff --git a/pyposeidon/mjigsaw.py b/pyposeidon/mjigsaw.py index b86573d1..b19cda43 100644 --- a/pyposeidon/mjigsaw.py +++ b/pyposeidon/mjigsaw.py @@ -144,7 +144,7 @@ def to_geo(df, path=".", tag="jigsaw"): def parse_msh(fmsh): grid = pd.read_csv(fmsh, header=0, names=["data"], index_col=None, low_memory=False) - npoints = int(grid.loc[2].str.split("=")[0][1]) + npoints = int(grid.iloc[2].str.split("=").iloc[0][1]) nodes = pd.DataFrame( grid.loc[3 : 3 + npoints - 1, "data"].str.split(";").values.tolist(), @@ -152,14 +152,14 @@ def parse_msh(fmsh): ) ie = grid[grid.data.str.contains("EDGE")].index.values[0] - nedges = int(grid.loc[ie].str.split("=")[0][1]) + nedges = int(grid.iloc[ie].str.split("=").iloc[0][1]) edges = pd.DataFrame( grid.loc[ie + 1 : ie + nedges, "data"].str.split(";").values.tolist(), columns=["e1", "e2", "e3"], ) i3 = grid[grid.data.str.contains("TRIA")].index.values[0] - ntria = int(grid.loc[i3].str.split("=")[0][1]) + ntria = int(grid.iloc[i3].str.split("=").iloc[0][1]) tria = pd.DataFrame( grid.loc[i3 + 1 : i3 + ntria + 1, "data"].str.split(";").values.tolist(), columns=["a", "b", "c", "d"], @@ -445,12 +445,15 @@ def get(contours, **kwargs): bgmesh = "auto" kwargs.update({"bgmesh": "auto"}) + dh1 = None + dh2 = None + if bgmesh is not None: logger.info("Set background scale") if bgmesh.endswith(".nc"): try: - dh = xr.open_dataset(bgmesh) + dh1 = xr.open_dataset(bgmesh) if "longitude" in dh.coords: to_hfun_grid(dh, path + tag + "-hfun.msh") # write bgmesh file @@ -461,15 +464,12 @@ def get(contours, **kwargs): bgmesh = None elif bgmesh == "auto": - dh = make_bgmesh(contours, **kwargs) + dh1 = make_bgmesh(contours, **kwargs) elif bgmesh.endswith(".msh"): pass - try: - bg = dh - except: - bg = None + bg = [dh1, dh2] # GEO FILE to_geo(contours, path=path, tag=tag) From 96b5879950f4ce9767ac0b2bc922d76a7e8532f1 Mon Sep 17 00:00:00 2001 From: brey Date: Wed, 26 Jun 2024 11:07:26 +0300 Subject: [PATCH 05/26] dem: Add tiles option This resolves #104. Also is the first step in addressing #87 . --- pyposeidon/dem.py | 2 +- pyposeidon/{utils/fix.py => dem_tools.py} | 284 +++++++++++++++++++++- pyposeidon/utils/bfs.py | 81 ------ pyposeidon/utils/global_bgmesh.py | 108 ++++---- pyposeidon/utils/hfun.py | 2 +- pyposeidon/utils/scale.py | 32 --- tests/test_dem_tile.py | 39 +++ 7 files changed, 367 insertions(+), 181 deletions(-) rename pyposeidon/{utils/fix.py => dem_tools.py} (71%) delete mode 100644 pyposeidon/utils/bfs.py delete mode 100644 pyposeidon/utils/scale.py create mode 100644 tests/test_dem_tile.py diff --git a/pyposeidon/dem.py b/pyposeidon/dem.py index 683febc1..1273e8b9 100644 --- a/pyposeidon/dem.py +++ b/pyposeidon/dem.py @@ -21,7 +21,7 @@ import pyresample import xarray as xr -from pyposeidon.utils.fix import fix_dem, fix, resample +from pyposeidon.dem_tools import fix_dem, fix, resample from pyposeidon import tools NCORES = max(1, multiprocessing.cpu_count() - 1) diff --git a/pyposeidon/utils/fix.py b/pyposeidon/dem_tools.py similarity index 71% rename from pyposeidon/utils/fix.py rename to pyposeidon/dem_tools.py index f781f2e9..66c6541f 100644 --- a/pyposeidon/utils/fix.py +++ b/pyposeidon/dem_tools.py @@ -22,13 +22,25 @@ from tqdm.auto import tqdm from pyposeidon.utils.coastfix import simplify +from pyposeidon.utils.topology import ( + MakeTriangleFaces_periodic, + MakeQuadFaces, + tria_to_df, + tria_to_df_3d, + quads_to_df, +) +from pyposeidon.utils.pos import to_st, to_global_pos, to_sq +import pyposeidon.dem as pdem + # logging setup import logging logger = logging.getLogger(__name__) -def get_tiles(data, chunks=None): +def get_tiles(data, **kwargs): + + chunks = kwargs.get("chunks", None) # chuck if chunks: @@ -39,7 +51,9 @@ def get_tiles(data, chunks=None): ilons = data.elevation.chunk("auto").chunks[1] if len(ilons) == 1: - ilons = (int(ilons[0] / 2), int(ilons[0] / 2)) + half = int(ilons[0] / 2) + rest = ilons[0] - half + ilons = (half, rest) idx = [sum(ilons[:i]) for i in range(len(ilons) + 1)] jdx = [sum(ilats[:i]) for i in range(len(ilats) + 1)] @@ -52,9 +66,9 @@ def get_tiles(data, chunks=None): return perms -def fix_dem(dem, coastline, buffer=0.0, **kwargs): +def fix_dem(dem, coastline, dbuffer=0.0, **kwargs): - perms = get_tiles(dem) + perms = get_tiles(dem, **kwargs) i = 0 check = True @@ -70,10 +84,10 @@ def fix_dem(dem, coastline, buffer=0.0, **kwargs): lat2 = dem.latitude.data[j1:j2][-1] # buffer lat/lon - blon1 = lon1 - buffer - blon2 = lon2 + buffer - blat1 = lat1 - buffer - blat2 = lat2 + buffer + blon1 = lon1 - dbuffer + blon2 = lon2 + dbuffer + blat1 = lat1 - dbuffer + blat2 = lat2 + dbuffer # de = dem.sel(lon=slice(blon1,blon2)).sel(lat=slice(blat1,blat2)) de = dem_range(dem, blon1, blon2, blat1, blat2) @@ -82,7 +96,11 @@ def fix_dem(dem, coastline, buffer=0.0, **kwargs): ide = de_.sel(latitude=slice(lat1, lat2)).sel(longitude=slice(lon1, lon2)) - ide.to_netcdf("./fixtmp/ide{:03d}.nc".format(i)) + # set enconding + comp = dict(zlib=True, complevel=1, dtype="float32") + encoding = {var: comp for var in ide.data_vars} + + ide.to_netcdf("./fixtmp/ide{:03d}.nc".format(i), encoding=encoding) i += 1 check = check and check_ @@ -504,8 +522,6 @@ def resample(dem, xw, yw, var=None, wet=True, flag=None, reset_flag=False, funct # Define points with positive bathymetry x, y = np.meshgrid(dem.longitude, dem.latitude) - print(f"reset_flag={reset_flag}") - if reset_flag: flag = 0 @@ -615,6 +631,252 @@ def dem_range(data, lon_min, lon_max, lat_min, lat_max): c = np.sign(np.mean([lon_min, lon_max])) dem["longitude"] = dem["longitude"] + c * 360.0 + if lon_0 == 0: + + g1 = data.isel(longitude=slice(-4, data.longitude.size - 1), latitude=slice(lat_0, lat_1)) + g1 = g1.assign_coords({"longitude": g1.longitude.values - 360.0}) + + dem = xr.concat([g1, dem], dim="longitude") + + if lon_1 == data.longitude.size: + + g3 = data.isel(longitude=slice(1, 4), latitude=slice(lat_0, lat_1)) + g3 = g3.assign_coords({"longitude": g3.longitude.values + 360.0}) + + dem = xr.concat([dem, g3], dim="longitude") + dem_data = xr.merge([dem]) return dem_data + + +def get_dem_gradient( + dem, + slope_parameter=20, + filter_quotient=50, + min_edge_length=None, + max_edge_length=None, + min_elevation_cutoff=-50.0, +): + try: + dd = dem.adjusted.data + except: + dd = dem.elevation.data + + dd[dd >= min_elevation_cutoff] = min_elevation_cutoff + + dx, dy = np.gradient(dem.longitude)[0], np.gradient(dem.latitude)[0] + + mean_latitude = np.mean(dem.latitude.data) + + # convert to meters + meters_per_degree = ( + 111132.92 + - 559.82 * np.cos(2 * mean_latitude) + + 1.175 * np.cos(4 * mean_latitude) + - 0.0023 * np.cos(6 * mean_latitude) + ) + dy *= meters_per_degree + dx *= meters_per_degree + + by, bx = _earth_gradient(dd, dy, dx) # get slope in x and y directions + + bs = np.sqrt(bx**2 + by**2) # get overall slope + + eps = 1e-10 # small number to approximate derivative + dp = np.clip(dd, None, -1) + gvalues = (2 * np.pi / slope_parameter) * np.abs(dp) / (bs + eps) + gvalues /= meters_per_degree + + if max_edge_length: + gvalues[gvalues > max_edge_length] = max_edge_length + + if min_edge_length: + gvalues[gvalues < min_edge_length] = min_edge_length + + return gvalues + + +def _earth_gradient(F, dx, dy): + """ + earth_gradient(F,HX,HY), where F is 2-D, uses the spacing + specified by HX and HY. HX and HY can either be scalars to specify + the spacing between coordinates or vectors to specify the + coordinates of the points. If HX and HY are vectors, their length + must match the corresponding dimension of F. + """ + Fy, Fx = np.zeros(F.shape), np.zeros(F.shape) + + # Forward diferences on edges + Fx[:, 0] = (F[:, 1] - F[:, 0]) / dx + Fx[:, -1] = (F[:, -1] - F[:, -2]) / dx + Fy[0, :] = (F[1, :] - F[0, :]) / dy + Fy[-1, :] = (F[-1, :] - F[-2, :]) / dy + + # Central Differences on interior + Fx[:, 1:-1] = (F[:, 2:] - F[:, :-2]) / (2 * dx) + Fy[1:-1, :] = (F[2:, :] - F[:-2, :]) / (2 * dy) + + return Fy, Fx + + +def compute_dem_gradient( + dem, + slope_parameter=20, + filter_quotient=50, + min_edge_length=None, + max_edge_length=None, + min_elevation_cutoff=-50.0, + **kwargs, +): + + i = 0 + + if not os.path.exists("./fixtmp/"): + os.makedirs("./fixtmp/") + + perms = get_tiles(dem, **kwargs) + + for (i1, i2), (j1, j2) in tqdm(perms, total=len(perms)): + + lon1 = dem.longitude.data[i1:i2][0] + lon2 = dem.longitude.data[i1:i2][-1] + lat1 = dem.latitude.data[j1:j2][0] + lat2 = dem.latitude.data[j1:j2][-1] + + de = dem_range(dem, lon1, lon2, lat1, lat2) + + # de_, check_, flag = fix(de, coastline) + + gvalues = get_dem_gradient( + de, + slope_parameter=slope_parameter, + filter_quotient=filter_quotient, + min_edge_length=min_edge_length, + max_edge_length=max_edge_length, + min_elevation_cutoff=min_elevation_cutoff, + ) + + de = de.assign({"gradient": (["latitude", "longitude"], gvalues)}) + + ide = de.sel(latitude=slice(lat1, lat2)).sel(longitude=slice(lon1, lon2)) + + # set enconding + comp = dict(zlib=True, complevel=1, dtype="float32") + encoding = {var: comp for var in ide.data_vars} + + ide.to_netcdf("./fixtmp/ide{:03d}.nc".format(i), encoding=encoding) + i += 1 + + # check = check and check_ + + ifiles = glob("./fixtmp/ide*") + + fdem = xr.open_mfdataset(ifiles) + + ##cleanup + shutil.rmtree("./fixtmp") + + return fdem + + +def scale_dem(b, res_min, res_max, **kwargs): + # b.columns = ["z"] + + b.loc[b.z >= -10, "z"] = -1.0e-4 # normalize to only negative values + + b.z = np.sqrt(-b.z) / 0.5 # scale + + # adjust scale + + bg = b.z.values + + a2 = (bg - bg.min()) / (bg.max() - bg.min()) + + d2 = res_min + a2 * (res_max - res_min) + + b["d2"] = d2 + + nodes = b.reset_index(drop=True) + + nodes["z"] = 0 + + # subspace = kwargs.get('subspace', None) + + # if subspace is not None: + # mask = ... + # hfun[mask] = + + return nodes + + +def make_bgmesh(df, fpos, dem=None, scale=True, **kwargs): + lon_min = df.bounds.minx.min() + lon_max = df.bounds.maxx.max() + lat_min = df.bounds.miny.min() + lat_max = df.bounds.maxy.max() + + kwargs_ = kwargs.copy() + kwargs_.pop("lon_min", None) + kwargs_.pop("lon_max", None) + kwargs_.pop("lat_min", None) + kwargs_.pop("lat_max", None) + + if not dem: + dem = kwargs.get("dem_source", None) + + if not isinstance(dem, xr.Dataset): + logger.info("Reading DEM") + dem = pdem.Dem(lon_min=lon_min, lon_max=lon_max, lat_min=lat_min, lat_max=lat_max, **kwargs_) + dem = dem.Dataset + + res_min = kwargs.get("resolution_min", 0.01) + res_max = kwargs.get("resolution_max", 0.5) + + logger.info("Evaluating bgmesh") + + var = kwargs.get("var", "adjusted") + logger.info(f"using '{var}' variable data") + + # scale bathymetry + try: + b = dem[var].to_dataframe() + except: + b = dem.elevation.to_dataframe() + logger.info(f"variable {var} not present switching to 'elevation' data") + + b = b.reset_index() + + dims = b.columns[:2] + + b.columns = [dims[0], dims[1], "z"] + + if scale: + nodes = scale_dem(b, res_min, res_max, **kwargs) + else: + nodes = b + nodes["d2"] = b.z.values + nodes["z"] = 0 + + x = dem[dims[0]].values + y = dem[dims[1]].values + + quad = MakeQuadFaces(x.shape[0], y.shape[0]) + elems = pd.DataFrame(quad, columns=["a", "b", "c", "d"]) + df = quads_to_df(elems, nodes) + + dh = xr.Dataset( + { + "h": ( + [dims[0], dims[1]], + nodes.d2.values.flatten().reshape((x.shape[0], y.shape[0])), + ) + }, + coords={dims[0]: (dims[0], x), dims[1]: (dims[1], y)}, + ) + + logger.info("Saving bgmesh to {}".format(fpos)) + + to_sq(df, fpos) # save bgmesh + + return dh diff --git a/pyposeidon/utils/bfs.py b/pyposeidon/utils/bfs.py deleted file mode 100644 index 5f60412a..00000000 --- a/pyposeidon/utils/bfs.py +++ /dev/null @@ -1,81 +0,0 @@ -""" -Utility functions - -""" - -# Copyright 2018 European Union -# This file is part of pyposeidon. -# Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"). -# Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the Licence for the specific language governing permissions and limitations under the Licence. - - -from collections import deque - - -class Solution(object): - def append_if(self, queue, x, y, island_counter): - b = [[0, 1], [1, 0]], [[0, 1], [-1, 0]], [[0, -1], [1, 0]], [[0, -1], [-1, 0]] - - """Append to the queue only if in bounds of the grid and the cell value is 1.""" - if 0 <= x < len(self.grid) and 0 <= y < len(self.grid[0]): - if self.grid[x][y] == "1": - # queue.append((x, y)) - for [i, j], [k, l] in b: - try: - if self.grid[x + i][y + j] in [ - "1", - island_counter, - ] and self.grid[ - x + k - ][y + l] in [ - "1", - island_counter, - ]: - queue.append((x, y)) - break - except: - pass - - def mark_neighbors(self, row, col, island_counter): - """Mark all the cells in the current island with value = 2. Breadth-first search.""" - queue = deque() - - queue.append((row, col)) - while queue: - x, y = queue.pop() - self.grid[x][y] = island_counter - - self.append_if(queue, x - 1, y, island_counter) - self.append_if(queue, x, y - 1, island_counter) - self.append_if(queue, x + 1, y, island_counter) - self.append_if(queue, x, y + 1, island_counter) - self.append_if(queue, x - 1, y - 1, island_counter) - self.append_if(queue, x + 1, y - 1, island_counter) - self.append_if(queue, x + 1, y + 1, island_counter) - self.append_if(queue, x - 1, y + 1, island_counter) - - def numIslands(self, grid): - """ - :type grid: List[List[str]] - :rtype: int - """ - - if not grid or len(grid) == 0 or len(grid[0]) == 0: - return 0 - - self.grid = grid - - row_length = len(grid) - col_length = len(grid[0]) - - island_counter = 0 - for row in range(row_length): - for col in range(col_length): - if self.grid[row][col] == "1": - # found an island - island_counter += 1 - - self.mark_neighbors(row, col, island_counter) - - return island_counter diff --git a/pyposeidon/utils/global_bgmesh.py b/pyposeidon/utils/global_bgmesh.py index f5467df5..e3bfa14f 100644 --- a/pyposeidon/utils/global_bgmesh.py +++ b/pyposeidon/utils/global_bgmesh.py @@ -7,9 +7,8 @@ import pyposeidon.boundary as pb from pyposeidon.utils.stereo import to_3d, to_lat_lon, stereo_to_3d -from pyposeidon.utils.pos import to_sq, to_st +from pyposeidon.utils.pos import to_sq from pyposeidon.utils.hfun import to_hfun_mesh, to_hfun_grid -from pyposeidon.utils.scale import scale_dem from pyposeidon.utils.topology import ( MakeQuadFaces, quads_to_df, @@ -18,13 +17,13 @@ ) import pyposeidon.dem as pdem import pyposeidon.mesh as pmesh -from pyposeidon.utils.fix import dem_range, resample +from pyposeidon.dem_tools import dem_range, resample, get_tiles, scale_dem import logging logger = logging.getLogger(__name__) -def make_bgmesh_global(dfb, fpos, dem, **kwargs): +def make_bgmesh_global(dfb, fpos, dem, scale=True, **kwargs): mesh_generator = kwargs.get("mesh_generator", None) bk = dfb.copy() @@ -49,10 +48,10 @@ def make_bgmesh_global(dfb, fpos, dem, **kwargs): ci = 4 * R**2 / (ui**2 + vi**2 + 4 * R**2) # set weight field - scale = bgm_res / ci.flatten() + scaled = bgm_res / ci.flatten() # save as bgmesh - nodes = pd.DataFrame({"longitude": ui.flatten(), "latitude": vi.flatten(), "z": 0, "d2": scale}) + nodes = pd.DataFrame({"longitude": ui.flatten(), "latitude": vi.flatten(), "z": 0, "d2": scaled}) # tesselation quad = MakeQuadFaces(npu, npu) @@ -102,28 +101,9 @@ def make_bgmesh_global(dfb, fpos, dem, **kwargs): m["x"].data = clon m["y"].data = clat - # Select DEM - # try: - # dm = dem.adjusted.to_dataframe() - # except: - # dm = dem.elevation.to_dataframe() + m["depth"][:] = np.nan # reset depth - # lon = dem.longitude.values - # lat = dem.latitude.values - - # X, Y = np.meshgrid(lon, lat) - # Stereo -> lat/lon - # clon, clat = to_lat_lon(x0, y0) - - # resample bathymetry - # gdem = dm.values.flatten() - - # orig = pyresample.geometry.SwathDefinition(lons=X.flatten(), lats=Y.flatten()) # original bathymetry points - # targ = pyresample.geometry.SwathDefinition(lons=clon, lats=clat) # wet points - - # bw = pyresample.kd_tree.resample_nearest(orig, gdem, targ, radius_of_influence=50000, fill_value=0) - - dem_on_mesh(m, dem) + dem_on_mesh(m, dem, **kwargs) bw = m.depth.data @@ -133,7 +113,12 @@ def make_bgmesh_global(dfb, fpos, dem, **kwargs): res_min = kwargs.get("resolution_min", 0.01) res_max = kwargs.get("resolution_max", 0.5) - nodes = scale_dem(bz, res_min, res_max, **kwargs) + if scale: + nodes = scale_dem(bz, res_min, res_max, **kwargs) + else: + nodes = bz + nodes["d2"] = bz.z.values + nodes["z"] = 0 nodes["u"] = x0 nodes["v"] = y0 @@ -145,7 +130,9 @@ def make_bgmesh_global(dfb, fpos, dem, **kwargs): return nodes, elems -def fillv(dem, perms, m, buffer=0.0): +def fillv(dem, perms, m, **kwargs): + + gbuffer = kwargs.get("gbuffer", 5) for (i1, i2), (j1, j2) in tqdm(perms, total=len(perms)): @@ -155,46 +142,57 @@ def fillv(dem, perms, m, buffer=0.0): lat2 = dem.latitude.data[j1:j2][-1] # buffer lat/lon - blon1 = lon1 - buffer - blon2 = lon2 + buffer - blat1 = lat1 - buffer - blat2 = lat2 + buffer + blon1 = lon1 - gbuffer + blon2 = lon2 + gbuffer + blat1 = lat1 - gbuffer + blat2 = lat2 + gbuffer - # de = dem.sel(lon=slice(blon1,blon2)).sel(lat=slice(blat1,blat2)) - de = dem_range(dem, blon1, blon2, blat1, blat2) + de = dem_range(dem, lon1, lon2, lat1, lat2) # subset mesh - indices_of_nodes_in_bbox = np.where( - (m.y >= lat1 - buffer / 2) - & (m.y <= lat2 + buffer / 2) - & (m.x >= lon1 - buffer / 2) - & (m.x <= lon2 + buffer / 2) - )[0] + indices_of_nodes_in_bbox = np.where((m.y >= blat1) & (m.y <= blat2) & (m.x >= blon1) & (m.x <= blon2))[0] bm = m.isel(nSCHISM_hgrid_node=indices_of_nodes_in_bbox) ids = np.argwhere(np.isnan(bm.depth.values)).flatten() - grid_x, grid_y = bm.x.data, bm.y.data + xw, yw = bm.x.data[ids], bm.y.data[ids] + + var = kwargs.get("var", "adjusted") + logger.info(f"using '{var}' variable data") + + if var not in dem.data_vars: + var = "elevation" + logger.info(f"variable {var} not present switching to 'elevation' data") + + function = kwargs.get("function", "nearest") + logger.info(f"using {function} resample function") + + # Define points with positive bathymetry + x, y = np.meshgrid(de.longitude, de.latitude) + + # fill the nan, if present, with values in order to compute values there if needed. + # de[var].data[np.isnan(de[var].values)] = 9999.0 - bd = resample(de, grid_x, grid_y, var="adjusted", wet=True, flag=0, function="gauss") + orig = pyresample.geometry.SwathDefinition(lons=x, lats=y) # original bathymetry points + targ = pyresample.geometry.SwathDefinition(lons=xw, lats=yw) # wet points - m["depth"].loc[dict(nSCHISM_hgrid_node=indices_of_nodes_in_bbox)] = -bd + mdem = de[var].values.astype(float) + if function == "nearest": + bw = pyresample.kd_tree.resample_nearest(orig, mdem, targ, radius_of_influence=100000, fill_value=np.nan) -def dem_on_mesh(mesh, dem): + elif function == "gauss": + bw = pyresample.kd_tree.resample_gauss( + orig, mdem, targ, radius_of_influence=500000, neighbours=10, sigmas=250000, fill_value=np.nan + ) - ilats = dem.elevation.chunk("auto").chunks[0] - ilons = dem.elevation.chunk("auto").chunks[1] + m["depth"].loc[dict(nSCHISM_hgrid_node=indices_of_nodes_in_bbox[ids])] = bw - if len(ilons) == 1: - ilons = (int(ilons[0] / 2), int(ilons[0] / 2)) - idx = [sum(ilons[:i]) for i in range(len(ilons) + 1)] - jdx = [sum(ilats[:i]) for i in range(len(ilats) + 1)] +def dem_on_mesh(mesh, dem, **kwargs): - blon = list(zip(idx[:-1], idx[1:])) - blat = list(zip(jdx[:-1], jdx[1:])) + logger.info("resample dem on mesh") - perms = [(x, y) for x in blon for y in blat] + perms = get_tiles(dem, **kwargs) - fillv(dem, perms, mesh, buffer=5) + fillv(dem, perms, mesh, **kwargs) diff --git a/pyposeidon/utils/hfun.py b/pyposeidon/utils/hfun.py index a10fb41d..4eb60810 100644 --- a/pyposeidon/utils/hfun.py +++ b/pyposeidon/utils/hfun.py @@ -6,7 +6,7 @@ from .limgrad import limgrad2 from pyposeidon.utils.stereo import to_lat_lon, to_stereo from pyposeidon.utils.topology import MakeTriangleFaces, MakeTriangleFaces_periodic -from pyposeidon.utils.scale import scale_dem +from pyposeidon.dem_tools import scale_dem import pyposeidon import math diff --git a/pyposeidon/utils/scale.py b/pyposeidon/utils/scale.py deleted file mode 100644 index 7222ee35..00000000 --- a/pyposeidon/utils/scale.py +++ /dev/null @@ -1,32 +0,0 @@ -import numpy as np -import xarray as xr - - -def scale_dem(b, res_min, res_max, **kwargs): - # b.columns = ["z"] - - b.loc[b.z >= -10, "z"] = -1.0e-4 # normalize to only negative values - - b.z = np.sqrt(-b.z) / 0.5 # scale - - # adjust scale - - bg = b.z.values - - a2 = (bg - bg.min()) / (bg.max() - bg.min()) - - d2 = res_min + a2 * (res_max - res_min) - - b["d2"] = d2 - - nodes = b.reset_index(drop=True) - - nodes["z"] = 0 - - # subspace = kwargs.get('subspace', None) - - # if subspace is not None: - # mask = ... - # hfun[mask] = - - return nodes diff --git a/tests/test_dem_tile.py b/tests/test_dem_tile.py new file mode 100644 index 00000000..50470511 --- /dev/null +++ b/tests/test_dem_tile.py @@ -0,0 +1,39 @@ +import pyposeidon.dem as pdem +import pytest +import geopandas as gp +import cartopy.feature as cf + + +from . import DATA_DIR + +COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() + +DEM_SOURCES = pytest.mark.parametrize( + "dem_source", + [ + pytest.param(DATA_DIR / "dem.nc", id="local netcdf"), + ], +) + + +@pytest.fixture(scope="session") +def coasts(): + # coast = gp.read_file(COAST_FILE).drop("FID", axis=1) + cr = "h" + coast = cf.NaturalEarthFeature( + category="physical", name="land", scale="{}m".format({"l": 110, "i": 50, "h": 10}[cr]) + ) + coast = gp.GeoDataFrame(geometry=[x for x in coast.geometries()]) + return coast + + +@pytest.mark.slow +@DEM_SOURCES +def test_dem_adjust(coasts, dem_source): + # Just elevation + df1 = pdem.Dem(dem_source=dem_source) # get dem + check1 = df1.adjust(coasts, tiles=False) + df2 = pdem.Dem(dem_source=dem_source) + check2 = df2.adjust(coasts, tiles=True) + + assert check1 == check2 & df1.Dataset.equals(df2.Dataset) From 81e4d6881276e832c9145ed058b2e33d2545e13b Mon Sep 17 00:00:00 2001 From: brey Date: Thu, 27 Jun 2024 11:36:52 +0300 Subject: [PATCH 06/26] tutorial: expand some Notebooks --- Tutorial/GLOBAL.ipynb | 149 +++++++++++++++++++++++------------------- Tutorial/MESH.ipynb | 37 ++++++++--- 2 files changed, 111 insertions(+), 75 deletions(-) diff --git a/Tutorial/GLOBAL.ipynb b/Tutorial/GLOBAL.ipynb index 51bead44..e544ab31 100644 --- a/Tutorial/GLOBAL.ipynb +++ b/Tutorial/GLOBAL.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "markdown", - "id": "2f13f15e", + "id": "74a966f1", "metadata": {}, "source": [ "# Global Mesh" @@ -10,7 +10,7 @@ }, { "cell_type": "markdown", - "id": "c2f5b950", + "id": "8113be08", "metadata": {}, "source": [ "This Notebook presents the workflow for developing global meshes. \n", @@ -24,7 +24,7 @@ { "cell_type": "code", "execution_count": null, - "id": "458eb029", + "id": "84e5ce80", "metadata": {}, "outputs": [], "source": [ @@ -36,7 +36,7 @@ { "cell_type": "code", "execution_count": null, - "id": "32c20feb", + "id": "b3f22a55", "metadata": {}, "outputs": [], "source": [ @@ -48,7 +48,7 @@ { "cell_type": "code", "execution_count": null, - "id": "ca3f40ea", + "id": "990f13ba", "metadata": {}, "outputs": [], "source": [ @@ -57,7 +57,7 @@ }, { "cell_type": "markdown", - "id": "14b7d3b1", + "id": "b32e9527", "metadata": {}, "source": [ "### Graphics" @@ -66,7 +66,7 @@ { "cell_type": "code", "execution_count": null, - "id": "163aa993", + "id": "c107f799", "metadata": {}, "outputs": [], "source": [ @@ -76,7 +76,7 @@ { "cell_type": "code", "execution_count": null, - "id": "d6be2261", + "id": "30890bf0", "metadata": {}, "outputs": [], "source": [ @@ -86,7 +86,7 @@ { "cell_type": "code", "execution_count": null, - "id": "d36986d1", + "id": "1596278c", "metadata": {}, "outputs": [], "source": [ @@ -96,7 +96,7 @@ { "cell_type": "code", "execution_count": null, - "id": "45259749", + "id": "341e222c", "metadata": {}, "outputs": [], "source": [ @@ -106,7 +106,7 @@ { "cell_type": "code", "execution_count": null, - "id": "d8345c26", + "id": "2f95510c", "metadata": {}, "outputs": [], "source": [ @@ -117,7 +117,7 @@ { "cell_type": "code", "execution_count": null, - "id": "ba1cb82f", + "id": "e519db2a", "metadata": {}, "outputs": [], "source": [ @@ -128,7 +128,7 @@ { "cell_type": "code", "execution_count": null, - "id": "6b3707b9", + "id": "dcd07739", "metadata": {}, "outputs": [], "source": [ @@ -139,7 +139,7 @@ { "cell_type": "code", "execution_count": null, - "id": "a5723f54", + "id": "4560eb2f", "metadata": {}, "outputs": [], "source": [ @@ -149,7 +149,7 @@ { "cell_type": "code", "execution_count": null, - "id": "3a1caccd", + "id": "1e94d4a0", "metadata": {}, "outputs": [], "source": [ @@ -161,7 +161,7 @@ }, { "cell_type": "markdown", - "id": "3d154549", + "id": "4bc113dc", "metadata": {}, "source": [ "- In order to have within the Notebook the executable binaries installed in the conda env of the Kernel we add the corresponding path to the env `PATH`. This is not needed when we are running from python." @@ -170,7 +170,7 @@ { "cell_type": "code", "execution_count": null, - "id": "84a66275", + "id": "85ad5ddb", "metadata": {}, "outputs": [], "source": [ @@ -182,7 +182,7 @@ }, { "cell_type": "markdown", - "id": "7e089df1", + "id": "837f38ee", "metadata": {}, "source": [ "## Setup" @@ -190,7 +190,7 @@ }, { "cell_type": "markdown", - "id": "97e8419a", + "id": "fb9c0c84", "metadata": {}, "source": [ "The minimum information required is the corresponding coastlines. They can be in a form that `geopandas` can read or in a `GeoDataFrame`." @@ -199,7 +199,7 @@ { "cell_type": "code", "execution_count": null, - "id": "c2b240ae", + "id": "3015cad2", "metadata": {}, "outputs": [], "source": [ @@ -209,7 +209,7 @@ { "cell_type": "code", "execution_count": null, - "id": "713993c1", + "id": "22157dd8", "metadata": {}, "outputs": [], "source": [ @@ -219,7 +219,7 @@ { "cell_type": "code", "execution_count": null, - "id": "9a5862fd", + "id": "dd3c89cc", "metadata": {}, "outputs": [], "source": [ @@ -228,7 +228,7 @@ }, { "cell_type": "markdown", - "id": "674a80b8", + "id": "786c00b6", "metadata": {}, "source": [ "We define \"areametry\" as \"global\" and the engine for grid generation ('jigsaw' or 'gmsh').\n", @@ -239,11 +239,11 @@ { "cell_type": "code", "execution_count": null, - "id": "fefbd0be", + "id": "0877f7f8", "metadata": {}, "outputs": [], "source": [ - "mesh = pmesh.set(type='tri2d', geometry='global', coastlines = w, mesh_generator = 'gmsh', rpath='./test/global/' \n", + "mesh = pmesh.set(type='tri2d', geometry='global', coastlines = w, mesh_generator = 'gmsh', rpath='./global/' \n", " ,use_bindings=True, #set this to False for gmsh binary\n", " )" ] @@ -251,7 +251,7 @@ { "cell_type": "code", "execution_count": null, - "id": "7cc6baf2", + "id": "fb559c05", "metadata": {}, "outputs": [], "source": [ @@ -260,15 +260,15 @@ }, { "cell_type": "markdown", - "id": "7fc55c3a", + "id": "d6c20d63", "metadata": {}, "source": [ - "**TIP** : You can change the grid generator above with grid_generator = 'gmsh'." + "**TIP** : You can change the mesh generator above with mesh_generator = 'gmsh'." ] }, { "cell_type": "markdown", - "id": "dc460731", + "id": "7c7813ec", "metadata": {}, "source": [ "## Visualize" @@ -276,7 +276,7 @@ }, { "cell_type": "markdown", - "id": "52c65942", + "id": "5b0dda29", "metadata": { "tags": [] }, @@ -287,16 +287,16 @@ { "cell_type": "code", "execution_count": null, - "id": "ef0cbe84", + "id": "d4c4e8ff", "metadata": {}, "outputs": [], "source": [ - "mesh.Dataset.mplot.mesh(dim='3D')" + "#mesh.Dataset.mplot.mesh(dim='3D')" ] }, { "cell_type": "markdown", - "id": "2cd8cd9b", + "id": "14e16305", "metadata": {}, "source": [ "## Control mesh size" @@ -304,7 +304,7 @@ }, { "cell_type": "markdown", - "id": "3b37cd42", + "id": "582128aa", "metadata": {}, "source": [ "Better control on the mesh size can be obtained by providing a background control function usually in the form of a scaled DEM. One way to achieve this is to give as argument a dem file, like : " @@ -313,23 +313,28 @@ { "cell_type": "code", "execution_count": null, - "id": "726d2b8c", + "id": "4cf6b436", "metadata": {}, "outputs": [], "source": [ "mesh = pmesh.set(type='tri2d', geometry='global', coastlines = w, mesh_generator = 'gmsh', \n", - " rpath = './test/global/',\n", + " rpath = './global/scaled',\n", " dem_source='./data/dem.nc', \n", - " resolution_min=0.001, resolution_max=.03,\n", + " resolution_min=0.001, resolution_max=.08,\n", " use_bindings=False, #set this to True for gmsh python bindings\n", - " DistMin=.0, DistMax=.1, SizeMin=.005, SizeMax=.02, MeshSizeMin=.001,MeshSizeMax=0.05, # GMSH additional settings\n", - " )" + " DistMin=.0, DistMax=.01, SizeMin=.005, SizeMax=.02, MeshSizeMin=.001,MeshSizeMax=0.05, # GMSH additional settings\n", + " bg_dem=True,\n", + " bg_dem_grad=True,\n", + " min_edge_length=0.001,\n", + " max_edge_length=.05,\n", + " slope_parameter = 1000\n", + " )" ] }, { "cell_type": "code", "execution_count": null, - "id": "edd19989", + "id": "79e2815d", "metadata": {}, "outputs": [], "source": [ @@ -339,37 +344,47 @@ { "cell_type": "code", "execution_count": null, - "id": "6eb53692", + "id": "4fe9a602", + "metadata": {}, + "outputs": [], + "source": [ + "mesh.bgmesh[0].pplot.mesh()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f4b39bbb", "metadata": {}, "outputs": [], "source": [ - "mesh.bgmesh.pplot.mesh()" + "mesh.bgmesh[0].pplot.contourf(var='h')" ] }, { "cell_type": "code", "execution_count": null, - "id": "017c0fc6", + "id": "7d0fc4b2-5fe0-432c-a4db-e340893bf31d", "metadata": {}, "outputs": [], "source": [ - "mesh.bgmesh.pplot.contourf(var='h')" + "mesh.bgmesh[1].pplot.contourf(var='h')" ] }, { "cell_type": "code", "execution_count": null, - "id": "feff1c38", + "id": "71fa5622-2de3-4f11-9e73-1b444341dcea", "metadata": {}, "outputs": [], "source": [ - "mesh.Dataset.mplot.mesh(dim='3D')" + "mesh.Dataset.pplot.mesh()#dim='3D')" ] }, { "cell_type": "code", "execution_count": null, - "id": "6392d720", + "id": "6ee0afc8", "metadata": {}, "outputs": [], "source": [ @@ -378,7 +393,7 @@ }, { "cell_type": "markdown", - "id": "2004df45", + "id": "a2e8d850", "metadata": {}, "source": [ "**TIP** : Change the grid generator above with grid_generator = 'jigsaw' to see how `jigsaw` would do it." @@ -386,7 +401,7 @@ }, { "cell_type": "markdown", - "id": "67151088", + "id": "dc004078", "metadata": {}, "source": [ "## Output" @@ -395,16 +410,16 @@ { "cell_type": "code", "execution_count": null, - "id": "88534066", + "id": "d6a0a92d", "metadata": {}, "outputs": [], "source": [ - "mesh.to_file('./test/global/hgrid.gr3')" + "mesh.to_file('./global/hgrid.gr3')" ] }, { "cell_type": "markdown", - "id": "330701e4", + "id": "777f1fce", "metadata": {}, "source": [ "## Read a given grid" @@ -413,16 +428,16 @@ { "cell_type": "code", "execution_count": null, - "id": "b90bf69d", + "id": "2e288218", "metadata": {}, "outputs": [], "source": [ - "m = pmesh.set(type='tri2d',mesh_file='./test/global/hgrid.gr3')" + "m = pmesh.set(type='tri2d',mesh_file='./global/hgrid.gr3')" ] }, { "cell_type": "markdown", - "id": "270a2f66", + "id": "836800f0", "metadata": {}, "source": [ "### Mesh Validation" @@ -430,7 +445,7 @@ }, { "cell_type": "markdown", - "id": "f8be8067", + "id": "aac29ad6", "metadata": {}, "source": [ "If you model is SCHISM, the mesh can be validated against it as " @@ -439,33 +454,33 @@ { "cell_type": "code", "execution_count": null, - "id": "28e4094b", + "id": "f81076c8", "metadata": {}, "outputs": [], "source": [ - "m.validate(rpath='./test/global/val/')" + "mesh.validate(rpath='./global/val/', scribes=0)" ] }, { "cell_type": "markdown", - "id": "f45503a2", + "id": "b14c6772", "metadata": {}, "source": [ - "### Grid Verification" + "### Mesh Verification" ] }, { "cell_type": "markdown", - "id": "7abc85fe", + "id": "7f81b1e1", "metadata": {}, "source": [ - "The grid is created with a specific boundary defined, usually, as a coastline. In order to check whether that coastline is crossed by the generated grid we can use :" + "The mesh is created with a specific boundary defined, usually, as a coastline. In order to check whether that coastline is crossed by the generated grid we can use :" ] }, { "cell_type": "code", "execution_count": null, - "id": "6833c93a", + "id": "cc97d5bd", "metadata": {}, "outputs": [], "source": [ @@ -474,7 +489,7 @@ }, { "cell_type": "markdown", - "id": "535657b6", + "id": "f964663e", "metadata": {}, "source": [ "*Note* : This is still under development and there is no distiction between 'intersection' and 'touch' for the grid. That is, the nodes could very well be **on** the boundary as they should. " @@ -483,9 +498,9 @@ ], "metadata": { "kernelspec": { - "display_name": "pyPoseidon", + "display_name": "dev", "language": "python", - "name": "pyposeidon" + "name": "dev" }, "language_info": { "codemirror_mode": { @@ -497,7 +512,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.12" + "version": "3.10.13" } }, "nbformat": 4, diff --git a/Tutorial/MESH.ipynb b/Tutorial/MESH.ipynb index 0232300c..0b857df8 100644 --- a/Tutorial/MESH.ipynb +++ b/Tutorial/MESH.ipynb @@ -238,7 +238,10 @@ "metadata": {}, "outputs": [], "source": [ - "mesh = pmesh.set(type='tri2d', geometry=geometry, coastlines = ne_i, mesh_generator = 'jigsaw')" + "mesh = pmesh.set(type='tri2d', geometry=geometry, \n", + " coastlines = ne_i, \n", + " mesh_generator = 'gmsh', \n", + " use_bindings=False)" ] }, { @@ -349,8 +352,14 @@ "metadata": {}, "outputs": [], "source": [ - "mesh = pmesh.set(type='tri2d', geometry=geometry, coastlines = ne_i, mesh_generator = 'jigsaw', \n", - " dem_source='data/dem.nc', resolution_min=0.01, resolution_max=.5)" + "mesh = pmesh.set(type='tri2d', geometry=geometry, coastlines = ne_i, mesh_generator = 'gmsh', \n", + " dem_source='data/dem.nc', resolution_min=0.01, resolution_max=.5,\n", + " bg_dem=True,\n", + " bg_dem_grad=True,\n", + " min_edge_length=0.01,\n", + " max_edge_length=.5,\n", + " slope_parameter = 50\n", + ")" ] }, { @@ -362,7 +371,19 @@ "source": [ "# The background scale function is..\n", "plt.figure()\n", - "mesh.bgmesh.h.plot()" + "mesh.bgmesh[0].h.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d7f5c99e-168f-432f-b8a9-49c090ad9881", + "metadata": {}, + "outputs": [], + "source": [ + "# The background gradient scale function is..\n", + "plt.figure()\n", + "mesh.bgmesh[1].h.plot()" ] }, { @@ -452,7 +473,7 @@ "metadata": {}, "outputs": [], "source": [ - "m.validate(rpath='./test/val/')" + "m.validate(rpath='./test/val/', scribes=0)" ] }, { @@ -492,9 +513,9 @@ ], "metadata": { "kernelspec": { - "display_name": "pyPoseidon", + "display_name": "dev", "language": "python", - "name": "pyposeidon" + "name": "dev" }, "language_info": { "codemirror_mode": { @@ -506,7 +527,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.12" + "version": "3.10.13" } }, "nbformat": 4, From 5ada7bc45e7c377712c9bddd31d06a72f10dbcd5 Mon Sep 17 00:00:00 2001 From: George Breyiannis Date: Wed, 10 Jul 2024 21:22:09 +0200 Subject: [PATCH 07/26] tests: make sure the tests pass also address some deprecation warnings --- pyposeidon/boundary.py | 15 +++++++++------ pyposeidon/dem_tools.py | 8 ++++---- pyposeidon/mgmsh.py | 4 ++-- pyposeidon/utils/cast.py | 2 +- tests/test_schism_cast.py | 6 +++--- tests/test_schism_reforecast.py | 6 +++--- 6 files changed, 22 insertions(+), 19 deletions(-) diff --git a/pyposeidon/boundary.py b/pyposeidon/boundary.py index f11f7e0e..7ba181e2 100644 --- a/pyposeidon/boundary.py +++ b/pyposeidon/boundary.py @@ -203,7 +203,7 @@ def buffer_(coasts, cbuffer): ww_.loc[idx] = b # join - wu = ww_.unary_union + wu = ww_.union_all() wu = gp.GeoDataFrame(geometry=[wu]).explode(index_parts=True).droplevel(0).reset_index(drop=True) rings = wu.boundary.is_ring # get multiple boundaries instance @@ -309,7 +309,7 @@ def tag(geometry, coasts, cbuffer, blevels): else: try: gw = gp.GeoDataFrame( - geometry=list(ww.buffer(0).unary_union) + geometry=list(ww.buffer(0).union_all()) ) # merge the polygons that are split (around -180/180) except: gw = gp.GeoDataFrame(geometry=list(ww.values)) @@ -342,7 +342,7 @@ def tag(geometry, coasts, cbuffer, blevels): block = coasts.copy() if not block.empty: - g = block.unary_union.symmetric_difference(grp) # get the dif from the coasts + g = block.union_all().symmetric_difference(grp) # get the dif from the coasts else: g = grp @@ -529,9 +529,12 @@ def global_tag(geo, cbuffer, blevels, R=1): ww = gp.GeoDataFrame(geometry=cs) - gw = gp.GeoDataFrame( - geometry=list(ww.buffer(0).unary_union.geoms) - ) # merge the polygons that are split (around -180/180) + ww_ = ww.buffer(0).union_all() + + if ww_.geom_type == "Polygon": + gw = gp.GeoDataFrame(geometry=[ww_]) + else: + gw = gp.GeoDataFrame(geometry=list(ww_.geoms)) # merge the polygons that are split (around -180/180) gw = gp.GeoDataFrame(geometry=gw.boundary.values) diff --git a/pyposeidon/dem_tools.py b/pyposeidon/dem_tools.py index 66c6541f..01de4ea3 100644 --- a/pyposeidon/dem_tools.py +++ b/pyposeidon/dem_tools.py @@ -175,7 +175,7 @@ def fix(dem, coastline, **kwargs): block = shp.cx[minlon:maxlon, minlat:maxlat] try: - block = gp.GeoDataFrame(geometry=list(block.unary_union.geoms)) + block = gp.GeoDataFrame(geometry=list(block.union_all().geoms)) except: pass @@ -189,7 +189,7 @@ def fix(dem, coastline, **kwargs): grp = grp.buffer(0.5) # buffer it to get also the boundary points try: - g = block.unary_union.symmetric_difference(grp) # get the diff + g = block.union_all().symmetric_difference(grp) # get the diff except: g = grp # no land @@ -208,7 +208,7 @@ def fix(dem, coastline, **kwargs): except: b = shapely.geometry.GeometryCollection() - b = b.unary_union + b = b.union_all() # define wet/dry water = b @@ -497,7 +497,7 @@ def check2(dataset, coastline): else: coasts = coastline - cc = coasts.unary_union + cc = coasts.union_all() wn = tree.query(cc, predicate="intersects").tolist() diff --git a/pyposeidon/mgmsh.py b/pyposeidon/mgmsh.py index 117d2497..f74514c6 100644 --- a/pyposeidon/mgmsh.py +++ b/pyposeidon/mgmsh.py @@ -166,8 +166,8 @@ def read_msh(filename, **kwargs): # nodes, tria = orient(nodes, tria, x="x", y="y") # else: bgmesh = kwargs.get("bgmesh", None) - if not bgmesh: - tria = tria.reindex(columns=["a", "c", "b"]) + # if not bgmesh: + # tria = tria.reindex(columns=["a", "c", "b"]) # check if global and reproject if gglobal: # convert to lat/lon diff --git a/pyposeidon/utils/cast.py b/pyposeidon/utils/cast.py index aedb3855..d5f22523 100644 --- a/pyposeidon/utils/cast.py +++ b/pyposeidon/utils/cast.py @@ -280,7 +280,7 @@ def run(self, **kwargs): copy = get_value(self, kwargs, "copy", False) - ihot = get_value(self, kwargs, "ihot", 1) + ihot = get_value(self, kwargs, "ihot", 2) pwd = os.getcwd() diff --git a/tests/test_schism_cast.py b/tests/test_schism_cast.py index 2d054cc9..8a1d0c43 100644 --- a/tests/test_schism_cast.py +++ b/tests/test_schism_cast.py @@ -198,7 +198,7 @@ def test_schism_cast_workflow(tmpdir): if not total.Dataset[var].equals(output.Dataset[var]): rb.append(var) - print(rb) + # print(rb) # flag = True TODO # for var in rb: @@ -208,5 +208,5 @@ def test_schism_cast_workflow(tmpdir): # flag = True # print(mdif) - expected = ["wetdry_side", "wetdry_elem", "wetdry_node", "zcor", "elev", "hvel"] - assert rb == expected + # expected = ["wetdry_side", "wetdry_elem", "wetdry_node", "zcor", "elev", "hvel"] + assert (rb == ["zcor"]) or (rb == []) diff --git a/tests/test_schism_reforecast.py b/tests/test_schism_reforecast.py index 28d96054..1675a37c 100644 --- a/tests/test_schism_reforecast.py +++ b/tests/test_schism_reforecast.py @@ -157,7 +157,7 @@ def test_schism_reforecast_workflow(tmpdir): if not total.Dataset[var].equals(r[var]): rb.append(var) - print(rb) + # print(rb) # flag = True TODO # for var in rb: @@ -166,5 +166,5 @@ def test_schism_reforecast_workflow(tmpdir): # if mdif < 1.e-14 : # flag = True # print(mdif) - expected = ["wetdry_side", "wetdry_elem", "wetdry_node", "zcor", "elev", "hvel"] - assert rb == expected + # expected = ["wetdry_side", "wetdry_elem", "wetdry_node", "zcor", "elev", "hvel"] + assert (rb == ["zcor"]) or (rb == []) From 868881c7716caa429c500df953d9f25d73f22ea1 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Tue, 16 Jul 2024 16:18:19 +0300 Subject: [PATCH 08/26] utils: Add cfl.py --- dependencies/main.yml | 2 +- environments/base-p3.10.yml | 1 + environments/base-p3.11.yml | 1 + environments/base-p3.12.yml | 1 + environments/base-p3.9.yml | 1 + environments/full-p3.10.yml | 1 + environments/full-p3.11.yml | 1 + environments/full-p3.12.yml | 1 + environments/full-p3.9.yml | 1 + environments/viz-p3.10.yml | 1 + environments/viz-p3.11.yml | 1 + environments/viz-p3.12.yml | 1 + environments/viz-p3.9.yml | 1 + locks/binary-p3.10.yml | 3264 ++++++--------- locks/binary-p3.11.yml | 3295 ++++++--------- locks/binary-p3.12.yml | 3293 ++++++--------- locks/binary-p3.9.yml | 3264 ++++++--------- locks/conda-macos-latest-delft3d_mpich.lock | 50 +- locks/conda-macos-latest-delft3d_openmpi.lock | 42 +- locks/conda-macos-latest-schism_mpich.lock | 60 +- locks/conda-macos-latest-schism_openmpi.lock | 50 +- locks/conda-ubuntu-latest-binary-p3.10.lock | 272 +- locks/conda-ubuntu-latest-binary-p3.11.lock | 274 +- locks/conda-ubuntu-latest-binary-p3.12.lock | 274 +- locks/conda-ubuntu-latest-binary-p3.9.lock | 272 +- locks/conda-ubuntu-latest-delft3d_mpich.lock | 54 +- .../conda-ubuntu-latest-delft3d_openmpi.lock | 46 +- locks/conda-ubuntu-latest-schism_mpich.lock | 62 +- locks/conda-ubuntu-latest-schism_openmpi.lock | 52 +- locks/delft3d_mpich.yml | 534 +-- locks/delft3d_openmpi.yml | 426 +- locks/requirements-ci.txt | 110 +- locks/requirements-full.txt | 199 +- locks/requirements-viz.txt | 174 +- locks/requirements.txt | 100 +- locks/schism_mpich.yml | 625 +-- locks/schism_openmpi.yml | 494 +-- poetry.lock | 3591 +++++++++-------- pyposeidon/utils/cfl.py | 79 + pyproject.toml | 1 + 40 files changed, 8512 insertions(+), 12459 deletions(-) create mode 100644 pyposeidon/utils/cfl.py diff --git a/dependencies/main.yml b/dependencies/main.yml index a284afc6..0cb75638 100644 --- a/dependencies/main.yml +++ b/dependencies/main.yml @@ -1,5 +1,4 @@ --- - channels: - "conda-forge" - "gbrey" @@ -19,6 +18,7 @@ dependencies: - "pandas<2" - "psutil" - "pydap>=3.3.0" + - "pymap3d" - "pyresample" - "python-gmsh" - "rasterio" diff --git a/environments/base-p3.10.yml b/environments/base-p3.10.yml index 63cd0d1e..91415b84 100644 --- a/environments/base-p3.10.yml +++ b/environments/base-p3.10.yml @@ -25,6 +25,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.10 diff --git a/environments/base-p3.11.yml b/environments/base-p3.11.yml index 5841b918..5b736eb7 100644 --- a/environments/base-p3.11.yml +++ b/environments/base-p3.11.yml @@ -25,6 +25,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.11 diff --git a/environments/base-p3.12.yml b/environments/base-p3.12.yml index 45b18ff3..1f6f7d18 100644 --- a/environments/base-p3.12.yml +++ b/environments/base-p3.12.yml @@ -25,6 +25,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.12 diff --git a/environments/base-p3.9.yml b/environments/base-p3.9.yml index 0ab462e3..9b11a773 100644 --- a/environments/base-p3.9.yml +++ b/environments/base-p3.9.yml @@ -25,6 +25,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.9 diff --git a/environments/full-p3.10.yml b/environments/full-p3.10.yml index c759e7e0..adb28af9 100644 --- a/environments/full-p3.10.yml +++ b/environments/full-p3.10.yml @@ -37,6 +37,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pymdown-extensions - pyresample - pytest diff --git a/environments/full-p3.11.yml b/environments/full-p3.11.yml index 6599d426..f2557745 100644 --- a/environments/full-p3.11.yml +++ b/environments/full-p3.11.yml @@ -37,6 +37,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pymdown-extensions - pyresample - pytest diff --git a/environments/full-p3.12.yml b/environments/full-p3.12.yml index d68f838b..10537271 100644 --- a/environments/full-p3.12.yml +++ b/environments/full-p3.12.yml @@ -37,6 +37,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pymdown-extensions - pyresample - pytest diff --git a/environments/full-p3.9.yml b/environments/full-p3.9.yml index 37a19e90..33aa3cb4 100644 --- a/environments/full-p3.9.yml +++ b/environments/full-p3.9.yml @@ -37,6 +37,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pymdown-extensions - pyresample - pytest diff --git a/environments/viz-p3.10.yml b/environments/viz-p3.10.yml index 2d43b84b..04034dc6 100644 --- a/environments/viz-p3.10.yml +++ b/environments/viz-p3.10.yml @@ -31,6 +31,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.10 diff --git a/environments/viz-p3.11.yml b/environments/viz-p3.11.yml index cdb6f2b1..16b83362 100644 --- a/environments/viz-p3.11.yml +++ b/environments/viz-p3.11.yml @@ -31,6 +31,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.11 diff --git a/environments/viz-p3.12.yml b/environments/viz-p3.12.yml index efb6ea3d..5572cc23 100644 --- a/environments/viz-p3.12.yml +++ b/environments/viz-p3.12.yml @@ -31,6 +31,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.12 diff --git a/environments/viz-p3.9.yml b/environments/viz-p3.9.yml index 2211fb26..c3d53a06 100644 --- a/environments/viz-p3.9.yml +++ b/environments/viz-p3.9.yml @@ -31,6 +31,7 @@ dependencies: - proj - psutil - pydap>=3.3.0 + - pymap3d - pyresample - python-gmsh - python=3.9 diff --git a/locks/binary-p3.10.yml b/locks/binary-p3.10.yml index a1999b8a..2c562684 100644 --- a/locks/binary-p3.10.yml +++ b/locks/binary-p3.10.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: b0127cb9c2ffab09d1a7c98ec3e59ae33912981bb5657b96571e88d2a70be142 - osx-64: 6eb4ad6f83dfb094927aa07177897b9b0f7cdb3de987846b6004c57c754c59e8 + linux-64: 717612daa9721767cf18bb9a092fad23d9e1520efd79908bca038ac89a12efc5 + osx-64: a98fe9db3d3077e62fdf2cdfd0e7bea42fa88aae82ee398316704f660769fa7b channels: - url: conda-forge used_env_vars: [] @@ -51,512 +51,41 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 category: main optional: false -- name: aom - version: 3.8.2 +- name: _sysroot_linux-64_curr_repodata_hack + version: '3' manager: conda platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda - hash: - md5: 625e1fed28a5139aed71b3a76117ef84 - sha256: 49b1352e2b9710b7b5400c0f2a86c0bb805091ecfc6c84d3dbf064effe33bfbf - category: main - optional: false -- name: aom - version: 3.8.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.8.2-h73e2aa4_0.conda - hash: - md5: a519a6b9f8f0e2ce1b4ee77cbc6a0a09 - sha256: 967d05b46e0a8153c57070a94262d38ffc03378803c1faa0bad258e8635d3775 - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda - hash: - md5: ce96c083829ab2727c942243ac93ffe0 - sha256: 75a540b313e5dc212fc0a6057f8a5bee2dda443f17a5a076bd3ea4d7195d483e - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda - hash: - md5: 0b451cddce1ea8f9247b386ba3285edc - sha256: f75a39577b61fc649e3a8c926b91218ebad6ea78beb2f2b16f90d3ae9493c1c4 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda - hash: - md5: ce2471034f5459a39636aacc292c96b6 - sha256: e45d9f1eb862f566bdea3d3229dfc74f31e647a72198fe04aab58ccc03a30a37 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda - hash: - md5: 393dbe9973160cb09cb3594c9246e260 - sha256: cb9b20aeec4cd037117fd0bfe2ae5a0a5f6a08a71f941be0f163bb27c87b98ea - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda - hash: - md5: d44fe0d9a6971a4fb245be0055775d9d - sha256: c71dd835b1d8c7097c8d152a65680f119a203b73a6a62c5aac414bafe5e997ad - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda - hash: - md5: c620ac518f3086eaf4f105f64908a57c - sha256: 1d207a8aee42700763e6a7801c69721ccc06ce75e62e0e5d8fc6df0197c0a88b - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda - hash: - md5: b0d9153fc7cfa8dc36b8703e1a59f5f3 - sha256: 7fcc6a924691f9de65c82fd559cb1cb2ebd121c42da544a9a43623d69a284e23 - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda - hash: - md5: ffd7cfb55b1aa4e3eef477583b1ad87d - sha256: 021cee135f0d9b58fbc8d212618cd9bd6bd0012da41a6469edf010b2853dd3ef - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda - hash: - md5: 58fc78e523e35a08423c913751a51fde - sha256: 38a30beabafc1dd86c0264b6746315a1010e541a1b3ed7f97e1702873e5eaa51 - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda - hash: - md5: 0923a8e81839b0b2d9787d85d635b196 - sha256: 65ea5552f7a87783b75a3ecf6e4acd2aee5357c4275a9932d732ee516acab0a9 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda - hash: - md5: 8476ec099649e9a6de52f7f4d916cd2a - sha256: 0dc5b73aa31cef3faeeb902a11f12e1244ac241f995d73e4f4e3e0c01622f7a1 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda - hash: - md5: d287122dfb77c5fa0147fdf368c86d54 - sha256: a3e6bfd71bbc4119da1e79f2bce6094f045112c230b3fd5cc9e6ccd36aba3156 - category: main - optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - s2n: '>=1.4.8,<1.4.9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda hash: - md5: cbf8138080ea12e9d9d66cf7c8bee325 - sha256: 5d7c7af98276949cee0e731ecedbd7e80135a3c3c3ea8246808ebb270732ae69 + md5: 1c005af0c6ff22814b7c52ee448d4bea + sha256: 6ac30acdbfd3136ee7a1de28af4355165291627e905715611726e674499b0786 category: main optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_2.conda - hash: - md5: 95e1a36ee569ff79e7eeccaf0ec1fe76 - sha256: ccb7eb57008cf89526694d5248878c6feffa9022aed0d657cb6a631b57f68026 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda - hash: - md5: 14ad8defb307e1edb293c3fc9da8648f - sha256: 6b2de4a0e6e907310127b1025a0030d023e1051da48ea5821dcc6db094d69ab7 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda - hash: - md5: c8bacb9a988fd8fb6b560a966c4979a8 - sha256: 99304e5095193b937745d0ce6812d0333186a31c41a51b1e4297ddcd962824eb - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda - hash: - md5: 0086628487f8888df34f024a0a0d0289 - sha256: fef9c9a628f4f18b509a79bab6e9356724c957058464af5624757cc8c6f0536e - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.5-h6f42f56_0.conda - hash: - md5: 868fbd186bc64457777c705162fd0d88 - sha256: a8cbf29cd471db62b42c0191411d66e446f3454dbb2d5daebd07bee670c1688d - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda - hash: - md5: 258194cedccd33fd8a7b95a8aa105015 - sha256: 349a05cf5fbcb3f6f358fc05098b210aa7da4ec3ab6d4719c79bb93b50a629f8 - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda - hash: - md5: bb1523b7de7ac6f112b1992cfcfb250b - sha256: 77f58ac3aec0cd987f80e202a8197e123beb13b9b25b0137dd921c7a6ddc86ac - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda - hash: - md5: 8a04fc5a5ecaba31f66904b47dcc7797 - sha256: 9080f064f572ac1747d32b4dff30452ff44ef2df399e6ec7bf9730da1eb99bba - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda - hash: - md5: f17e778398011e88d45edf58f24c18ae - sha256: 5760728e7320a01519bcbbae8dcd31b86e819f66c58f641b86b27ce592e5fff3 - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda - hash: - md5: 44b522426a11ab2afbd09b0746b0e4cd - sha256: f6734310a4b948f4e838748c793b75fac8af195819e9986ae935ef8ab2632a8a - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.4-h25b5da4_3.conda - hash: - md5: 0bfe8548d21b566e2bd65c2fed90869e - sha256: 16c0d8f4d04f18e576ccf9fba2314956cd8667a0d14b1363cd627b600e87e890 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda - hash: - md5: 3e735ae06073894080acd78365e78936 - sha256: b5515e6012fc858c6dd3ccf36009470d4ab6e3ba283934809112cca2874fb185 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-hd2aab46_4.conda - hash: - md5: 76c6a4d1839a71361c31d9bcce3601b7 - sha256: ce10e38c01771663a0491a5190078484c5c3ae7be315e5b02fc1bc87e4c9856e - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: linux-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda - hash: - md5: 2dbab1d281b7e1da05eee544cbdc8af6 - sha256: 810a890bf66d6368637399ef415dcc8152acd28f4b4b61d4048b7be7cba17d4c - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: osx-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.11.1-hbb1e571_1.conda - hash: - md5: 6e982efd0947cd3e9ba4223fbd988508 - sha256: 4b22a5e01ebd7f09c869cea73ae4853fb18a10a5716c8984598327e34eb2f9da - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: linux-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda - hash: - md5: 1e63d3866554a4d2e3d1cba5f21a2841 - sha256: c88f6bc72ef42fd09471d4c4b2293fa17f730e3ba10290a0bb86de0ff7e9b195 - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: osx-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.10.0-h7728843_1.conda - hash: - md5: dc24ba551b749b6bab11e0ef22dc3438 - sha256: 2c68d1d28bdf9d465843bdb6818868e0b0af46dafc1f4e41df0af33241707113 - category: main - optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: linux-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda hash: - md5: f364272cb4c2f4ce2341067107b82865 - sha256: 7143e85cfadcc3c789c879e66c3e6dbf8b6d5822d1d75b5b3063955279348233 + md5: 346722a0be40f6edc53f12640d301338 + sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 category: main optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: osx-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' + __osx: '>=10.13' libcxx: '>=16' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.5.0-h0e82ce4_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda hash: - md5: 8a980ef5c6bc0677f5a60d5d60a4efdd - sha256: ecff365d3cdf3b5b04a6f823ec75b07459fb6cc312475180f7a33a237242ea27 + md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8 + sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5 category: main optional: false - name: binutils @@ -565,10 +94,10 @@ package: platform: linux-64 dependencies: binutils_impl_linux-64: '>=2.40,<2.41.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda hash: - md5: ccc940fddbc3fcd3d79cd4c654c4b5c4 - sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c + md5: df53aa8418f8c289ae9b9665986034f8 + sha256: 75d7f5cda999fe1efe9f1de1be2d3e4ce32b20cbf97d1ef7b770e2e90c062858 category: main optional: false - name: binutils_impl_linux-64 @@ -578,10 +107,10 @@ package: dependencies: ld_impl_linux-64: '2.40' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda hash: - md5: 33084421a8c0af6aef1b439707f7662a - sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d + md5: 3f840c7ed70a96b5ebde8044b2f36f32 + sha256: 230f3136d17fdcf0e6da3a3ae59118570bc18106d79dd29bf2f341338d2a42c4 category: main optional: false - name: binutils_linux-64 @@ -591,43 +120,44 @@ package: dependencies: binutils_impl_linux-64: 2.40.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda hash: - md5: 2d9a60578bc28469d9aeef9aea5520c3 - sha256: d114b825acef51c1d065ca0a17f97e0e856c48765aecf2f8f164935635013dd2 + md5: bb3fb8553a669828501e80d13b6bd744 + sha256: b88a28156805c12e8ad363f49e27da26c176ed340b0f96cb9b6450bf7a6047f1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -635,45 +165,49 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: c-compiler @@ -684,10 +218,10 @@ package: binutils: '' gcc: '' gcc_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda hash: - md5: fad1d0a651bf929c6c16fbf1f6ccfa7c - sha256: 19343f6cdefd0a2e36c4f0da81ed9ea964e5b4e82a2304809afd8f151bf2ac8c + md5: e9dffe1056994133616378309f932d77 + sha256: 4213b6cbaed673c07f8b79c089f3487afdd56de944f21c4861ead862b7657eb4 category: main optional: false - name: c-compiler @@ -699,32 +233,32 @@ package: clang_osx-64: 16.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_1.conda hash: - md5: 4652f33fe8d895f61177e2783b289377 - sha256: c32fdb29dac5e1a01aa486aba1f7b21cff5c1c7748c0cf9b6c9475888b61eb17 + md5: d27411cb82bc1b76b9f487da6ae97f1d + sha256: a8e2e2b121e61e3d6a67aa618602815211573e96477ab048176a831ae622bfaf category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: cairo @@ -737,22 +271,22 @@ package: freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.2,<1.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxrender: '>=0.9.11,<0.10.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda hash: - md5: f907bb958910dc404647326ca80c263e - sha256: 142e2639a5bc0e99c44d76f4cc8dce9c6a2d87330c4beeabb128832cd871a86e + md5: b6d90276c5aee9b4407dd94eb0cd40a8 + sha256: 51cfaf4669ad83499b3da215b915c503d36faf6edf6db4681a70b5710842a86c category: main optional: false - name: cairo @@ -760,21 +294,21 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.4,<1.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h9f650ed_2.conda hash: - md5: 13f830b1bf46018f7062d1b798d53eca - sha256: f8d1142cf244eadcbc44e8ca2266aa61a05b6cda5571f9b745ba32c7ebbfdfba + md5: d264e5b9759cab8d203cdfe43eabd8b5 + sha256: 1d2480538838cf5009df0285a73aa405798bc49de0c689ab270f543f5ae961aa category: main optional: false - name: cctools @@ -799,7 +333,7 @@ package: ld64_osx-64: '>=711,<712.0a0' libcxx: '' libllvm16: '>=16.0.6,<16.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' sigtool: '' url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-ha1c5b94_0.conda hash: @@ -807,49 +341,16 @@ package: sha256: 16ef6a8dd367d7d4d7b3446f73ed95b07603d6b5b3256c3acab9b3a9006ef7eb category: main optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgfortran-ng: '' - libgfortran5: '>=12.3.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda - hash: - md5: 446ac3db6cb017e3dd067cc35cf51442 - sha256: fe50510b705d2adf6f7c162293f788ee7fa2eebd33adf30856723667e6a45586 - category: main - optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: osx-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgfortran: 5.* - libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.4.0-h60fb419_0.conda - hash: - md5: fea202fa33621a6c8a8a7146af6b34b7 - sha256: 476c45686fd8b3309117fc5c37ce29338f6f241f2598e3506f85ca196fc41cc9 - category: main - optional: false - name: clang version: 16.0.6 manager: conda platform: osx-64 dependencies: clang-16: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-hdae98eb_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-default_h179603d_9.conda hash: - md5: 884e7b24306e4f21b7ee08dabadb2ecc - sha256: 71d2fa8174aedf549313fccf6fbc63ef08fdc898891ffba56dd376226649fa13 + md5: 1acf03a00abda70355ef2978cfce3e9b + sha256: 0553d08f7c917801841db35755d03c2e3c593145e7bb540d848ff60e9a59342d category: main optional: false - name: clang-16 @@ -857,16 +358,17 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libclang-cpp16: 16.0.6 libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 1c298568c30efe7d9369c7c15b748461 - sha256: 5a8dcab3b23552c6e93967ecc7e13c0e40c3f8e96ba26a4d942fa528ed5b449e + md5: bdd24ee262fd1c08f6e0a8173140321d + sha256: 26d405aeb42d84c904b551f5efa00ba3b8e4ec6577f62cecaa849fb1e485137f category: main optional: false -- name: clang_impl_osx-64 +- name: clang_osx-64 version: 16.0.6 manager: conda platform: osx-64 @@ -876,22 +378,10 @@ package: compiler-rt: 16.0.6.* ld64_osx-64: '' llvm-tools: 16.0.6.* - url: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-16.0.6-h8787910_11.conda - hash: - md5: ed9c90270c77481fc4cfccd0891d62a8 - sha256: 2174b2a01fb60da87b383405100bb6d5eac54fb8e84d2ce5f6a0488627c055fc - category: main - optional: false -- name: clang_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-hb91bd55_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-h8787910_2.conda hash: - md5: 24123b15e9c0dad9c0d5fd9da0b4c7a9 - sha256: 86b4928261c21546b9bae5a58975a5ade6256be0aacd8d0f7a3126150bad3967 + md5: efd22736de32ae376efc729b0b5af8a2 + sha256: 44150a183de949cfbba1c871af31ed4cf96b9500736848bac07714a4d432ede6 category: main optional: false - name: clangxx @@ -900,38 +390,26 @@ package: platform: osx-64 dependencies: clang: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h179603d_9.conda hash: - md5: cc8c007a529a7cfaa5d29d8599df3fe6 - sha256: 422e471cb572b977c7ff3aec6c89fc6af365c5e5a4e29feaa780519c9a20e84d + md5: 0cad937ac54668f5bd98ab7c6a76374c + sha256: 149c705d66303ab4ffe153b7d45625bdd4d131607178336e7a5a5fa45253c9d9 category: main optional: false -- name: clangxx_impl_osx-64 +- name: clangxx_osx-64 version: 16.0.6 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' clang_osx-64: 16.0.6 clangxx: 16.0.6.* - libcxx: '>=16' + libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-16.0.6-h6d92fbe_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-h1b7723c_2.conda hash: - md5: a658c595675bde00373347b22a974810 - sha256: 944d9cb8052eefec3182380454bf8a3f1b2a93c5ea992f8681ef45e975492983 - category: main - optional: false -- name: clangxx_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_osx-64: 16.0.6 - clangxx_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-hb91bd55_11.conda - hash: - md5: e49aad30263abdcb785e610981b7c2c7 - sha256: 664e769eecf1d07d07729f4902ef07f2f5b11bc033adfd84637ce9742f3267a1 + md5: 9b40be235bc26c0949debeca13a35305 + sha256: 3b300a28e5a22146763309db69c80171db76bace3d5c1fd54623509936368e48 category: main optional: false - name: compiler-rt @@ -969,10 +447,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda hash: - md5: 81458b3aed8ab8711951ec3c0c04e097 - sha256: db059492391adfbed877d611870e01b6e0660c14fbe72dec5e17d1842b51581d + md5: d8d07866ac3b5b6937213c89a1874f08 + sha256: f50660a6543c401448e435ff71a2849faae203e3362be7618d994b6baf345f12 category: main optional: false - name: compilers @@ -983,10 +461,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_1.conda hash: - md5: 3576aa54986a3e2a5370e4232b35c036 - sha256: 0f219384ea4a1aaac26148f20a3ddb5fcb19f4a748b742e66e2b92a1af3a08a8 + md5: 875e9b06186a41d55b96b9c1a52f15be + sha256: c4db9ad330ae0baf68e77673eb3953d966e08c5e5993b0cc8c003d62c026068a category: main optional: false - name: cxx-compiler @@ -997,10 +475,10 @@ package: c-compiler: 1.7.0 gxx: '' gxx_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda hash: - md5: b4537c98cb59f8725b0e1e65816b4a28 - sha256: 9278c12ed455a39a50d908381786540c9fd1627e4489dca9638b3e222c86d3f7 + md5: 28de2e073db9ca9b72858bee9fb6f571 + sha256: cf895938292cfd4cfa2a06c6d57aa25c33cc974d4ffe52e704ffb67f5577b93f category: main optional: false - name: cxx-compiler @@ -1010,10 +488,10 @@ package: dependencies: c-compiler: 1.7.0 clangxx_osx-64: 16.* - url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_1.conda hash: - md5: 8abaa2694c1fba2b6bd3753d00a60415 - sha256: fe198da9a3ea1f3d1c9f18cceff633594549ef80c20bdb9522beb4b4446be09c + md5: e04cb15a20553b973dd068c2dc81d682 + sha256: 844b0894552468685c6a9f7eaab3837461e1ebea5c3880d8de616c83b618f044 category: main optional: false - name: dav1d @@ -1040,44 +518,45 @@ package: category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: linux-64 dependencies: hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda hash: - md5: f12ca97c38833a5a179adc172155d15d - sha256: 964b3b53ca1c116fa0480912ec85fe182d8db6866607448b5b3ae73b0bf370e8 + md5: 6d8c86d0368625b6503d696db70ea041 + sha256: cccb49014366103ff5405c8b52f191cf8a9ceec6aedfe000418bdc1c11dc20cc category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.34.1-h40b907c_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.36.0-h96318c6_0.conda hash: - md5: 20dc150b88956b981f1e0a56cadc3437 - sha256: 0473cf51b54171f1e8dd1b48a765b070b14bd9f801ee01594645e80bbea11918 + md5: 9ef1b3475a7c8a75a24b3a3302808171 + sha256: ec058f68ad00fc52620440992e1be8d9812a4d9ab6ad7f9f6cf99fdd1f4843e2 category: main optional: false - name: expat @@ -1106,11 +585,12 @@ package: category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: linux-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __glibc: '>=2.17,<3.0.a0' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1118,48 +598,50 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-gpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-gpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-npu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' libstdcxx-ng: '>=12' - libva: '>=2.21.0,<3.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxcb: '>=1.15,<1.16.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libva: '>=2.22.0,<3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxcb: '>=1.16,<1.17.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda hash: - md5: a9865c001fa2e03272895e23b10bc55f - sha256: 844dfa9e64bd20453a36f94a7110b6db48b47db5095f7bbb395f56eb55831f10 + md5: 107fd9222d9f628608b07b69abba9420 + sha256: b264eb69ddcc15bdbd74e7ce57b96350483abdfaa73d485dd4efcca0f4d8507f category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: osx-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __osx: '>=10.13' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1167,35 +649,35 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.1-gpl_h9654dba_107.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-7.0.1-gpl_hb3e10e8_104.conda hash: - md5: 656eb681c293b9e07d3dfba0ba3f6d06 - sha256: 1b60bdfa05370d217bd97aa7ae477e8237f3d63340009c5915ab7e45ddabe662 + md5: 973b150f71301149def599cd44a88545 + sha256: 76e9f20fe02283843ba418cb199270dfbc76c457496473029882916addda9e0d category: main optional: false - name: fltk @@ -1207,22 +689,22 @@ package: libgcc-ng: '>=12' libglu: '' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda hash: - md5: ddcdbcc4fb8918767d6145239c1965bd - sha256: 8287ad80f3d56fdcd454b671cb3d4fa55baf6abe9104680ce5c470d2eb03f3c0 + md5: c82be18188e73e00064101a46e46e785 + sha256: ee14e3fe574e5c1820cd67d620e608330417f23725080da5120aa864eaf3b53f category: main optional: false - name: fltk @@ -1230,49 +712,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-he73b29e_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-ha50d76c_1.conda hash: - md5: 9b4d34b0accb2d0572f3a21cbf075a85 - sha256: 2a8aa3d7444e6c9eae75cb21dcf8f6f2283968ef035f2bad99f645e938b9b16b - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - hash: - md5: 35ef8bc24bd34074ebae3c943d551728 - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - hash: - md5: ab205d53bda43d03f5c5b993ccb406b3 - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc + md5: a958392eb3607deaab9de701d24cf159 + sha256: 0904ed13fe6590e89b74ace95fbbcc3f8155f6e2287318383d7813ba4bb04207 category: main optional: false - name: font-ttf-dejavu-sans-mono @@ -1346,10 +803,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: font-ttf-ubuntu @@ -1357,10 +814,10 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: fontconfig @@ -1372,7 +829,7 @@ package: freetype: '>=2.12.1,<3.0a0' libgcc-ng: '>=12' libuuid: '>=2.32.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda hash: md5: 0f69b688f52ff6da70bccb7ff7001d1d @@ -1386,7 +843,7 @@ package: dependencies: expat: '>=2.5.0,<3.0a0' freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda hash: md5: 86cc5867dfbee4178118392bae4a3c89 @@ -1456,10 +913,10 @@ package: c-compiler: 1.7.0 gfortran: '' gfortran_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda hash: - md5: 7ef7c0f111dad1c8006504a0f1ccd820 - sha256: 1e4da85586882c4f52f99d63615f0d8548d71be4c82e363485d6ca7bddf0074a + md5: cf4b0e7c4c78bb0662aed9b27c414a3c + sha256: 4293677cdf4c54d13659a3f9ac15cae778310811c62add29bb2e70630756317a category: main optional: false - name: fortran-compiler @@ -1472,10 +929,10 @@ package: gfortran_osx-64: 12.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_1.conda hash: - md5: 2c11db8b46df0a547997116f0fd54b8e - sha256: 2470272c1dc170763c364042e5630ce840a39fce500e57adcfe29f193a585f79 + md5: 48319058089f492d5059e04494b81ed9 + sha256: 994007a99553e495d397de45484f3aaccfd1cd730019c146903785c0abebadeb category: main optional: false - name: freeglut @@ -1485,16 +942,16 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxi: '' - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda hash: - md5: 6e553df297f6e64668efb54302e0f139 - sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f + md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 + sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 category: main optional: false - name: freeimage @@ -1511,7 +968,7 @@ package: libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda @@ -1533,7 +990,7 @@ package: libraw: '>=0.21.1,<0.22.0a0' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-hdc0ade2_20.conda @@ -1549,7 +1006,7 @@ package: dependencies: libgcc-ng: '>=12' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda hash: md5: 9ae35c3d96db2c94ce0cef86efdfa2cb @@ -1562,7 +1019,7 @@ package: platform: osx-64 dependencies: libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda hash: md5: 25152fce119320c980e5470e64834b50 @@ -1627,10 +1084,10 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda hash: - md5: 413e326f8a01d041ffbfbb51cea46a93 - sha256: 60669bb79c79d6f6929c67b334acd9dc885dccfb7371e41de7626090dc06e408 + md5: e42d156a1e3dd5651c89d7606b5a4a45 + sha256: 4f1f5bd8d0c5be91158d6e25fe1a183bb63d64b76da14ca6c619d5702fa112d8 category: main optional: false - name: gcc_impl_linux-64 @@ -1638,17 +1095,17 @@ package: manager: conda platform: linux-64 dependencies: - binutils_impl_linux-64: '>=2.39' + binutils_impl_linux-64: '>=2.40' libgcc-devel_linux-64: 12.3.0 libgcc-ng: '>=12.3.0' libgomp: '>=12.3.0' libsanitizer: 12.3.0 libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda hash: - md5: e89827619e73df59496c708b94f6f3d5 - sha256: a87826c55e6aa2ed5d17f267e6a583f7951658afaa4bf45cd5ba97f5583608b9 + md5: 93325fff774c4cc8dcc8c65039cb4646 + sha256: a6039b425279c4e080ac019d393ccb1b082698d48b83ec5660d96ef3c849b6a9 category: main optional: false - name: gcc_linux-64 @@ -1659,110 +1116,112 @@ package: binutils_linux-64: '2.40' gcc_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda hash: - md5: 7a53f84c45bdf4656ba27b9e9ed68b3d - sha256: 836692c3d4948f25a19f9071db40f7788edcb342d771786a206a6a122f92365d + md5: 954881ce9897d01c7c2031fb93ed366b + sha256: e8f7b8dbe97b6115d212fa9e2b9a53b960db09fd9bc5fb903e401f35507f161f category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: linux-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libgdal: 3.8.5 + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.22.4,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py310he073c5f_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py310ha8fd22c_7.conda hash: - md5: 371454cc7895f070274ed12505cc6a62 - sha256: bd20d71c1bb115ec00a945fb8af478b22cc0025f007a64dfb6a3c9aa9fcd0907 + md5: 8658f1c4dcbba9563dd05cb91d5dd01c + sha256: f52b20e293f082bf31e5454828ef4ef717bc22a3d8df67fce24517c8b9a660ea category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' libcxx: '>=16' - libgdal: 3.8.5 - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.22.4,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.8.5-py310h66a83bd_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.9.1-py310h7cd57e3_7.conda hash: - md5: 2c1cabe5d40906631c180a735b77de8e - sha256: 8e5808e24cf63445d9bdbb21faeabae0fd485b306a7e00f3ee2838e2f9dbe980 + md5: 46cceceff948a563c11d96fc5726b659 + sha256: 0eebc55fc30a6021267fc5f03821fe01f17f149ef13ff97e8b74d4f90cc82e3e category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda hash: - md5: 8c0f4f71f5a59ceb0c6fa9f51501066d - sha256: 2593b255cb9c4639d6ea261c47aaed1380216a366546f0468e95c36c2afd1c1a + md5: 621d814955342209dc8e7f87c41f1ba0 + sha256: 8ccddcf6263f972122d2ea7388b881194dcd9bc8e1092b4440b7a7572c65b226 category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.2-hf036a51_0.conda hash: - md5: d13f05ed3985f57456b610bab66366db - sha256: 6feffb0d1999a22c5f94d2168b1af9c5fbdd25c9a963a6825ee32cf05e5c07f5 + md5: 69d6f60244f3a1fa8cfc34a9be856f19 + sha256: 43f959ac8f463b78a66cd6c2fd772bf68228e360559e74e774150aa2541b1f52 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda hash: - md5: aadc00cd5e330b5f7fb289446c23ab23 - sha256: 882cf1ef5bb0f176e9bc3da5a9783e11fce467d87ebbe76c0d0aa88bfa06de46 + md5: 8ff4fa3ab0b63dc5b214a68839499e41 + sha256: df00139c22b1b2ab1e1e48bb94c68febcc40a7ca812bd4f228a3e09ac9d2cdf2 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h7c2ff5c_16.conda + url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.3-h4bbec01_1.conda hash: - md5: c505170a140041f1ef9758df72b00b26 - sha256: e9277328123fa387561c53ee08c7758f8801eef1ee4caa982bca86480b002c9d + md5: 94b592c68bb826b1ffee62524b117aa2 + sha256: 7f5c0d021822e12cd64848caa77d43398cea90381f420d6f973877f3eccc2188 category: main optional: false - name: gettext @@ -1836,10 +1295,10 @@ package: gcc: 12.3.0.* gcc_impl_linux-64: 12.3.0.* gfortran_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda hash: - md5: 6b0b27394cf439d0540f949190556860 - sha256: f97482f7d85062ad61e7092eeca8a1a130fbf811cb8fb39be841072be3a81d95 + md5: da3ce6140908b41fb8fb205104b54ae6 + sha256: b5b181a4bed88036cf9b8a1476c0fe62fd6e7f8d7408507dd68861dee55775bf category: main optional: false - name: gfortran @@ -1862,14 +1321,14 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: '>=12.3.0' - libgcc-ng: '>=4.9' + libgcc-ng: '>=12.3.0' libgfortran5: '>=12.3.0' - libstdcxx-ng: '>=4.9' + libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda hash: - md5: 4d72ee7c82f8a9b2ecef4fcefa9acd19 - sha256: b965de2c6987ed5ecbbcdf2ea3c3ae8020d1eea81ab915c4cf2bddf37c1ff195 + md5: 96471c6bcf708822422bd9f78dbecc3b + sha256: a99c9bc4cf9883647b0abc25511ece611fd9cb96a1560b35fff5385a06059509 category: main optional: false - name: gfortran_impl_osx-64 @@ -1883,7 +1342,7 @@ package: libgfortran-devel_osx-64: 12.3.0.* libgfortran5: '>=12.3.0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpc: '>=1.3.1,<2.0a0' mpfr: '>=4.2.0,<5.0a0' zlib: '' @@ -1902,10 +1361,10 @@ package: gcc_linux-64: 12.3.0 gfortran_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda hash: - md5: 3a9e5b8a6f651ff14e74d896d8f04ab6 - sha256: f2285e33370851e689e70fa8b5a34a44b0271aff9831a027f302e062cb498cdd + md5: d77e515e624f3edb33ac89997322b5a8 + sha256: 62c99e466d1e034d22f2e57c0e95101a92f467824e18cfdedbdc18866d5ae063 category: main optional: false - name: gfortran_osx-64 @@ -1928,26 +1387,26 @@ package: category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda hash: - md5: 96f3b11872ef6fad973eac856cd2624f - sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b + md5: 3bf7b9fd5a7136126e0234db4b87c8b6 + sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.2-h10d778d_0.conda hash: - md5: aca150b0186836f893ebac79019e5498 - sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d + md5: 03e8c9b4d3da5f3d6eabdd020c2d63ac + sha256: 2c825df829097536314a195ae5cacaa8695209da6b4400135a65d8e23c008ff8 category: main optional: false - name: gmp @@ -1957,10 +1416,10 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda hash: - md5: e358c7c5f6824c272b5034b3816438a7 - sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 + md5: c94a5994ef49749880a8139cf9afcbe1 + sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c category: main optional: false - name: gmp @@ -1968,11 +1427,12 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda hash: - md5: 92f8d748d95d97f92fc26cfac9bb5b6e - sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 + md5: 427101d13f19c4974552a4e5b072eef1 + sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc category: main optional: false - name: gmsh @@ -1990,7 +1450,7 @@ package: liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' xorg-libx11: '>=1.8.7,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' @@ -2017,7 +1477,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' zlib: '' url: https://conda.anaconda.org/conda-forge/osx-64/gmsh-4.12.2-h48a2193_0.conda @@ -2093,10 +1553,10 @@ package: dependencies: gcc: 12.3.0.* gxx_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda hash: - md5: 8c50a4d15a8d4812af563a684d598910 - sha256: 12c8d969b1b6acf1bf4f7c7399993dd3d422a713ad6d7ab9343f6b990f8373a0 + md5: c3a3cf9cf544bd621a18add719056529 + sha256: fb1d5d87be5d23b2eaab45afcd62560ffda12ba870a3c1a2da6293dd8d5d4587 category: main optional: false - name: gxx_impl_linux-64 @@ -2107,10 +1567,10 @@ package: gcc_impl_linux-64: 12.3.0 libstdcxx-devel_linux-64: 12.3.0 sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda hash: - md5: cddba8fd94e52012abea1caad722b9c2 - sha256: 69371a1e8ad718b033bc1c58743a395e06ad19d08a2ff97e264ed82fd3ccbd9c + md5: bb4fe41bc0584a3f6d3026634170c330 + sha256: 34225c17afdd49219220d9fad1bc5b0b1bdc01c5e2faa8eb75f4fe471758bdc1 category: main optional: false - name: gxx_linux-64 @@ -2122,14 +1582,14 @@ package: gcc_linux-64: 12.3.0 gxx_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda hash: - md5: 9ec22c7c544f4a4f6d660f0a3b0fd15c - sha256: 5a842fc69c03ac513a2c021f3f21afd9d9ca50b10b95c0dcd236aa77d6d42373 + md5: 26155c2e3afafee809654f86f434c234 + sha256: 8e1068c185f0558933a7d7aa1fb1d310ac3e1acf219f4926925733a8c333971a category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: linux-64 dependencies: @@ -2138,30 +1598,30 @@ package: graphite2: '' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.1,<3.0a0' + libglib: '>=2.80.2,<3.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda hash: - md5: 5a6f6c00ef982a9bc83558d9ac8f64a0 - sha256: 4b55aea03b18a4084b750eee531ad978d4a3690f63019132c26c6ad26bbe3aed + md5: c7b47c64af53e8ecee01d101eeab2342 + sha256: 5854e5ac2d3399ef30b59f15045c19fa5f0bab94d116bd75cac4d05181543dc3 category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' cairo: '>=1.18.0,<2.0a0' freetype: '>=2.12.1,<3.0a0' graphite2: '' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.3.0-hf45c392_0.conda + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-9.0.0-h053f038_0.conda hash: - md5: 41d890485f909e4ecdc608741718c75e - sha256: c6ea14e4f4869bc78b27276c09832af845dfa415585362ed6064e37a1b5fe9c5 + md5: 0a4256cad662dc36666221a2a8daa34e + sha256: eb94445e4ea3e794582f47365d3b429adfddc24209a39bb8102f17198a0661e1 category: main optional: false - name: hdf4 @@ -2172,7 +1632,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -2186,7 +1646,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -2198,18 +1658,18 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda hash: - md5: d471a5c3abc984b662d9bae3bb7fd8a5 - sha256: b814f8f9598cc6e50127533ec256725183ba69db5fd8cf5443223627f19e3e59 + md5: 7e1729554e209627636a0f6fabcdd115 + sha256: 2278fa07da6f96e807d402cd55480624d67d2dee202191aaaf278ce5ab23605a category: main optional: false - name: hdf5 @@ -2217,18 +1677,18 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_105.conda hash: - md5: 8e2ac4ae815a8c9743fe37d70f48f075 - sha256: 158dd2ab901659b47e8f7ee0ec1d9e45a1fedc4871391a44a1c8b9e8ba4c9c6b + md5: 98544299f6bb2ef4d7362506a3dde886 + sha256: 98f8350730d09e8ad7b62ca6d6be38ee2324b11bbcd1a5fe2cac619b12cd68d7 category: main optional: false - name: icu @@ -2262,7 +1722,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda hash: md5: 07268e57799c7ad50809cadc297a515e @@ -2275,7 +1735,7 @@ package: platform: osx-64 dependencies: libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.11-h2d185b6_0.conda hash: md5: 39c1f288d263e971db74f8803e28dabd @@ -2295,7 +1755,7 @@ package: category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: linux-64 dependencies: @@ -2303,22 +1763,23 @@ package: libgcc-ng: '>=12' libglu: '>=9.0.0,<10.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda hash: - md5: 05c1609de571f7a9a40e6d7d4116c21a - sha256: 5cc5e2ae5127d655747a377e267ff40856c262a00f52cc6840238cfdb52368c4 + md5: 9518ab7016cf4564778aef08b6bd8792 + sha256: 0a5ca92ea0261f435c27a3c3c5c5bc5e8b4b1af1343b21ef0cbc7c33b62f5239 category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.3-h6ff19ee_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.4-hb10263b_0.conda hash: - md5: fe830a9cdfb229efde037ce4c8b5d677 - sha256: 1ec4bc54e277af13b6016d69c8f3fe769a56d0642f3e60783aaf03536c0220af + md5: b7a6171ecee244e2b2a19177ec3c34a9 + sha256: da2c2fa393b89596cf0f81c8e73db2e9b589ae961058317f6fcb4867e05055dd category: main optional: false - name: jigsaw @@ -2351,22 +1812,24 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda hash: - md5: 9961b1f100c3b6852bd97c9233d06979 - sha256: 5646496ca07dfa1486d27ed07282967007811dfc63d6394652e87f94166ecae3 + md5: f8f0f0c4338bad5c34a4e9e11460481d + sha256: 0caf06ccfbd6f9a7b3a1e09fa83e318c9e84f2d1c1003a9e486f2600f4096720 category: main optional: false - name: json-c version: '0.17' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h6253ea5_1.conda hash: - md5: 266d2e4ebbf37091c8322937392bb540 - sha256: 2a493095fe1292108ff1799a1b47ababe82d844bfa3abcf2252676c1017a1e04 + md5: fb72a2ef514c2df4ba035187945a6dcf + sha256: 66ddd1a4d643c7c800a1bb8e61f5f4198ec102be37db9a6d2e037004442eff8d category: main optional: false - name: jxrlib @@ -2388,46 +1851,20 @@ package: dependencies: {} url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda hash: - md5: cfaf81d843a80812fe16a68bdae60562 - sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: linux-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda - hash: - md5: f7e7077802927590efc8bf7328208f12 - sha256: ee0934ff426d3cab015055808bed33eb9d20f635ec14bc421c596f4b70927102 - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: osx-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.3-h5f07ac3_0.conda - hash: - md5: 7a0924f6214e4c17b6062b21d1240253 - sha256: 54a847faf2d2aea83c149d98634646edb8e7f346faefc6af1aa52106200b43aa + md5: cfaf81d843a80812fe16a68bdae60562 + sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b category: main optional: false - name: kernel-headers_linux-64 - version: 2.6.32 + version: 3.10.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda + dependencies: + _sysroot_linux-64_curr_repodata_hack: 3.* + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda hash: - md5: d731b543793afc0433c4fd593e693fce - sha256: fb39d64b48f3d9d1acc3df208911a41f25b6a00bd54935d5973b4739a9edd5b6 + md5: ff7f38675b226cfb855aebfc32a13e31 + sha256: a55044e0f61058a5f6bab5e1dd7f15a1fa7a08ec41501dbfca5ab0fc50b9c0c1 category: main optional: false - name: keyutils @@ -2443,7 +1880,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -2451,25 +1888,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: lame @@ -2555,10 +1993,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 category: main optional: false - name: lerc @@ -2587,28 +2025,30 @@ package: category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda hash: - md5: 75648bc5dd3b8eab22406876c24d81ec - sha256: 9951421311285dd4335ad3aceffb223a4d3bc90fb804245508cd27aceb184a29 + md5: c48fc56ec03229f294176923c3265c05 + sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hf036a51_1.conda hash: - md5: 819934a15bc13a0d30778bf18446ada6 - sha256: 30c0f569949a2fa0c5fd9aae3416e3f6623b9dd6fccdaa8d3437f143b67cca2a + md5: d6c78ca84abed3fea5f308ac83b8f54e + sha256: 396d18f39d5207ecae06fddcbc6e5f20865718939bc4e0ea9729e13952833aac category: main optional: false - name: libaec @@ -2637,43 +2077,44 @@ package: category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda hash: - md5: 3bf887827d1968275978361a6e405e4f - sha256: 340ed0bb02fe26a2b2e29cedf6559e2999b820f434e745c108e788d629ae4b17 + md5: 32ddb97f897740641d8d46a829ce1704 + sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936 category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libiconv: '>=1.17,<2.0a0' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda hash: - md5: 8c7b79b20a67287a87b39df8a8c8dcc4 - sha256: f458515a49c56e117e05fe607493b7683a7bf06d2a625b59e378dbbf7f308895 + md5: 82a85fa38e83366009b7f4b2cef4deb8 + sha256: 9e46db25e976630e6738b351d76d9b79047ae232638b82f9f45eba774caaef8a category: main optional: false - name: libasprintf @@ -2734,14 +2175,14 @@ package: fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda hash: - md5: c306fd9cc90c0585171167d09135a827 - sha256: 1bc3e44239a11613627488b7a9b6c021ec6b52c5925abd666832db0cb2a59f05 + md5: 25db2ea6b8fefce451369e2cc826f6f4 + sha256: 59ac3fc42b4cee09b04379aa3e91d6d45fdfc8a52afbfa1f9f32e99abbca3137 category: main optional: false - name: libass @@ -2749,17 +2190,18 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h80904bb_1.conda + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h5386a9e_2.conda hash: - md5: 9ccad0aebe916aa3715fda9eefe92584 - sha256: f97c70aa61ecc1b43907cf0322215a58f19e0723ee67b4ebd02146da24f03976 + md5: eb6c82cd6a0217884ee0ac8c974543ba + sha256: 92f425a8f1373fab13877d887a2c03220878983575313d1f0670fcea117bed8b category: main optional: false - name: libblas @@ -2786,28 +2228,6 @@ package: sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59 category: main optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda - hash: - md5: 85d30a3fcc0f1cfc252776208af546a1 - sha256: 5a7843db33422d043256af27f288836f51530b058653bdb074704eb72282f601 - category: main - optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.84.0-h694c41f_2.conda - hash: - md5: 37678c6938655e8862e121b48101365a - sha256: e51f3b877ab4a7a68bf1e1f95e9b007d716e85547078bfd5f6f7f114545dc26e - category: main - optional: false - name: libcblas version: 3.9.0 manager: conda @@ -2837,83 +2257,60 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h7151d67_6.conda - hash: - md5: 7eaad118ab797d1427f8745c861d1925 - sha256: 8d77bf8bb12e4dff0bdc0d6dbc9ec674a46470c4e51a1fc8ffec16ed7da3365f - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - hash: - md5: c965a5aa0d5c1c37ffc62dff36e28400 - sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5 - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 23d6d5a69918a438355d7cbc4c3d54c9 - sha256: 3043869ac1ee84554f177695e92f2f3c2c507b260edad38a0bf3981fce1632ff + md5: 1d2344f627433a89f189b8aeb503eaa6 + sha256: fec5b4a971bfa09348d1cf0f7adfa00015aea31ea12027dc38b36b2eeda16dde category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libdeflate @@ -2940,16 +2337,16 @@ package: category: main optional: false - name: libdrm - version: 2.4.120 + version: 2.4.122 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libpciaccess: '>=0.18,<0.19.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda hash: - md5: 7c3071bdf1d28b331a06bda6e85ab607 - sha256: 8622f52e517418ae7234081fac14a3caa8aec5d1ee5f881ca1f3b194d81c3150 + md5: bbfc4dbe5e97b385ef088f354d65e563 + sha256: 74c59a29b76bafbb022389c7cfa9b33b8becd7879b2c6b25a1a99735bf4e9c81 category: main optional: false - name: libedit @@ -3050,129 +2447,107 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: e12ce6b051085b8f27e239f5e5f5bce5 - sha256: ed2dfc6d959dc27e7668439e1ad31b127b43e99f9a7e77a2d34b958fa797316b + md5: 7fc690ec9db2902e5ee90cebfdab31e7 + sha256: 60c21686f4a715106fba21b1c22401710fd9f288a6402d6fdc65aa14e66e0ec7 category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libuuid: '>=2.38.1,<3.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda hash: - md5: bbc8dad387da810666640cb8609964df - sha256: 2434c6d51515805f8177210e5f183c5881332378b575beeb43afda5a0b3ae3bd + md5: 85fcff96b59d3e3a812601d713931d4f + sha256: 62296ded701499cf64c72c7bb1ab690754a50464cc3cd8124d57f9012c6b2d34 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: osx-64 dependencies: - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.8.5-h4f2ca4b_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-core-3.9.1-hb16c948_7.conda hash: - md5: 2a9e484d2523dd69dd0eb5045e0d69a0 - sha256: b7626d21c15b247df862632c4329e4946baedcb56e7d2d8bc1e7f65918501a2d + md5: 1b131ccbc9918802ada8468de898f235 + sha256: f9127a7bf525925fe4378f5aeb4fd95a53f2ba6fd7ae262574c71b09141fe7d1 category: main optional: false - name: libgettextpo @@ -3251,27 +2626,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -3287,35 +2662,36 @@ package: category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: linux-64 dependencies: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda hash: - md5: 0269d2b7fa89f4a37cdee5ad6161f6cc - sha256: 99983c2514dd99da1bab50e9a25ed16cfc1d46aca0385c3be177c8e299731b51 + md5: 6ea440297aacee4893f02ad759e6ffbc + sha256: 5f5854a7cee117d115009d8f22a70d5f9e28f09cb6e453e8f1dd712e354ecec9 category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libffi: '>=3.4,<4.0a0' libiconv: '>=1.17,<2.0a0' libintl: '>=0.22.5,<1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.0-h81c1438_3.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.3-h736d271_1.conda hash: - md5: de78445096d2846df7f4f5fa5c252560 - sha256: 0da6453549cc49d7258f3db76adc7ffb8e5fec524fb3c3af14a2ba1842bee0f7 + md5: 0919d467624606fbc05c38c458f3f42a + sha256: bfd5a28140d31f9310efcdfd1136f36d7ca718a297690a1a8869b3a1966675ae category: main optional: false - name: libglu @@ -3325,167 +2701,55 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-xextproto: '>=7.3.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda hash: - md5: 50c389a09b6b7babaef531eb7cb5e0ca - sha256: 8368435c41105dc3e1c02896a02ecaa21b77d0b0d67fc8b06a16ba885c86f917 + md5: df069bea331c8486ac21814969301c1f + sha256: c4a14878c2be8c18b7e89a19917f0f6c964dd962c91a079fe5e0c6e8b8b1bbd4 category: main optional: false - name: libgomp - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda - hash: - md5: d211c42b9ce49aee3734fdc828731689 - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda - hash: - md5: 4b4e36a91e7dabf7345b82d85767a7c3 - sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda - hash: - md5: 3f2faf53ecb3b51b92b3eee155b50233 - sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libgcc-ng: '>=12' - libgoogle-cloud: 2.22.0 - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - hash: - md5: 7811f043944e010e54640918ea82cecd - sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libcxx: '>=16' - libgoogle-cloud: 2.22.0 - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda - hash: - md5: 0c25180c34b1a58d309b28386698fb6e - sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: linux-64 - dependencies: - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda - hash: - md5: 564517a8cbd095cff75eb996d33d2b7e - sha256: 1d4ece94dfef73d904dcba0fd9d56098796f5fdc62ea5f9edff60c71be7a3d63 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda hash: - md5: 2ac05daca7276a4d6ca4465707670380 - sha256: 8c9898d259e2343df52259b599ec342c386679e1c420df603cba6f06078fcdd6 + md5: ae061a5ed5f05818acdf9adab72c146d + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda hash: - md5: f36ddc11ca46958197a45effdd286e45 - sha256: 6950fee24766d03406e0f6f965262a5d98829c71eed8d1004f313892423b559b + md5: f54aeebefb5c5ff84eca4fb05ca8aa3a + sha256: 8473a300e10b79557ce0ac81602506b47146aff3df4cc3568147a7dd07f480a2 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.9.3-default_h24e0189_1009.conda + __osx: '>=10.13' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.1-default_h456cccd_1000.conda hash: - md5: 22fcbfd2a4cdf941b074a00b773b43dd - sha256: a9fc54b481d0477cdf5700d702d44fc04fe00ffe63fc253aa0c6d2944abe8f3f + md5: a14989f6bbea46e6ec4521a403f63ff2 + sha256: 0b5294c8e8fc5f9faab7e54786c5f3c4395ee64b5577a1f2ae687a960e089624 category: main optional: false - name: libiconv @@ -3591,16 +2855,16 @@ package: manager: conda platform: linux-64 dependencies: - libboost-headers: '' - libexpat: '>=2.5.0,<3.0a0' + __glibc: '>=2.17,<3.0.a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda hash: - md5: 3eb5f16bcc8a02892199aa63555c731f - sha256: f67fc0be886c7eac14dbce858bfcffbc90a55b598e897e513f0979dd2caad750 + md5: 6d76c5822cb38bc1ab5a06565c6cf626 + sha256: 5bd19933cb3790ec8632c11fa67c25d82654bea6c2bc4f51f8bcd8b122ae96c8 category: main optional: false - name: libkml @@ -3608,15 +2872,15 @@ package: manager: conda platform: osx-64 dependencies: - libboost-headers: '' - libcxx: '>=15.0.7' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda + __osx: '>=10.13' + libcxx: '>=16' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hfcbc525_1020.conda hash: - md5: 535b1bb4896b113c14dfa64141370a12 - sha256: f546750a59b85a4b721f69e34e797ceddb93c438ee384db285e3344490d6a9b5 + md5: 055d429f351b79c0a7b7d7e39ff45b28 + sha256: 20dec455f668ab2527d6a20204599253ac0b2d4d0325e4a1ce2316850128cc3e category: main optional: false - name: liblapack @@ -3650,7 +2914,7 @@ package: dependencies: libcxx: '>=16' libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda hash: @@ -3667,20 +2931,20 @@ package: bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda hash: - md5: b2414908e43c442ddc68e6148774a304 - sha256: 0b4d984c7be21531e9254ce742e04101f7f7e77c0bbb7074855c0806c28323b0 + md5: a908e463c710bd6b10a9eaa89fdf003c + sha256: 055572a4c8a1c3f9ac60071ee678f5ea49cfd7ac60a636d817988a6f9d6de6ae category: main optional: false - name: libnetcdf @@ -3688,24 +2952,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7760872_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7334405_114.conda hash: - md5: bce76ace6497221c2a2a02840aaceac5 - sha256: 3d6a950d82a8dfb9fa51c263e543cfa9c113703add20646ec85401e7b557da49 + md5: 32ffbe5b0b0134e49f6347f4de8c5dcc + sha256: a4af96274a6c72d97e84dfc728ecc765af300de805d962a835c0841bb6a8f331 category: main optional: false - name: libnghttp2 @@ -3717,7 +2981,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -3734,7 +2998,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -3762,10 +3026,10 @@ package: libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda hash: - md5: a356024784da6dfd4683dc5ecf45b155 - sha256: 2ae7559aed0705deb3f716c7b247c74fd1b5e35b64e39834ce8b95f7564d4a3e + md5: ae05ece66d3924ac3d48b4aa3fa96cec + sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39 category: main optional: false - name: libopenblas @@ -3773,354 +3037,390 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libgfortran: 5.* libgfortran5: '>=12.3.0' llvm-openmp: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_h8869122_1.conda hash: - md5: 00237c9c7f2cb6725fe2960680a6e225 - sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 + md5: c0798ad76ddd730dade6ff4dff66e0b5 + sha256: 83b0b9d3d09889b3648a81d2c18a2d78c405b03b115107941f0496a8b358ce6d category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda hash: - md5: 126a2a61d276c4268f71adeef25bfc33 - sha256: 901d6a974cf86c96f5ec29e7ef0e3a3bcf128ad9f48ee65d244d796512c2c8f5 + md5: 9511859bf5221238a2d3fb5322af01d5 + sha256: 32ce474983e78acb8636e580764e3d28899a7b0a2a61a538677e9bca09e95415 category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.2.0-h3d2f4b3_1.conda hash: - md5: 9d8a53bb2dbc55cee97d7c5093164e5b - sha256: 18359d9a5d343a89fd9fb8d0dc7890b290c52fbfc51fc2fdc7e639246ddccc60 + md5: 0ee799269d5b7c9c8b61f9e6de123eea + sha256: 87aade1bf653042543ae5f32f854f131e8b44ff236edf9d74797a4e1d2e3728d category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda hash: - md5: de9c380fea8634540db5fc8422888df1 - sha256: 7997f2e1e24d79dbecbc7a275a0aef495cdb25018b19ab982b23147cfe80f659 + md5: 70d82a64e6d07f4d6e07cae6b0bd4bd1 + sha256: 083e72464866b857ff272242f887b46a5527e20e41d292db55a4fa10aa0808c6 category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: bc0a89ad1ab1fdc0ac29434109086c86 - sha256: 735797a48790d2317ca18d081ae3fa96cede63bd7c1d749d95aabebd946e4b1b + md5: 23f03915c4359149231458da782f2ffb + sha256: dd22f7789ccfbd1a54fb31b7d737f2c623d5bc52dcebbabeba6bec71e4a77ec5 category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda hash: - md5: de1cbf145ecdc1d29af18e14eb267bca - sha256: 1ec1dc0cf9aa4e1879145f0d8645d6132d19e7f8ea0a678b500ee96a110527e7 + md5: f1e2a8ded23cef03804c4edb2edfb986 + sha256: db945b8a8d716d0c6f80cc5f07fd79692c8a941a9ee653aab6f7d2496f6f163b category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: 99efdc8defbec695d3b5c02359dc2c92 - sha256: d417139fa5501b8765085443e811e91c90c4a45350378f34dc0fa2121edc4f3b + md5: 922ba14bf1052b849a0abc90b3042437 + sha256: 6273fa16c6023b5cc1df146195f23279be054267eab11045a805b7422ca52c93 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda hash: - md5: 016b763e4776b4c2c536420a7e6a2349 - sha256: 6b530d036bf3a608c6cae2de4ab8f7e9471b53603c63b10d0a04c211e3325b1f + md5: 95d2d3baaa1e456ef65c713a5d99b815 + sha256: 6924426d9f88a54bfcc8aa2f5d9d7aeb69c839f308cd3b37aedc667157fc90f1 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.2.0-h280e65d_1.conda hash: - md5: cece1c44db441905aa3caaa79b1c8a86 - sha256: 37bc25f92b6803d7d4a1e5424c780a75ad1eda4974ca6dbcc4cbb573e240a377 + md5: 8f7279cbec42f59497e174f62405e2f7 + sha256: 94f025bdbc1147e8470b80b9cc69f0ee2f5f9dab5dee7c5d45b769c76832a88a category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda hash: - md5: d866cc8dc37f101505e65a4372794631 - sha256: 2daa2f6fc584674adee84b036a9a267a6bcae731c912326efda155f2328586d8 + md5: 9e49f87d8f99dc9724f52b3fac904106 + sha256: f2a4f0705e56ad8e25e4b20929e74ab0c7d5867cd52f315510dff37ea6508c38 category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.2.0-h3d2f4b3_1.conda hash: - md5: 0714af035978be750d5e1f9adc8ee4cb - sha256: eb5985f740ee97b8a30efd7ff6a48c36e3eb33678bf7a3f6fb53d5fc4bcc9cc7 + md5: cb7b9d64ca63eb70c579f7af4169f2d3 + sha256: 8fe13c8c576bfac296971539418e096ce3aa58c3c27790121c62a64c35fe0781 category: main optional: false - name: libopenvino-intel-gpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' ocl-icd: '>=2.3.2,<3.0a0' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda + hash: + md5: a9712fae44d01d906e228c49235e3b89 + sha256: c15a90baed7c3ad46c51d2ec70087cc3fb947dbeaea7e4bc93f785e9d12af092 + category: main + optional: false +- name: libopenvino-intel-npu-plugin + version: 2024.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libopenvino: 2024.2.0 + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda hash: - md5: 6ebefdc74cb700ec82cd6702125cc422 - sha256: 15f0ad9ea10829d8964253b08667af015dfa4befa0afd2e6f3a44110f6efcb96 + md5: 5c2d064181e686cf5cfac6f1a1ee4e91 + sha256: c2f4f1685b3662b0f18f6647fe7a46a0c061f78e017e3d9815e326171f342ba6 category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda hash: - md5: 6397395a4677d59bbd32c4f05bb8fa63 - sha256: 09c91b8701764154b41a2c82d0412939e5625c712edfe965496930cdad6c822e + md5: 89addf0fc0f489fa0c076f1c8c0d62bf + sha256: eb183fa65b43cc944ad3d1528cdb5c533d3b4ccdd8ed44612e2c89f962a020ce category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.2.0-h280e65d_1.conda hash: - md5: c3f40e2622af41f0e597733266a0ec09 - sha256: 64b45b4df151b80988d13f72cec3145ab3773f255e089d21cdb6a7ab7b2dc852 + md5: 2fb0fc2d2f2583682d70847ac23b56b0 + sha256: 8354b19cdb6551ae38e12b82cc352b6e5d288235cd114d4f80d3b63d3d16eb5c category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 24c9cf1dd8f6d6189102a136a731758c - sha256: c29f5bead57bfb14cca7bd89e20f13eb18ec9a4624dcff1d56834454deb3be9c + md5: 9b0a13989b35302e47da13842683804d + sha256: 3f7ea37f5d8f052a1a162d864c01b4ba477c05734351847e9136a5ebe84ac827 category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: 543a343c411d307d3076e021f4eec355 - sha256: 16da5c3b4526a340145e074b32253221059f60389bc6c048cec8dc2767ad357e + md5: 0f0ec68c3d7feac549eae4cd1a7e6542 + sha256: 54b187853047ba743fa570d794858cf4a451bee9db86a2129831b7c81ce4ffae category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 259bd0c788f447fe78aab69895365528 - sha256: cc16cf9103d57d14a4f65b0148ae6197ced75063bebb07533744a1f0675ef294 + md5: 7b3680d3fd00e1f91d5faf9c97c7ae78 + sha256: da2fcf5e9962d5c5e1d47d52f84635648952354c30205c5908332af5999625bc category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: f52039a0882dad166cbc55e1d41c05a4 - sha256: 37de5299f8f9c790f073bf7b5dd2d1c21ee148302fc8087a31291e72f49c0c52 + md5: b420755d98724dc040723df5c0447e5b + sha256: 75efc13d43147bc7e9e02a27e7ab3d050d37d60f7ccc34f902f35bfe91c45200 category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda hash: - md5: ec121a4195acadad086f84719cc91430 - sha256: 2f032e4cec7d24f80ea932c99b0fea896fbf1e4a202453b71b50bc6980d0cfae + md5: ac43b516c128411f84f1e19c875998f1 + sha256: 077470fd8a48b4aafbb46a6ceccd9697a82ec16cce5dcb56282711ec04852e1d category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.2.0-hf036a51_1.conda hash: - md5: 7489363c2aa4d7a29c2b6f2c505099a4 - sha256: a78255491cc455d1b8ac8436996e8112d59f49e6994013a3184f93cf55c6cd0d + md5: a34b2a4c23b4c7867ddba1ad92fadf57 + sha256: 4064f1c92da47c3ce6f8dafcbac80452b49251e09cf244d1c35c34b0df158bcf category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: - libabseil: '>=20240116.1,<20240117.0a0' + __glibc: '>=2.17,<3.0.a0' + libabseil: '>=20240116.2,<20240117.0a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda hash: - md5: bdbf11f760f1a3b35d766e03cebd9c42 - sha256: 3037418cbf5e14964e4c4909ac4f15729db29e990b57d3b2d0b7cf6b0186a3d7 + md5: 11acf52cac790edcf087b89e83834f7d + sha256: 0558659f340bc22a918750e1142a9215bac66fb8cde62279559f4a22d7d11be1 category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' + libabseil: '>=20240116.2,<20240117.0a0' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.0.0-h7d3639a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.2.0-haca2b7f_1.conda hash: - md5: 426d2097dd8f8c129351ab6d0158dde6 - sha256: 077a86295e5b30c8c9f9a140486f6d3b2eff32a9ff7e1c462a28f4e95bd60c66 + md5: 50310e9b533ff331a5a09c90e0c7a2f2 + sha256: fc5bb9c32e8e7eaf432edf9cbc1fe7576373ee36fc6e3f7a8b645aeb56ded965 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda hash: - md5: 4354ea9f30a8c5111403fa4b24a2ad66 - sha256: 792f3a7de81b92a85339082008281dc03359c64ab10d9a93c71856fbefac8333 + md5: e7f91b35e3aa7abe880fc9192a761fc0 + sha256: 896b19b23e0649cdadf972c7380f74b766012feaea1417ab2fc4efb4de049cd4 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.2.0-hf036a51_1.conda hash: - md5: ab2a53b0b8a50397a71b58ad4792c615 - sha256: 7458435a72afd7648cdce5da233407750f14c11e78cb4219b6d30a4a57a7a741 + md5: 01aa2d69ece7efe5270646c5ca774011 + sha256: 11ae1886e8e2535aaff0da48d1f5e8ff176489553c24c0f645331e29c9ccb839 category: main optional: false - name: libopus @@ -4164,7 +3464,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda hash: md5: 009981dd9cfcaa4dbfa25ffaed86bcae @@ -4176,40 +3476,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda hash: md5: 65dcddb15965c9de2c0365cb14910532 sha256: 13e646d24b5179e6b0a5ece4451a587d759f55d9a360b7015f8f96eff4524b8f category: main optional: false -- name: libpq - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda - hash: - md5: 9e49ec2a61d02623b379dc332eb6889d - sha256: e03a8439b79e013840c44c957d37dbce10316888b2b5dc7dcfcfc0cfe3a3b128 - category: main - optional: false -- name: libpq - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpq-16.2-ha925e61_1.conda - hash: - md5: a10ef466bbc68a8e74112a8e26028d66 - sha256: bfb252cb14b88a75ba4af930c16dccae265dce0afdf5abde7de1718181aa2cea - category: main - optional: false - name: libprotobuf version: 4.25.3 manager: conda @@ -4218,7 +3491,7 @@ package: libabseil: '>=20240116.1,<20240117.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda hash: md5: 6945825cebd2aeb16af4c69d97c32c13 @@ -4233,7 +3506,7 @@ package: __osx: '>=10.13' libabseil: '>=20240116.1,<20240117.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda hash: md5: 57b7ee4f1fd8573781cfdabaec4a7782 @@ -4250,7 +3523,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda hash: md5: 63ab3e0cf149917a08af38b2786320c0 @@ -4265,53 +3538,26 @@ package: lcms2: '>=2.15,<3.0a0' libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.21.1-h8138101_2.conda hash: md5: 099b1112ffc520a8d40b16d3ca9d47d0 sha256: e69f7fa11709b96be6d99c3c55768996a61c4c0a675bb57f433b3b712126410e category: main optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - hash: - md5: 41c69fba59d495e8cf5ffda48a607e35 - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - category: main - optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - hash: - md5: c5c36ec64e3c86504728c38b79011d08 - sha256: 384b72a09bd4bb29c1aa085110b2f940dba431587ffb4e2c1a28f605887a1867 - category: main - optional: false - name: librttopo version: 1.1.0 manager: conda platform: linux-64 dependencies: - geos: '>=3.12.1,<3.12.2.0a0' + __glibc: '>=2.17,<3.0.a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda + url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda hash: - md5: 20c3c14bc491f30daecaa6f73e2223ae - sha256: 03e248787162a1804683c614c0681c2488fa6d9f353cb32e2f8c1158157165ea + md5: 3d9f3a2e5d7213c34997e4464d2f938c + sha256: 65bfd9f8915b1fc2523c58bf556dc2b9ed6127b7c6877ed2841c67b717f6f924 category: main optional: false - name: librttopo @@ -4319,13 +3565,13 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - geos: '>=3.12.1,<3.12.2.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-hf05f67e_15.conda + __osx: '>=10.13' + geos: '>=3.12.2,<3.12.3.0a0' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-he2ba7a0_16.conda hash: - md5: e65bedc9d9779a161cf26b6d12305246 - sha256: 10c46efefda5cc77143832a186f517e401098907cf9c3ec7406a5c242bb34e33 + md5: 80cc407788999eb3cd5a3651981e55fd + sha256: 907f602ad39172a98e3062c0d6616535075f5227435753fe2c843eb10891403c category: main optional: false - name: libsanitizer @@ -4334,10 +3580,11 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda + libstdcxx-ng: '>=12.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda hash: - md5: 11d1ceacff40054d5a74b12975d76f20 - sha256: 70329cb8b0604273521cdae63520cb364a8d5477e156e65cdbd810984caeabee + md5: 448dc960d50a75e8286b8427028ec56e + sha256: 78e8578e875fddcd96d626f7ceebe1cda167c2435a87bacf15c2f02ae966ffcf category: main optional: false - name: libspatialite @@ -4345,21 +3592,22 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda hash: - md5: f2e2bdd5fd10493a525503b2f40c59eb - sha256: 4181564a6e7bc0fa854cf8f2ed55e25c166c52da501dd21b39cf5c7567e999cb + md5: 48502f34f5ba86c1ce192cb30f959dc9 + sha256: ba7a298eb6e101ad4c3769c84f0d635c34e677a1879064f41e82598f0a0f5696 category: main optional: false - name: libspatialite @@ -4367,46 +3615,48 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-h487bbac_5.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-hdc25a2c_8.conda hash: - md5: e295a6cf66039ca5ce3dfdbd850a4145 - sha256: 49de77260f5946f8a023309c11f9dabd9c070745afd5f1ba7343342ac6285306 + md5: 51fd57e4f726cea701188184c036c341 + sha256: 860aa6eae736e7f280fcded14541512a98def5f49e9206042b452428d9913509 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda hash: - md5: 866983a220e27a80cb75e85cb30466a1 - sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 18aa975d2094c34aef978060ae7da7d8 + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + __osx: '>=10.13' + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda hash: - md5: 086f56e13a96a6cfb1bf640505ae6b70 - sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 5dadfbc1a567fe6e475df4ce3148be09 + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 category: main optional: false - name: libssh2 @@ -4415,7 +3665,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -4428,7 +3678,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -4440,22 +3690,24 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: b3c6062c84a8e172555ee104ea6a01ab - sha256: efcd4b4cba79cd0fb5a87757c7ca63171cf3b7b06446192364bae7defb50b94c + md5: 3706e34877bd82d04cb1e9e9baeb2739 + sha256: d1993225de21943f76a3cc5cb7d55f88be225001a988068e673171bed130d180 category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libtasn1 @@ -4492,7 +3744,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda @@ -4511,7 +3763,7 @@ package: libdeflate: '>=1.20,<1.21.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h129831d_3.conda @@ -4556,95 +3808,100 @@ package: category: main optional: false - name: libva - version: 2.21.0 + version: 2.22.0 manager: conda platform: linux-64 dependencies: - libdrm: '>=2.4.120,<2.5.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + libdrm: '>=2.4.121,<2.5.0a0' + libgcc-ng: '>=12' + libxcb: '>=1.16,<1.17.0a0' + wayland: '>=1.23.0,<2.0a0' + wayland-protocols: '' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda hash: - md5: e50a2609159a3e336fe4092738c00687 - sha256: b4e3a3fa523a5ddd1eca7981c9d6a9b831a182950116cc5bda18c94a040b63bc + md5: d12f659072132c9d16e497073fc1f68b + sha256: 8a67bda4308a939b2b25337cac1bc7950a1ee755d009c020ab739c4e0607fc2d category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda hash: - md5: 01c76c6d71097a0f3bd8683a8f255123 - sha256: b0e0500fc92f626baaa2cf926dece5ce7571c42a2db2d993a250d4c5da4d68ca + md5: cde393f461e0c169d9ffb2fc70f81c33 + sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13 category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda hash: - md5: 2c087711228029c8eab3301ddff1c386 - sha256: d3980ecf1e65bfbf7e1c57d6f41a66ab4f33c4fe6b71bf9414bb823e2db186fb + md5: 9b8744a702ffb1738191e094e6eb67dc + sha256: 47e70e76988c11de97d539794fd4b03db69b75289ac02cdc35ae5a595ffcd973 category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda hash: - md5: 30de3fd9b3b602f7473f30e684eeea8c - sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0 + md5: b26e8aa824079e1be0294e7152ca4559 + sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda hash: - md5: 4e7e9d244e87d66c18d36894fd6a8ae5 - sha256: fa7580f26fec4c28321ec2ece1257f3293e0c646c635e9904679f4a8369be401 + md5: b2c0047ea73819d992484faacbbe1c24 + sha256: 7bafd8f4c637778cd0aa390bf3a894feef0e1fcf6ea6000c7ffc25c4c5a65538 category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda hash: - md5: 33277193f5b92bad9fdd230eb700929c - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 + md5: 151cba22b85a989c2d6ef9633ffee1e4 + sha256: 7180375f37fd264bb50672a63da94536d4abd81ccec059e932728ae056324b3a category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: osx-64 dependencies: pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.16-h0dc2134_0.conda hash: - md5: 5513f57e0238c87c12dffedbcc9c1a4a - sha256: f41904f466acc8b3197f37f2dd3a08da75720c7f7464d9267635debc4ac1902b + md5: 07e80289d4ba724f37b4b6f001f88fbe + sha256: c64277f586b716d5c34947e7f2783ef0d24f239a136bc6a024e854bede0389a9 category: main optional: false - name: libxcrypt @@ -4660,34 +3917,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 0ac9aff6010a7751961c8e4b863a40e7 + sha256: 11a346aed187405a7d3710a79b815fd66ff80fec3b9b7f840a24531324742acf category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' icu: '>=73.2,<74.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-hc603aa4_3.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: c188d96aea8eaa16efec573fe36a9a13 + sha256: b0cf4a1d3e628876613665ea957a4c0adc30460be859fa859a1eed7eac87330b category: main optional: false - name: libzip @@ -4697,7 +3956,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -4711,7 +3970,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -4720,37 +3979,39 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: llvm-tools @@ -4760,7 +4021,7 @@ package: dependencies: libllvm16: 16.0.6 libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-16.0.6-hbedff68_3.conda hash: @@ -4798,11 +4059,11 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda hash: - md5: bb14fcb13341b81d5eb386423b9d2bac - sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 + md5: ec7398d21e2651e0dcb0044d03b9a339 + sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 category: main optional: false - name: lzo @@ -4810,14 +4071,14 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda hash: - md5: 0b6bca372a95d6c602c7a922e928ce79 - sha256: c8a9401eff2efbbcc6da03d0066ee85d72402f7658c240e7968c64052a0d0493 + md5: bfecd73e4a2dc18ffd5288acf8a212ab + sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -4825,32 +4086,33 @@ package: libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda hash: - md5: 557396140c71eba588e96d597e0c61aa - sha256: 1a56549751f4c4a7998e0a8bcff367c3992cb832c0b211d775cfd644e1ef5e6b + md5: 4474532a312b2245c5c77f1176989b46 + sha256: 6315ea87d094418e744deb79a22331718b36a0e6e107cd7fc3c52c7922bc8133 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.5-h37d7099_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.7-h62b0c8d_0.conda hash: - md5: 2203b2e83c20305b3d669556c345c8e9 - sha256: 426f4db1d56cdefa478a5ece35ed7624860548ace87d6ad927c4c9c6a7a20fec + md5: 9cb19284d7d835918241acf8180099db + sha256: e02a6e1a43b0ff44bb9460d46d3f7687a1876d435fb3c2c6cf9e19bab60901f6 category: main optional: false - name: mpc @@ -4879,26 +4141,26 @@ package: category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: nettle @@ -4924,65 +4186,8 @@ package: sha256: 62de51fc44f1595a06c5b24bb717b949b4b9fb4c4acaf127b92ce99ddb546ca7 category: main optional: false -- name: nspr - version: '4.35' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda - hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - category: main - optional: false -- name: nspr - version: '4.35' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda - hash: - md5: a9e56c98d13d8b7ce72bf4357317c29b - sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libsqlite: '>=3.45.1,<4.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda - hash: - md5: 54b56c2fdf973656b748e0378900ec13 - sha256: a9bc94d03df48014011cf6caaf447f2ef86a5edf7c70d70002ec4b59f5a4e198 - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.98-ha05da47_0.conda - hash: - md5: 79d062716d8e1f77cf806c6fe0f4405c - sha256: 3d99dd976aeb8678e4ac5fcbd574e1de50cdc57b742e22855f294c8047d5c68e - category: main - optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: linux-64 dependencies: @@ -4993,27 +4198,28 @@ package: libstdcxx-ng: '>=12' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py310h515e003_0.conda hash: - md5: 6593de64c935768b6bad3e19b3e978be - sha256: 028fe2ea8e915a0a032b75165f11747770326f3d767e642880540c60a3256425 + md5: baab5ef1064a13d3567d90133b799a03 + sha256: a6a0b48d9a2466d763290f525323561907d8702826833157738606fc8b96f5aa category: main optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' libcxx: '>=16' liblapack: '>=3.9.0,<4.0a0' python: '>=3.10,<3.11.0a0' python_abi: 3.10.* - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py310h4bfa8fc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.0.0-py310he367959_0.conda hash: - md5: cd6a2298387f558c9ea70ee73a189791 - sha256: 914476e2d3273fdf9c0419a7bdcb7b31a5ec25949e4afbc847297ff3a50c62c8 + md5: 945d173f9de02dbfe841303195e4d9f2 + sha256: 1fddb0f5111e081857600db24abce8aae2cd7706cffc10d1b7719c370f349976 category: main optional: false - name: occt @@ -5072,7 +4278,7 @@ package: imath: '>=3.1.11,<3.1.12.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda hash: md5: 34e58e21fc28e404207d6ce4287da264 @@ -5086,7 +4292,7 @@ package: dependencies: imath: '>=3.1.11,<3.1.12.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.2.2-h3f0570e_1.conda hash: md5: 95bd8b6b83801d99b064c785585bd15d @@ -5127,7 +4333,7 @@ package: libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda hash: md5: 7f2e286780f072ed750df46dc2631138 @@ -5142,7 +4348,7 @@ package: libcxx: '>=16' libpng: '>=1.6.43,<1.7.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda hash: md5: 05a14cc9d725dd74995927968d6547e3 @@ -5150,28 +4356,29 @@ package: category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: p11-kit @@ -5202,30 +4409,31 @@ package: category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda hash: - md5: 8292dea9e022d9610a11fce5e0896ed8 - sha256: 766dd986a7ed6197676c14699000bba2625fd26c8a890fcb7a810e5cf56155bc + md5: 3914f7ac1761dce57102c72ca7c35d01 + sha256: 90646ad0d8f9d0fd896170c4f3d754e88c4ba0eaf856c24d00842016f644baab category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_0.conda hash: - md5: 9c8651803886ce9d5983e107a0df4ea8 - sha256: 226714bbf89d45bf7da4c7551e21b8a833f51d33379fe3dfbfe31b72832d4dba + md5: b8f63aec37f31ffddac6dfdc0b31a73e + sha256: b397f92ef7d561f817c5336295d6696c72d2576328baceb9dc51bfc772bcb48e category: main optional: false - name: pip @@ -5281,156 +4489,38 @@ package: sha256: 3ab44e12e566c67a6e9fd831f557ab195456aa996b8dd9af19787ca80caa5cd1 category: main optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: linux-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libstdcxx-ng: '>=12' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda - hash: - md5: c688853df9dcfed47200d0e28e5dfe11 - sha256: 0ea3e63ae3ba07bcae8cc541647c647c68aeec32dfbe3bbaeecc845833b27a6f - category: main - optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: osx-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - gettext: '>=0.21.1,<1.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/osx-64/poppler-24.03.0-h0c752f9_0.conda - hash: - md5: 6b55d989edec2e1ea71236ca4cdd4960 - sha256: 05c0e43fda42be7745a68681511125ee244f465a9515fe6d4b564a224ca3b46b - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda - hash: - md5: 7a5806219d0f77ce8393375d040df065 - sha256: 7fc52e69478973f173f055ade6c4087564362be9172c294b493a79671fef9a7e - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.2-h06f2bd8_1.conda - hash: - md5: fe36c4a9254176dde4ca696016c50aa8 - sha256: 2a96af8385c51e97950ed00d802186069bf4933b3be111956508ab6be158d463 - category: main - optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: linux-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda hash: - md5: c97818016ebf8710a0f0cd6c29806493 - sha256: a8fa28987cc1d613dbebf6440af77ef2adaf030f0ca83133872835d3df1faa1c + md5: c38c5246d064ef16eba065d93c46f1c6 + sha256: ec9d16725925c62a7974faa396ca61878cb4cc7398c6c0e76d3ae28cffafc7db category: main optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: osx-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + __osx: '>=10.13' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.0-h23b96cc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.1-hf92c781_0.conda hash: - md5: 290e72714216cf50217e8d0160374356 - sha256: 95ec19f40c92ed4c0a5f20ec0a4db11bf70cc8e891cd031c4ac1b77639d45290 + md5: b128ccdae180135720ab963c68bc2f1a + sha256: c047c55cb2e239d35d7f28fc50225d5798be37af1e84d9036966447c82b373f5 category: main optional: false - name: pthread-stubs @@ -5494,7 +4584,7 @@ package: libsqlite: '>=3.45.2,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' @@ -5515,7 +4605,7 @@ package: bzip2: '>=1.0.8,<2.0a0' libffi: '>=3.4,<4.0a0' libsqlite: '>=3.45.2,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' @@ -5551,52 +4641,29 @@ package: category: main optional: false - name: rapidjson - version: 1.1.0 + version: 1.1.0.post20240409 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.3.0' - libstdcxx-ng: '>=7.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda hash: - md5: 37d4fdbb92d573c7d6ab6de74a666dc4 - sha256: 73b74a21dcaafc4a9f43e7f4295ead29d0f3ef13790bad69351942b77294aad8 + md5: d6e98530772fc26c112640461110d127 + sha256: 645e408a91d3c3bea6cbb24e0c208222eb45694978b48e0224424369271ca0ef category: main optional: false - name: rapidjson - version: 1.1.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0-hb1e8313_1002.tar.bz2 - hash: - md5: 6393fe5c6c2d496ab76853628bcf10d9 - sha256: ab46afaae30bf186fb389658bf7e1176508a9a0a93d9ab621f65bd1cbe1faafa - category: main - optional: false -- name: re2 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - hash: - md5: 8f70e36268dea8eb666ef14c29bd3cda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - category: main - optional: false -- name: re2 - version: 2023.09.01 + version: 1.1.0.post20240409 manager: conda platform: osx-64 dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0.post20240409-hf036a51_1.conda hash: - md5: 266f8ca8528fc7e0fa31066c309ad864 - sha256: 5739ed2cfa62ed7f828eb4b9e6e69ff1df56cb9a9aacdc296451a3cb647034eb + md5: 7b32c6b26b7c3a0d97ad484ab6f207c9 + sha256: 07f88271bc5a73fc5a910895bf83bb6046b2b84a3935015c448667aef41abf9e category: main optional: false - name: readline @@ -5624,41 +4691,28 @@ package: sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 category: main optional: false -- name: s2n - version: 1.4.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda - hash: - md5: 0240a49dffea6daea27aa388663edcab - sha256: 1068495f0f8f8b999dda339429dfaf5a8bd2e7a25bb386b6c39fd33ba01753fd - category: main - optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: osx-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: sigtool @@ -5674,124 +4728,101 @@ package: category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b - category: main - optional: false -- name: spdlog - version: 1.12.0 - manager: conda - platform: linux-64 - dependencies: - fmt: '>=10.1.1,<11.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - hash: - md5: f37afc6ce10d45b9fae2f55ddc635b9f - sha256: 34c2ac3ecafc109ea659087f2a429b8fd7c557eb75d072e723a9954472726e62 - category: main - optional: false -- name: spdlog - version: 1.12.0 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - fmt: '>=10.1.1,<11.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 1be852e792cca50421504cee933e3063 - sha256: 3bce42d94b4cd5672bde68ec47374e558b2bc481621f759f70b56bf3da12c31f + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda hash: - md5: 1423efca06ed343c1da0fc429bae0779 - sha256: 22d2692c82b73480c9adc80472bfb241262586edaf1dac1a7504434e47185d3c + md5: 77ea8dff5cf8550cc8f5629a6af56323 + sha256: e849d576e52bf3e6fc5786f89b7d76978f2e2438587826c95570324cb572e52b category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + __osx: '>=10.13' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.2-h7461747_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.46.0-h28673e1_0.conda hash: - md5: fc4dae09f6b38084f3bfc87c77032584 - sha256: c9c1b7d6025d5efa74f4ddbda1ae72a721f041ad3d4a6ec3dda600befe9dffaa + md5: b76e50276ebb3131cb84aac8123ca75d + sha256: 7d868d34348615450c43cb4737b44987a0e45fdf4759502b323494dc8c931409 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda hash: - md5: 207e01ffa0eb2d2efb83fb6f46365a21 - sha256: eee484177184c7876d258917ab3f209396e6fc59e9bf3603a3ebf1ce8b39df80 + md5: 06c5dec4ebb47213b648a6c4dc8400d6 + sha256: 3077a32687c6ccf853c978ad97b77a08fc518c94e73eb449f5a312f1d77d33f0 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.0.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.1.2-hf036a51_0.conda hash: - md5: 5eaa877d08099311d615c23a4549482d - sha256: 51414c2e9b9f26b71a94037e3969dbfa9f65a2feaf31b7fb0d9905b5fef0e56e + md5: 89a3e90b3433159eec5e9a7db235e419 + sha256: 2eafa66a8ecf0ae24e255771668ad42d3163466bb482c26dc7e4d128b8b9aa69 category: main optional: false - name: sysroot_linux-64 - version: '2.12' + version: '2.17' manager: conda platform: linux-64 dependencies: - kernel-headers_linux-64: 2.6.32 - url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda + _sysroot_linux-64_curr_repodata_hack: 3.* + kernel-headers_linux-64: 3.10.0 + tzdata: '' + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda hash: - md5: 595db67e32b276298ff3d94d07d47fbf - sha256: b4e4d685e41cb36cfb16f0cb15d2c61f8f94f56fab38987a44eff95d8a673fb5 + md5: 223fe8a3ff6d5e78484a9d58eb34d055 + sha256: b892b0b9c6dc8efe8b9b5442597d1ab8d65c0dc7e4e5a80f822cbdf0a639bd77 category: main optional: false - name: tapi @@ -5807,88 +4838,32 @@ package: category: main optional: false - name: tbb - version: 2021.11.0 + version: 2021.12.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libhwloc: '>=2.9.3,<2.9.4.0a0' + libhwloc: '>=2.11.1,<2.11.2.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda hash: - md5: 4531d2927578e7e254ff3bcf6457518c - sha256: ded4de0d5a3eb7b47ed829f0ed0e3c61ccd428308bde52d8d22ced228038223b + md5: c667c11d1e488a38220ede8a34441bff + sha256: e901e1887205a3f90d6a77e1302ccc5ffe48fd30de16907dfdbdbf1dbef0a177 category: main optional: false - name: tbb - version: 2021.11.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - libhwloc: '>=2.9.3,<2.9.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.11.0-h7728843_1.conda - hash: - md5: 29e29beba9deb0ef66bee015c5bf3c14 - sha256: 6d531daba5ccf150b58d434fa72b1da0da04e8f14ab71bdad289a90d355f47e8 - category: main - optional: false -- name: tiledb - version: 2.21.2 - manager: conda - platform: linux-64 - dependencies: - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' - libgcc-ng: '>=12' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda - hash: - md5: 04fcd8b5da3c8c8cf17f6ba7e8f839f9 - sha256: 414b441a41b40f509721d145f946b5e59c5d390b53ee04cf993302a73e6b5920 - category: main - optional: false -- name: tiledb - version: 2.21.2 + version: 2021.12.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' libcxx: '>=16' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.21.2-h0d80af6_0.conda + libhwloc: '>=2.11.1,<2.11.2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h3c5361c_3.conda hash: - md5: 7b0a0b85bf1cea8aa81e273dfb4fc815 - sha256: 5ea975c68f855a5cf617fb2c7a70c0814e57c3a84f6108a13b9fda89a5446a86 + md5: b0cada4d5a4cf1cbf8598b86231b5958 + sha256: e6ce25cb425251f74394f75c908a7a635c4469e95e0acc8f1106f29248156f5b category: main optional: false - name: tk @@ -5897,7 +4872,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc @@ -5909,37 +4884,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda hash: md5: bf830ba5afc507c6232d4ef0fb1a882d sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 category: main optional: false -- name: tzcode - version: 2024a - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda - hash: - md5: 32146e34aaec3745a08b6f49af3f41b0 - sha256: d3ea2927cabd6c9f27ee0cb498f893ac0133687d6a9e65e0bce4861c732a18df - category: main - optional: false -- name: tzcode - version: 2024a - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2024a-h10d778d_0.conda - hash: - md5: 8d50ba6668dbd193cd42ccd9099fa2ae - sha256: e3ee34b2711500f3b1d38309d47cfd7e4d05c0144f0b2b2bdfbc271a28cfdd76 - category: main - optional: false - name: tzdata version: 2024a manager: conda @@ -5963,28 +4914,56 @@ package: category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda hash: - md5: c5edf07141147789784f89d5b4e4a9ad - sha256: ec997599b6dcfef34242c67b695c4704d9ba6cb0b9de8f390defa475a95cdb3f + md5: d71d3a66528853c0a1ac2c02d79a0284 + sha256: 2aad2aeff7c69a2d7eecd7b662eef756b27d6a6b96f3e2c2a7071340ce14543e category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: osx-64 dependencies: - libcxx: '>=14' - url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.7-he965462_1.conda + __osx: '>=10.9' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.8-h6aefe2f_0.conda + hash: + md5: 649890a63cc818b24fbbf0572db221a5 + sha256: fec8e52955fc314580a93dee665349bf430ce6df19019cea3fae7ec60f732bdd + category: main + optional: false +- name: wayland + version: 1.23.0 + manager: conda + platform: linux-64 + dependencies: + libexpat: '>=2.6.2,<3.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda + hash: + md5: c13ca0abd5d1d31d0eebcf86d51da8a4 + sha256: 5f2572290dd09d5480abe6e0d9635c17031a12fd4e68578680e9f49444d6dd8b + category: main + optional: false +- name: wayland-protocols + version: '1.36' + manager: conda + platform: linux-64 + dependencies: + wayland: '' + url: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda hash: - md5: a342f2d5573ebdb1cba60ef2947c1b7f - sha256: 1f3563325ce2f9b28b6dfbc703f3cac4d36095d2103c40648338533f4cb80b63 + md5: c6f690e7d4abf562161477f14533cfd8 + sha256: ee18ec691d0c80b9493ba064930c1fedb8e7c369285ca78f7a39ecc4af908410 category: main optional: false - name: wheel @@ -6204,14 +5183,14 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda hash: - md5: 077b6e8ad6a3ddb741fce2496dd01bec - sha256: 3e53ba247f1ad68353f18aceba5bf8ce87e3dea930de85d36946844a7658c9fb + md5: 4a6d410296d7e39f00bacdee7df046e9 + sha256: 66eabe62b66c1597c4a755dcd3f4ce2c78adaf7b32e25dfee45504d67d7735c1 category: main optional: false - name: xorg-libx11 @@ -6219,14 +5198,15 @@ package: manager: conda platform: osx-64 dependencies: - libxcb: '>=1.15,<1.16.0a0' + __osx: '>=10.13' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-hc955faf_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-h7022169_1.conda hash: - md5: e13813931395ae85d3bbf7122d25e7c3 - sha256: eddb6d3f9c7bc105d9eff4b5c6093a8888e0988d0b448e680ed662bec7e0466e + md5: f09e69ee27a9aaf14a1698600f8e7f55 + sha256: eab0b85b6bf75724979bbf13f8b060efb7b159b5b5ce03c649f1ffad9f282bf1 category: main optional: false - name: xorg-libxau @@ -6350,14 +5330,14 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - xorg-libx11: '>=1.7.0,<2.0a0' - xorg-libxext: 1.3.* - xorg-libxt: '>=1.2.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 + libgcc-ng: '>=12' + xorg-libx11: '>=1.8.9,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + xorg-libxt: '>=1.3.0,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda hash: - md5: 3cdb89236358326adfce12be820a8af3 - sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b + md5: 4d6c9925cdcda27e9d022e40eb3eac05 + sha256: a34986d71949ba714b27080c8ebb4932857f6e2ebd6383fbb1639415b30f4fd0 category: main optional: false - name: xorg-libxrender @@ -6497,53 +5477,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/binary-p3.11.yml b/locks/binary-p3.11.yml index 2faa5464..bbb6ae18 100644 --- a/locks/binary-p3.11.yml +++ b/locks/binary-p3.11.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: 2ce551995e53e538a9ab0c13a373612b1fbd36cd039c92bb1ee197eca53a3059 - osx-64: 9b30ab7180fe5d9a85cb03f138edeeb79cbe8b099bda70be0cc68d856cc102a8 + linux-64: 4d9c552d1ce2b61d4e443f11acc2783e84a20c5742b36018b24a11c01d5e1bdc + osx-64: 1fa7ff269b4ce9c75388503137848d30067c997914a7ed7bfa7cf3154b1dbe6b channels: - url: conda-forge used_env_vars: [] @@ -51,512 +51,41 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 category: main optional: false -- name: aom - version: 3.8.2 +- name: _sysroot_linux-64_curr_repodata_hack + version: '3' manager: conda platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda - hash: - md5: 625e1fed28a5139aed71b3a76117ef84 - sha256: 49b1352e2b9710b7b5400c0f2a86c0bb805091ecfc6c84d3dbf064effe33bfbf - category: main - optional: false -- name: aom - version: 3.8.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.8.2-h73e2aa4_0.conda - hash: - md5: a519a6b9f8f0e2ce1b4ee77cbc6a0a09 - sha256: 967d05b46e0a8153c57070a94262d38ffc03378803c1faa0bad258e8635d3775 - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda - hash: - md5: ce96c083829ab2727c942243ac93ffe0 - sha256: 75a540b313e5dc212fc0a6057f8a5bee2dda443f17a5a076bd3ea4d7195d483e - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda - hash: - md5: 0b451cddce1ea8f9247b386ba3285edc - sha256: f75a39577b61fc649e3a8c926b91218ebad6ea78beb2f2b16f90d3ae9493c1c4 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda - hash: - md5: ce2471034f5459a39636aacc292c96b6 - sha256: e45d9f1eb862f566bdea3d3229dfc74f31e647a72198fe04aab58ccc03a30a37 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda - hash: - md5: 393dbe9973160cb09cb3594c9246e260 - sha256: cb9b20aeec4cd037117fd0bfe2ae5a0a5f6a08a71f941be0f163bb27c87b98ea - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda - hash: - md5: d44fe0d9a6971a4fb245be0055775d9d - sha256: c71dd835b1d8c7097c8d152a65680f119a203b73a6a62c5aac414bafe5e997ad - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda - hash: - md5: c620ac518f3086eaf4f105f64908a57c - sha256: 1d207a8aee42700763e6a7801c69721ccc06ce75e62e0e5d8fc6df0197c0a88b - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda - hash: - md5: b0d9153fc7cfa8dc36b8703e1a59f5f3 - sha256: 7fcc6a924691f9de65c82fd559cb1cb2ebd121c42da544a9a43623d69a284e23 - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda - hash: - md5: ffd7cfb55b1aa4e3eef477583b1ad87d - sha256: 021cee135f0d9b58fbc8d212618cd9bd6bd0012da41a6469edf010b2853dd3ef - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda - hash: - md5: 58fc78e523e35a08423c913751a51fde - sha256: 38a30beabafc1dd86c0264b6746315a1010e541a1b3ed7f97e1702873e5eaa51 - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda - hash: - md5: 0923a8e81839b0b2d9787d85d635b196 - sha256: 65ea5552f7a87783b75a3ecf6e4acd2aee5357c4275a9932d732ee516acab0a9 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda - hash: - md5: 8476ec099649e9a6de52f7f4d916cd2a - sha256: 0dc5b73aa31cef3faeeb902a11f12e1244ac241f995d73e4f4e3e0c01622f7a1 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda - hash: - md5: d287122dfb77c5fa0147fdf368c86d54 - sha256: a3e6bfd71bbc4119da1e79f2bce6094f045112c230b3fd5cc9e6ccd36aba3156 - category: main - optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - s2n: '>=1.4.8,<1.4.9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda - hash: - md5: cbf8138080ea12e9d9d66cf7c8bee325 - sha256: 5d7c7af98276949cee0e731ecedbd7e80135a3c3c3ea8246808ebb270732ae69 - category: main - optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_2.conda - hash: - md5: 95e1a36ee569ff79e7eeccaf0ec1fe76 - sha256: ccb7eb57008cf89526694d5248878c6feffa9022aed0d657cb6a631b57f68026 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda - hash: - md5: 14ad8defb307e1edb293c3fc9da8648f - sha256: 6b2de4a0e6e907310127b1025a0030d023e1051da48ea5821dcc6db094d69ab7 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda - hash: - md5: c8bacb9a988fd8fb6b560a966c4979a8 - sha256: 99304e5095193b937745d0ce6812d0333186a31c41a51b1e4297ddcd962824eb - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda - hash: - md5: 0086628487f8888df34f024a0a0d0289 - sha256: fef9c9a628f4f18b509a79bab6e9356724c957058464af5624757cc8c6f0536e - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.5-h6f42f56_0.conda - hash: - md5: 868fbd186bc64457777c705162fd0d88 - sha256: a8cbf29cd471db62b42c0191411d66e446f3454dbb2d5daebd07bee670c1688d - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda - hash: - md5: 258194cedccd33fd8a7b95a8aa105015 - sha256: 349a05cf5fbcb3f6f358fc05098b210aa7da4ec3ab6d4719c79bb93b50a629f8 - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda - hash: - md5: bb1523b7de7ac6f112b1992cfcfb250b - sha256: 77f58ac3aec0cd987f80e202a8197e123beb13b9b25b0137dd921c7a6ddc86ac - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda - hash: - md5: 8a04fc5a5ecaba31f66904b47dcc7797 - sha256: 9080f064f572ac1747d32b4dff30452ff44ef2df399e6ec7bf9730da1eb99bba - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda - hash: - md5: f17e778398011e88d45edf58f24c18ae - sha256: 5760728e7320a01519bcbbae8dcd31b86e819f66c58f641b86b27ce592e5fff3 - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda - hash: - md5: 44b522426a11ab2afbd09b0746b0e4cd - sha256: f6734310a4b948f4e838748c793b75fac8af195819e9986ae935ef8ab2632a8a - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.4-h25b5da4_3.conda - hash: - md5: 0bfe8548d21b566e2bd65c2fed90869e - sha256: 16c0d8f4d04f18e576ccf9fba2314956cd8667a0d14b1363cd627b600e87e890 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda - hash: - md5: 3e735ae06073894080acd78365e78936 - sha256: b5515e6012fc858c6dd3ccf36009470d4ab6e3ba283934809112cca2874fb185 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-hd2aab46_4.conda - hash: - md5: 76c6a4d1839a71361c31d9bcce3601b7 - sha256: ce10e38c01771663a0491a5190078484c5c3ae7be315e5b02fc1bc87e4c9856e - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: linux-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda - hash: - md5: 2dbab1d281b7e1da05eee544cbdc8af6 - sha256: 810a890bf66d6368637399ef415dcc8152acd28f4b4b61d4048b7be7cba17d4c - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: osx-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.11.1-hbb1e571_1.conda - hash: - md5: 6e982efd0947cd3e9ba4223fbd988508 - sha256: 4b22a5e01ebd7f09c869cea73ae4853fb18a10a5716c8984598327e34eb2f9da - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: linux-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda hash: - md5: 1e63d3866554a4d2e3d1cba5f21a2841 - sha256: c88f6bc72ef42fd09471d4c4b2293fa17f730e3ba10290a0bb86de0ff7e9b195 + md5: 1c005af0c6ff22814b7c52ee448d4bea + sha256: 6ac30acdbfd3136ee7a1de28af4355165291627e905715611726e674499b0786 category: main optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: osx-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.10.0-h7728843_1.conda - hash: - md5: dc24ba551b749b6bab11e0ef22dc3438 - sha256: 2c68d1d28bdf9d465843bdb6818868e0b0af46dafc1f4e41df0af33241707113 - category: main - optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: linux-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda hash: - md5: f364272cb4c2f4ce2341067107b82865 - sha256: 7143e85cfadcc3c789c879e66c3e6dbf8b6d5822d1d75b5b3063955279348233 + md5: 346722a0be40f6edc53f12640d301338 + sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 category: main optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: osx-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' + __osx: '>=10.13' libcxx: '>=16' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.5.0-h0e82ce4_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda hash: - md5: 8a980ef5c6bc0677f5a60d5d60a4efdd - sha256: ecff365d3cdf3b5b04a6f823ec75b07459fb6cc312475180f7a33a237242ea27 + md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8 + sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5 category: main optional: false - name: binutils @@ -565,10 +94,10 @@ package: platform: linux-64 dependencies: binutils_impl_linux-64: '>=2.40,<2.41.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda hash: - md5: ccc940fddbc3fcd3d79cd4c654c4b5c4 - sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c + md5: df53aa8418f8c289ae9b9665986034f8 + sha256: 75d7f5cda999fe1efe9f1de1be2d3e4ce32b20cbf97d1ef7b770e2e90c062858 category: main optional: false - name: binutils_impl_linux-64 @@ -578,10 +107,10 @@ package: dependencies: ld_impl_linux-64: '2.40' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda hash: - md5: 33084421a8c0af6aef1b439707f7662a - sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d + md5: 3f840c7ed70a96b5ebde8044b2f36f32 + sha256: 230f3136d17fdcf0e6da3a3ae59118570bc18106d79dd29bf2f341338d2a42c4 category: main optional: false - name: binutils_linux-64 @@ -591,43 +120,44 @@ package: dependencies: binutils_impl_linux-64: 2.40.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda hash: - md5: 2d9a60578bc28469d9aeef9aea5520c3 - sha256: d114b825acef51c1d065ca0a17f97e0e856c48765aecf2f8f164935635013dd2 + md5: bb3fb8553a669828501e80d13b6bd744 + sha256: b88a28156805c12e8ad363f49e27da26c176ed340b0f96cb9b6450bf7a6047f1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -635,45 +165,49 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: c-compiler @@ -684,10 +218,10 @@ package: binutils: '' gcc: '' gcc_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda hash: - md5: fad1d0a651bf929c6c16fbf1f6ccfa7c - sha256: 19343f6cdefd0a2e36c4f0da81ed9ea964e5b4e82a2304809afd8f151bf2ac8c + md5: e9dffe1056994133616378309f932d77 + sha256: 4213b6cbaed673c07f8b79c089f3487afdd56de944f21c4861ead862b7657eb4 category: main optional: false - name: c-compiler @@ -699,32 +233,32 @@ package: clang_osx-64: 16.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_1.conda hash: - md5: 4652f33fe8d895f61177e2783b289377 - sha256: c32fdb29dac5e1a01aa486aba1f7b21cff5c1c7748c0cf9b6c9475888b61eb17 + md5: d27411cb82bc1b76b9f487da6ae97f1d + sha256: a8e2e2b121e61e3d6a67aa618602815211573e96477ab048176a831ae622bfaf category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: cairo @@ -737,22 +271,22 @@ package: freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.2,<1.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxrender: '>=0.9.11,<0.10.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda hash: - md5: f907bb958910dc404647326ca80c263e - sha256: 142e2639a5bc0e99c44d76f4cc8dce9c6a2d87330c4beeabb128832cd871a86e + md5: b6d90276c5aee9b4407dd94eb0cd40a8 + sha256: 51cfaf4669ad83499b3da215b915c503d36faf6edf6db4681a70b5710842a86c category: main optional: false - name: cairo @@ -760,21 +294,21 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.4,<1.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h9f650ed_2.conda hash: - md5: 13f830b1bf46018f7062d1b798d53eca - sha256: f8d1142cf244eadcbc44e8ca2266aa61a05b6cda5571f9b745ba32c7ebbfdfba + md5: d264e5b9759cab8d203cdfe43eabd8b5 + sha256: 1d2480538838cf5009df0285a73aa405798bc49de0c689ab270f543f5ae961aa category: main optional: false - name: cctools @@ -799,7 +333,7 @@ package: ld64_osx-64: '>=711,<712.0a0' libcxx: '' libllvm16: '>=16.0.6,<16.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' sigtool: '' url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-ha1c5b94_0.conda hash: @@ -807,49 +341,16 @@ package: sha256: 16ef6a8dd367d7d4d7b3446f73ed95b07603d6b5b3256c3acab9b3a9006ef7eb category: main optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgfortran-ng: '' - libgfortran5: '>=12.3.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda - hash: - md5: 446ac3db6cb017e3dd067cc35cf51442 - sha256: fe50510b705d2adf6f7c162293f788ee7fa2eebd33adf30856723667e6a45586 - category: main - optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: osx-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgfortran: 5.* - libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.4.0-h60fb419_0.conda - hash: - md5: fea202fa33621a6c8a8a7146af6b34b7 - sha256: 476c45686fd8b3309117fc5c37ce29338f6f241f2598e3506f85ca196fc41cc9 - category: main - optional: false - name: clang version: 16.0.6 manager: conda platform: osx-64 dependencies: clang-16: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-hdae98eb_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-default_h179603d_9.conda hash: - md5: 884e7b24306e4f21b7ee08dabadb2ecc - sha256: 71d2fa8174aedf549313fccf6fbc63ef08fdc898891ffba56dd376226649fa13 + md5: 1acf03a00abda70355ef2978cfce3e9b + sha256: 0553d08f7c917801841db35755d03c2e3c593145e7bb540d848ff60e9a59342d category: main optional: false - name: clang-16 @@ -857,16 +358,17 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libclang-cpp16: 16.0.6 libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 1c298568c30efe7d9369c7c15b748461 - sha256: 5a8dcab3b23552c6e93967ecc7e13c0e40c3f8e96ba26a4d942fa528ed5b449e + md5: bdd24ee262fd1c08f6e0a8173140321d + sha256: 26d405aeb42d84c904b551f5efa00ba3b8e4ec6577f62cecaa849fb1e485137f category: main optional: false -- name: clang_impl_osx-64 +- name: clang_osx-64 version: 16.0.6 manager: conda platform: osx-64 @@ -876,22 +378,10 @@ package: compiler-rt: 16.0.6.* ld64_osx-64: '' llvm-tools: 16.0.6.* - url: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-16.0.6-h8787910_11.conda - hash: - md5: ed9c90270c77481fc4cfccd0891d62a8 - sha256: 2174b2a01fb60da87b383405100bb6d5eac54fb8e84d2ce5f6a0488627c055fc - category: main - optional: false -- name: clang_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-hb91bd55_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-h8787910_2.conda hash: - md5: 24123b15e9c0dad9c0d5fd9da0b4c7a9 - sha256: 86b4928261c21546b9bae5a58975a5ade6256be0aacd8d0f7a3126150bad3967 + md5: efd22736de32ae376efc729b0b5af8a2 + sha256: 44150a183de949cfbba1c871af31ed4cf96b9500736848bac07714a4d432ede6 category: main optional: false - name: clangxx @@ -900,38 +390,26 @@ package: platform: osx-64 dependencies: clang: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h179603d_9.conda hash: - md5: cc8c007a529a7cfaa5d29d8599df3fe6 - sha256: 422e471cb572b977c7ff3aec6c89fc6af365c5e5a4e29feaa780519c9a20e84d + md5: 0cad937ac54668f5bd98ab7c6a76374c + sha256: 149c705d66303ab4ffe153b7d45625bdd4d131607178336e7a5a5fa45253c9d9 category: main optional: false -- name: clangxx_impl_osx-64 +- name: clangxx_osx-64 version: 16.0.6 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' clang_osx-64: 16.0.6 clangxx: 16.0.6.* - libcxx: '>=16' + libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-16.0.6-h6d92fbe_11.conda - hash: - md5: a658c595675bde00373347b22a974810 - sha256: 944d9cb8052eefec3182380454bf8a3f1b2a93c5ea992f8681ef45e975492983 - category: main - optional: false -- name: clangxx_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_osx-64: 16.0.6 - clangxx_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-hb91bd55_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-h1b7723c_2.conda hash: - md5: e49aad30263abdcb785e610981b7c2c7 - sha256: 664e769eecf1d07d07729f4902ef07f2f5b11bc033adfd84637ce9742f3267a1 + md5: 9b40be235bc26c0949debeca13a35305 + sha256: 3b300a28e5a22146763309db69c80171db76bace3d5c1fd54623509936368e48 category: main optional: false - name: compiler-rt @@ -969,10 +447,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda hash: - md5: 81458b3aed8ab8711951ec3c0c04e097 - sha256: db059492391adfbed877d611870e01b6e0660c14fbe72dec5e17d1842b51581d + md5: d8d07866ac3b5b6937213c89a1874f08 + sha256: f50660a6543c401448e435ff71a2849faae203e3362be7618d994b6baf345f12 category: main optional: false - name: compilers @@ -983,10 +461,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_1.conda hash: - md5: 3576aa54986a3e2a5370e4232b35c036 - sha256: 0f219384ea4a1aaac26148f20a3ddb5fcb19f4a748b742e66e2b92a1af3a08a8 + md5: 875e9b06186a41d55b96b9c1a52f15be + sha256: c4db9ad330ae0baf68e77673eb3953d966e08c5e5993b0cc8c003d62c026068a category: main optional: false - name: cxx-compiler @@ -997,10 +475,10 @@ package: c-compiler: 1.7.0 gxx: '' gxx_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda hash: - md5: b4537c98cb59f8725b0e1e65816b4a28 - sha256: 9278c12ed455a39a50d908381786540c9fd1627e4489dca9638b3e222c86d3f7 + md5: 28de2e073db9ca9b72858bee9fb6f571 + sha256: cf895938292cfd4cfa2a06c6d57aa25c33cc974d4ffe52e704ffb67f5577b93f category: main optional: false - name: cxx-compiler @@ -1010,10 +488,10 @@ package: dependencies: c-compiler: 1.7.0 clangxx_osx-64: 16.* - url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_1.conda hash: - md5: 8abaa2694c1fba2b6bd3753d00a60415 - sha256: fe198da9a3ea1f3d1c9f18cceff633594549ef80c20bdb9522beb4b4446be09c + md5: e04cb15a20553b973dd068c2dc81d682 + sha256: 844b0894552468685c6a9f7eaab3837461e1ebea5c3880d8de616c83b618f044 category: main optional: false - name: dav1d @@ -1040,44 +518,45 @@ package: category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: linux-64 dependencies: hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda hash: - md5: f12ca97c38833a5a179adc172155d15d - sha256: 964b3b53ca1c116fa0480912ec85fe182d8db6866607448b5b3ae73b0bf370e8 + md5: 6d8c86d0368625b6503d696db70ea041 + sha256: cccb49014366103ff5405c8b52f191cf8a9ceec6aedfe000418bdc1c11dc20cc category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.34.1-h40b907c_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.36.0-h96318c6_0.conda hash: - md5: 20dc150b88956b981f1e0a56cadc3437 - sha256: 0473cf51b54171f1e8dd1b48a765b070b14bd9f801ee01594645e80bbea11918 + md5: 9ef1b3475a7c8a75a24b3a3302808171 + sha256: ec058f68ad00fc52620440992e1be8d9812a4d9ab6ad7f9f6cf99fdd1f4843e2 category: main optional: false - name: expat @@ -1106,11 +585,12 @@ package: category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: linux-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __glibc: '>=2.17,<3.0.a0' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1118,48 +598,50 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-gpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-gpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-npu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' libstdcxx-ng: '>=12' - libva: '>=2.21.0,<3.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxcb: '>=1.15,<1.16.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libva: '>=2.22.0,<3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxcb: '>=1.16,<1.17.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda hash: - md5: a9865c001fa2e03272895e23b10bc55f - sha256: 844dfa9e64bd20453a36f94a7110b6db48b47db5095f7bbb395f56eb55831f10 + md5: 107fd9222d9f628608b07b69abba9420 + sha256: b264eb69ddcc15bdbd74e7ce57b96350483abdfaa73d485dd4efcca0f4d8507f category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: osx-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __osx: '>=10.13' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1167,35 +649,35 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.1-gpl_h9654dba_107.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-7.0.1-gpl_hb3e10e8_104.conda hash: - md5: 656eb681c293b9e07d3dfba0ba3f6d06 - sha256: 1b60bdfa05370d217bd97aa7ae477e8237f3d63340009c5915ab7e45ddabe662 + md5: 973b150f71301149def599cd44a88545 + sha256: 76e9f20fe02283843ba418cb199270dfbc76c457496473029882916addda9e0d category: main optional: false - name: fltk @@ -1207,22 +689,22 @@ package: libgcc-ng: '>=12' libglu: '' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda hash: - md5: ddcdbcc4fb8918767d6145239c1965bd - sha256: 8287ad80f3d56fdcd454b671cb3d4fa55baf6abe9104680ce5c470d2eb03f3c0 + md5: c82be18188e73e00064101a46e46e785 + sha256: ee14e3fe574e5c1820cd67d620e608330417f23725080da5120aa864eaf3b53f category: main optional: false - name: fltk @@ -1230,49 +712,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-he73b29e_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-ha50d76c_1.conda hash: - md5: 9b4d34b0accb2d0572f3a21cbf075a85 - sha256: 2a8aa3d7444e6c9eae75cb21dcf8f6f2283968ef035f2bad99f645e938b9b16b - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - hash: - md5: 35ef8bc24bd34074ebae3c943d551728 - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - hash: - md5: ab205d53bda43d03f5c5b993ccb406b3 - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc + md5: a958392eb3607deaab9de701d24cf159 + sha256: 0904ed13fe6590e89b74ace95fbbcc3f8155f6e2287318383d7813ba4bb04207 category: main optional: false - name: font-ttf-dejavu-sans-mono @@ -1346,10 +803,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: font-ttf-ubuntu @@ -1357,10 +814,10 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: fontconfig @@ -1372,7 +829,7 @@ package: freetype: '>=2.12.1,<3.0a0' libgcc-ng: '>=12' libuuid: '>=2.32.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda hash: md5: 0f69b688f52ff6da70bccb7ff7001d1d @@ -1386,7 +843,7 @@ package: dependencies: expat: '>=2.5.0,<3.0a0' freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda hash: md5: 86cc5867dfbee4178118392bae4a3c89 @@ -1456,10 +913,10 @@ package: c-compiler: 1.7.0 gfortran: '' gfortran_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda hash: - md5: 7ef7c0f111dad1c8006504a0f1ccd820 - sha256: 1e4da85586882c4f52f99d63615f0d8548d71be4c82e363485d6ca7bddf0074a + md5: cf4b0e7c4c78bb0662aed9b27c414a3c + sha256: 4293677cdf4c54d13659a3f9ac15cae778310811c62add29bb2e70630756317a category: main optional: false - name: fortran-compiler @@ -1472,10 +929,10 @@ package: gfortran_osx-64: 12.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_1.conda hash: - md5: 2c11db8b46df0a547997116f0fd54b8e - sha256: 2470272c1dc170763c364042e5630ce840a39fce500e57adcfe29f193a585f79 + md5: 48319058089f492d5059e04494b81ed9 + sha256: 994007a99553e495d397de45484f3aaccfd1cd730019c146903785c0abebadeb category: main optional: false - name: freeglut @@ -1485,16 +942,16 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxi: '' - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda hash: - md5: 6e553df297f6e64668efb54302e0f139 - sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f + md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 + sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 category: main optional: false - name: freeimage @@ -1511,7 +968,7 @@ package: libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda @@ -1533,7 +990,7 @@ package: libraw: '>=0.21.1,<0.22.0a0' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-hdc0ade2_20.conda @@ -1549,7 +1006,7 @@ package: dependencies: libgcc-ng: '>=12' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda hash: md5: 9ae35c3d96db2c94ce0cef86efdfa2cb @@ -1562,7 +1019,7 @@ package: platform: osx-64 dependencies: libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda hash: md5: 25152fce119320c980e5470e64834b50 @@ -1627,10 +1084,10 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda hash: - md5: 413e326f8a01d041ffbfbb51cea46a93 - sha256: 60669bb79c79d6f6929c67b334acd9dc885dccfb7371e41de7626090dc06e408 + md5: e42d156a1e3dd5651c89d7606b5a4a45 + sha256: 4f1f5bd8d0c5be91158d6e25fe1a183bb63d64b76da14ca6c619d5702fa112d8 category: main optional: false - name: gcc_impl_linux-64 @@ -1638,17 +1095,17 @@ package: manager: conda platform: linux-64 dependencies: - binutils_impl_linux-64: '>=2.39' + binutils_impl_linux-64: '>=2.40' libgcc-devel_linux-64: 12.3.0 libgcc-ng: '>=12.3.0' libgomp: '>=12.3.0' libsanitizer: 12.3.0 libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda hash: - md5: e89827619e73df59496c708b94f6f3d5 - sha256: a87826c55e6aa2ed5d17f267e6a583f7951658afaa4bf45cd5ba97f5583608b9 + md5: 93325fff774c4cc8dcc8c65039cb4646 + sha256: a6039b425279c4e080ac019d393ccb1b082698d48b83ec5660d96ef3c849b6a9 category: main optional: false - name: gcc_linux-64 @@ -1659,110 +1116,112 @@ package: binutils_linux-64: '2.40' gcc_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda hash: - md5: 7a53f84c45bdf4656ba27b9e9ed68b3d - sha256: 836692c3d4948f25a19f9071db40f7788edcb342d771786a206a6a122f92365d + md5: 954881ce9897d01c7c2031fb93ed366b + sha256: e8f7b8dbe97b6115d212fa9e2b9a53b960db09fd9bc5fb903e401f35507f161f category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: linux-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libgdal: 3.8.5 + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.23.5,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py311h8be719e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py311h4a2bcd2_7.conda hash: - md5: d3bc7957b9c0c51dc95de7c41fadd877 - sha256: 9d5c2309427869bd3857b77a5855dfb3a07ca5f991eeaddb8637c4ff41346289 + md5: 7d19ea8cc5af0c87610762aaba932e3a + sha256: cda3e838773fc1498df67f676626f72193691f23f2d5d115c19403db01dbb14f category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' libcxx: '>=16' - libgdal: 3.8.5 - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.23.5,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.8.5-py311haaa0e4f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.9.1-py311hd949df7_7.conda hash: - md5: f78711b9b05bf16874e9ebaf7aa74ac8 - sha256: c2eb395d7b70184d7d28a61296822138f6190cf807294dd4ffa2c4296fc41eb0 + md5: ba2a7f1c4b446c33e9bcd1ca42064777 + sha256: be23e3c743d64cd3266f0ee62cf2a289bb4d9412b512238b2a2e496877a17ed5 category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda hash: - md5: 8c0f4f71f5a59ceb0c6fa9f51501066d - sha256: 2593b255cb9c4639d6ea261c47aaed1380216a366546f0468e95c36c2afd1c1a + md5: 621d814955342209dc8e7f87c41f1ba0 + sha256: 8ccddcf6263f972122d2ea7388b881194dcd9bc8e1092b4440b7a7572c65b226 category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.2-hf036a51_0.conda hash: - md5: d13f05ed3985f57456b610bab66366db - sha256: 6feffb0d1999a22c5f94d2168b1af9c5fbdd25c9a963a6825ee32cf05e5c07f5 + md5: 69d6f60244f3a1fa8cfc34a9be856f19 + sha256: 43f959ac8f463b78a66cd6c2fd772bf68228e360559e74e774150aa2541b1f52 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda hash: - md5: aadc00cd5e330b5f7fb289446c23ab23 - sha256: 882cf1ef5bb0f176e9bc3da5a9783e11fce467d87ebbe76c0d0aa88bfa06de46 + md5: 8ff4fa3ab0b63dc5b214a68839499e41 + sha256: df00139c22b1b2ab1e1e48bb94c68febcc40a7ca812bd4f228a3e09ac9d2cdf2 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h7c2ff5c_16.conda + url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.3-h4bbec01_1.conda hash: - md5: c505170a140041f1ef9758df72b00b26 - sha256: e9277328123fa387561c53ee08c7758f8801eef1ee4caa982bca86480b002c9d + md5: 94b592c68bb826b1ffee62524b117aa2 + sha256: 7f5c0d021822e12cd64848caa77d43398cea90381f420d6f973877f3eccc2188 category: main optional: false - name: gettext @@ -1836,10 +1295,10 @@ package: gcc: 12.3.0.* gcc_impl_linux-64: 12.3.0.* gfortran_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda hash: - md5: 6b0b27394cf439d0540f949190556860 - sha256: f97482f7d85062ad61e7092eeca8a1a130fbf811cb8fb39be841072be3a81d95 + md5: da3ce6140908b41fb8fb205104b54ae6 + sha256: b5b181a4bed88036cf9b8a1476c0fe62fd6e7f8d7408507dd68861dee55775bf category: main optional: false - name: gfortran @@ -1862,14 +1321,14 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: '>=12.3.0' - libgcc-ng: '>=4.9' + libgcc-ng: '>=12.3.0' libgfortran5: '>=12.3.0' - libstdcxx-ng: '>=4.9' + libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda hash: - md5: 4d72ee7c82f8a9b2ecef4fcefa9acd19 - sha256: b965de2c6987ed5ecbbcdf2ea3c3ae8020d1eea81ab915c4cf2bddf37c1ff195 + md5: 96471c6bcf708822422bd9f78dbecc3b + sha256: a99c9bc4cf9883647b0abc25511ece611fd9cb96a1560b35fff5385a06059509 category: main optional: false - name: gfortran_impl_osx-64 @@ -1883,7 +1342,7 @@ package: libgfortran-devel_osx-64: 12.3.0.* libgfortran5: '>=12.3.0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpc: '>=1.3.1,<2.0a0' mpfr: '>=4.2.0,<5.0a0' zlib: '' @@ -1902,10 +1361,10 @@ package: gcc_linux-64: 12.3.0 gfortran_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda hash: - md5: 3a9e5b8a6f651ff14e74d896d8f04ab6 - sha256: f2285e33370851e689e70fa8b5a34a44b0271aff9831a027f302e062cb498cdd + md5: d77e515e624f3edb33ac89997322b5a8 + sha256: 62c99e466d1e034d22f2e57c0e95101a92f467824e18cfdedbdc18866d5ae063 category: main optional: false - name: gfortran_osx-64 @@ -1928,26 +1387,26 @@ package: category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda hash: - md5: 96f3b11872ef6fad973eac856cd2624f - sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b + md5: 3bf7b9fd5a7136126e0234db4b87c8b6 + sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.2-h10d778d_0.conda hash: - md5: aca150b0186836f893ebac79019e5498 - sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d + md5: 03e8c9b4d3da5f3d6eabdd020c2d63ac + sha256: 2c825df829097536314a195ae5cacaa8695209da6b4400135a65d8e23c008ff8 category: main optional: false - name: gmp @@ -1957,10 +1416,10 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda hash: - md5: e358c7c5f6824c272b5034b3816438a7 - sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 + md5: c94a5994ef49749880a8139cf9afcbe1 + sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c category: main optional: false - name: gmp @@ -1968,11 +1427,12 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda hash: - md5: 92f8d748d95d97f92fc26cfac9bb5b6e - sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 + md5: 427101d13f19c4974552a4e5b072eef1 + sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc category: main optional: false - name: gmsh @@ -1990,7 +1450,7 @@ package: liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' xorg-libx11: '>=1.8.7,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' @@ -2017,7 +1477,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' zlib: '' url: https://conda.anaconda.org/conda-forge/osx-64/gmsh-4.12.2-h48a2193_0.conda @@ -2093,10 +1553,10 @@ package: dependencies: gcc: 12.3.0.* gxx_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda hash: - md5: 8c50a4d15a8d4812af563a684d598910 - sha256: 12c8d969b1b6acf1bf4f7c7399993dd3d422a713ad6d7ab9343f6b990f8373a0 + md5: c3a3cf9cf544bd621a18add719056529 + sha256: fb1d5d87be5d23b2eaab45afcd62560ffda12ba870a3c1a2da6293dd8d5d4587 category: main optional: false - name: gxx_impl_linux-64 @@ -2107,10 +1567,10 @@ package: gcc_impl_linux-64: 12.3.0 libstdcxx-devel_linux-64: 12.3.0 sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda hash: - md5: cddba8fd94e52012abea1caad722b9c2 - sha256: 69371a1e8ad718b033bc1c58743a395e06ad19d08a2ff97e264ed82fd3ccbd9c + md5: bb4fe41bc0584a3f6d3026634170c330 + sha256: 34225c17afdd49219220d9fad1bc5b0b1bdc01c5e2faa8eb75f4fe471758bdc1 category: main optional: false - name: gxx_linux-64 @@ -2122,14 +1582,14 @@ package: gcc_linux-64: 12.3.0 gxx_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda hash: - md5: 9ec22c7c544f4a4f6d660f0a3b0fd15c - sha256: 5a842fc69c03ac513a2c021f3f21afd9d9ca50b10b95c0dcd236aa77d6d42373 + md5: 26155c2e3afafee809654f86f434c234 + sha256: 8e1068c185f0558933a7d7aa1fb1d310ac3e1acf219f4926925733a8c333971a category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: linux-64 dependencies: @@ -2138,30 +1598,30 @@ package: graphite2: '' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.1,<3.0a0' + libglib: '>=2.80.2,<3.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda hash: - md5: 5a6f6c00ef982a9bc83558d9ac8f64a0 - sha256: 4b55aea03b18a4084b750eee531ad978d4a3690f63019132c26c6ad26bbe3aed + md5: c7b47c64af53e8ecee01d101eeab2342 + sha256: 5854e5ac2d3399ef30b59f15045c19fa5f0bab94d116bd75cac4d05181543dc3 category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' cairo: '>=1.18.0,<2.0a0' freetype: '>=2.12.1,<3.0a0' graphite2: '' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.3.0-hf45c392_0.conda + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-9.0.0-h053f038_0.conda hash: - md5: 41d890485f909e4ecdc608741718c75e - sha256: c6ea14e4f4869bc78b27276c09832af845dfa415585362ed6064e37a1b5fe9c5 + md5: 0a4256cad662dc36666221a2a8daa34e + sha256: eb94445e4ea3e794582f47365d3b429adfddc24209a39bb8102f17198a0661e1 category: main optional: false - name: hdf4 @@ -2172,7 +1632,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -2186,7 +1646,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -2198,18 +1658,18 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda hash: - md5: d471a5c3abc984b662d9bae3bb7fd8a5 - sha256: b814f8f9598cc6e50127533ec256725183ba69db5fd8cf5443223627f19e3e59 + md5: 7e1729554e209627636a0f6fabcdd115 + sha256: 2278fa07da6f96e807d402cd55480624d67d2dee202191aaaf278ce5ab23605a category: main optional: false - name: hdf5 @@ -2217,18 +1677,18 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_105.conda hash: - md5: 8e2ac4ae815a8c9743fe37d70f48f075 - sha256: 158dd2ab901659b47e8f7ee0ec1d9e45a1fedc4871391a44a1c8b9e8ba4c9c6b + md5: 98544299f6bb2ef4d7362506a3dde886 + sha256: 98f8350730d09e8ad7b62ca6d6be38ee2324b11bbcd1a5fe2cac619b12cd68d7 category: main optional: false - name: icu @@ -2262,7 +1722,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda hash: md5: 07268e57799c7ad50809cadc297a515e @@ -2275,7 +1735,7 @@ package: platform: osx-64 dependencies: libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.11-h2d185b6_0.conda hash: md5: 39c1f288d263e971db74f8803e28dabd @@ -2295,7 +1755,7 @@ package: category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: linux-64 dependencies: @@ -2303,22 +1763,23 @@ package: libgcc-ng: '>=12' libglu: '>=9.0.0,<10.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda hash: - md5: 05c1609de571f7a9a40e6d7d4116c21a - sha256: 5cc5e2ae5127d655747a377e267ff40856c262a00f52cc6840238cfdb52368c4 + md5: 9518ab7016cf4564778aef08b6bd8792 + sha256: 0a5ca92ea0261f435c27a3c3c5c5bc5e8b4b1af1343b21ef0cbc7c33b62f5239 category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.3-h6ff19ee_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.4-hb10263b_0.conda hash: - md5: fe830a9cdfb229efde037ce4c8b5d677 - sha256: 1ec4bc54e277af13b6016d69c8f3fe769a56d0642f3e60783aaf03536c0220af + md5: b7a6171ecee244e2b2a19177ec3c34a9 + sha256: da2c2fa393b89596cf0f81c8e73db2e9b589ae961058317f6fcb4867e05055dd category: main optional: false - name: jigsaw @@ -2351,22 +1812,24 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda hash: - md5: 9961b1f100c3b6852bd97c9233d06979 - sha256: 5646496ca07dfa1486d27ed07282967007811dfc63d6394652e87f94166ecae3 + md5: f8f0f0c4338bad5c34a4e9e11460481d + sha256: 0caf06ccfbd6f9a7b3a1e09fa83e318c9e84f2d1c1003a9e486f2600f4096720 category: main optional: false - name: json-c version: '0.17' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h6253ea5_1.conda hash: - md5: 266d2e4ebbf37091c8322937392bb540 - sha256: 2a493095fe1292108ff1799a1b47ababe82d844bfa3abcf2252676c1017a1e04 + md5: fb72a2ef514c2df4ba035187945a6dcf + sha256: 66ddd1a4d643c7c800a1bb8e61f5f4198ec102be37db9a6d2e037004442eff8d category: main optional: false - name: jxrlib @@ -2386,48 +1849,22 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda - hash: - md5: cfaf81d843a80812fe16a68bdae60562 - sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: linux-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda - hash: - md5: f7e7077802927590efc8bf7328208f12 - sha256: ee0934ff426d3cab015055808bed33eb9d20f635ec14bc421c596f4b70927102 - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: osx-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.3-h5f07ac3_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda hash: - md5: 7a0924f6214e4c17b6062b21d1240253 - sha256: 54a847faf2d2aea83c149d98634646edb8e7f346faefc6af1aa52106200b43aa + md5: cfaf81d843a80812fe16a68bdae60562 + sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b category: main optional: false - name: kernel-headers_linux-64 - version: 2.6.32 + version: 3.10.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda + dependencies: + _sysroot_linux-64_curr_repodata_hack: 3.* + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda hash: - md5: d731b543793afc0433c4fd593e693fce - sha256: fb39d64b48f3d9d1acc3df208911a41f25b6a00bd54935d5973b4739a9edd5b6 + md5: ff7f38675b226cfb855aebfc32a13e31 + sha256: a55044e0f61058a5f6bab5e1dd7f15a1fa7a08ec41501dbfca5ab0fc50b9c0c1 category: main optional: false - name: keyutils @@ -2443,7 +1880,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -2451,25 +1888,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: lame @@ -2555,10 +1993,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 category: main optional: false - name: lerc @@ -2587,28 +2025,30 @@ package: category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda hash: - md5: 75648bc5dd3b8eab22406876c24d81ec - sha256: 9951421311285dd4335ad3aceffb223a4d3bc90fb804245508cd27aceb184a29 + md5: c48fc56ec03229f294176923c3265c05 + sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hf036a51_1.conda hash: - md5: 819934a15bc13a0d30778bf18446ada6 - sha256: 30c0f569949a2fa0c5fd9aae3416e3f6623b9dd6fccdaa8d3437f143b67cca2a + md5: d6c78ca84abed3fea5f308ac83b8f54e + sha256: 396d18f39d5207ecae06fddcbc6e5f20865718939bc4e0ea9729e13952833aac category: main optional: false - name: libaec @@ -2637,43 +2077,44 @@ package: category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda hash: - md5: 3bf887827d1968275978361a6e405e4f - sha256: 340ed0bb02fe26a2b2e29cedf6559e2999b820f434e745c108e788d629ae4b17 + md5: 32ddb97f897740641d8d46a829ce1704 + sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936 category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libiconv: '>=1.17,<2.0a0' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda hash: - md5: 8c7b79b20a67287a87b39df8a8c8dcc4 - sha256: f458515a49c56e117e05fe607493b7683a7bf06d2a625b59e378dbbf7f308895 + md5: 82a85fa38e83366009b7f4b2cef4deb8 + sha256: 9e46db25e976630e6738b351d76d9b79047ae232638b82f9f45eba774caaef8a category: main optional: false - name: libasprintf @@ -2734,14 +2175,14 @@ package: fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda hash: - md5: c306fd9cc90c0585171167d09135a827 - sha256: 1bc3e44239a11613627488b7a9b6c021ec6b52c5925abd666832db0cb2a59f05 + md5: 25db2ea6b8fefce451369e2cc826f6f4 + sha256: 59ac3fc42b4cee09b04379aa3e91d6d45fdfc8a52afbfa1f9f32e99abbca3137 category: main optional: false - name: libass @@ -2749,17 +2190,18 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h80904bb_1.conda + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h5386a9e_2.conda hash: - md5: 9ccad0aebe916aa3715fda9eefe92584 - sha256: f97c70aa61ecc1b43907cf0322215a58f19e0723ee67b4ebd02146da24f03976 + md5: eb6c82cd6a0217884ee0ac8c974543ba + sha256: 92f425a8f1373fab13877d887a2c03220878983575313d1f0670fcea117bed8b category: main optional: false - name: libblas @@ -2786,28 +2228,6 @@ package: sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59 category: main optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda - hash: - md5: 85d30a3fcc0f1cfc252776208af546a1 - sha256: 5a7843db33422d043256af27f288836f51530b058653bdb074704eb72282f601 - category: main - optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.84.0-h694c41f_2.conda - hash: - md5: 37678c6938655e8862e121b48101365a - sha256: e51f3b877ab4a7a68bf1e1f95e9b007d716e85547078bfd5f6f7f114545dc26e - category: main - optional: false - name: libcblas version: 3.9.0 manager: conda @@ -2837,83 +2257,60 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h7151d67_6.conda - hash: - md5: 7eaad118ab797d1427f8745c861d1925 - sha256: 8d77bf8bb12e4dff0bdc0d6dbc9ec674a46470c4e51a1fc8ffec16ed7da3365f - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - hash: - md5: c965a5aa0d5c1c37ffc62dff36e28400 - sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5 - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 23d6d5a69918a438355d7cbc4c3d54c9 - sha256: 3043869ac1ee84554f177695e92f2f3c2c507b260edad38a0bf3981fce1632ff + md5: 1d2344f627433a89f189b8aeb503eaa6 + sha256: fec5b4a971bfa09348d1cf0f7adfa00015aea31ea12027dc38b36b2eeda16dde category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libdeflate @@ -2940,16 +2337,16 @@ package: category: main optional: false - name: libdrm - version: 2.4.120 + version: 2.4.122 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libpciaccess: '>=0.18,<0.19.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda hash: - md5: 7c3071bdf1d28b331a06bda6e85ab607 - sha256: 8622f52e517418ae7234081fac14a3caa8aec5d1ee5f881ca1f3b194d81c3150 + md5: bbfc4dbe5e97b385ef088f354d65e563 + sha256: 74c59a29b76bafbb022389c7cfa9b33b8becd7879b2c6b25a1a99735bf4e9c81 category: main optional: false - name: libedit @@ -3050,129 +2447,107 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: e12ce6b051085b8f27e239f5e5f5bce5 - sha256: ed2dfc6d959dc27e7668439e1ad31b127b43e99f9a7e77a2d34b958fa797316b + md5: 7fc690ec9db2902e5ee90cebfdab31e7 + sha256: 60c21686f4a715106fba21b1c22401710fd9f288a6402d6fdc65aa14e66e0ec7 category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libuuid: '>=2.38.1,<3.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda hash: - md5: bbc8dad387da810666640cb8609964df - sha256: 2434c6d51515805f8177210e5f183c5881332378b575beeb43afda5a0b3ae3bd + md5: 85fcff96b59d3e3a812601d713931d4f + sha256: 62296ded701499cf64c72c7bb1ab690754a50464cc3cd8124d57f9012c6b2d34 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: osx-64 dependencies: - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.8.5-h4f2ca4b_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-core-3.9.1-hb16c948_7.conda hash: - md5: 2a9e484d2523dd69dd0eb5045e0d69a0 - sha256: b7626d21c15b247df862632c4329e4946baedcb56e7d2d8bc1e7f65918501a2d + md5: 1b131ccbc9918802ada8468de898f235 + sha256: f9127a7bf525925fe4378f5aeb4fd95a53f2ba6fd7ae262574c71b09141fe7d1 category: main optional: false - name: libgettextpo @@ -3251,27 +2626,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -3287,35 +2662,36 @@ package: category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: linux-64 dependencies: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda hash: - md5: 0269d2b7fa89f4a37cdee5ad6161f6cc - sha256: 99983c2514dd99da1bab50e9a25ed16cfc1d46aca0385c3be177c8e299731b51 + md5: 6ea440297aacee4893f02ad759e6ffbc + sha256: 5f5854a7cee117d115009d8f22a70d5f9e28f09cb6e453e8f1dd712e354ecec9 category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libffi: '>=3.4,<4.0a0' libiconv: '>=1.17,<2.0a0' libintl: '>=0.22.5,<1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.0-h81c1438_3.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.3-h736d271_1.conda hash: - md5: de78445096d2846df7f4f5fa5c252560 - sha256: 0da6453549cc49d7258f3db76adc7ffb8e5fec524fb3c3af14a2ba1842bee0f7 + md5: 0919d467624606fbc05c38c458f3f42a + sha256: bfd5a28140d31f9310efcdfd1136f36d7ca718a297690a1a8869b3a1966675ae category: main optional: false - name: libglu @@ -3325,167 +2701,55 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-xextproto: '>=7.3.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda hash: - md5: 50c389a09b6b7babaef531eb7cb5e0ca - sha256: 8368435c41105dc3e1c02896a02ecaa21b77d0b0d67fc8b06a16ba885c86f917 + md5: df069bea331c8486ac21814969301c1f + sha256: c4a14878c2be8c18b7e89a19917f0f6c964dd962c91a079fe5e0c6e8b8b1bbd4 category: main optional: false - name: libgomp - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda - hash: - md5: d211c42b9ce49aee3734fdc828731689 - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda - hash: - md5: 4b4e36a91e7dabf7345b82d85767a7c3 - sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda - hash: - md5: 3f2faf53ecb3b51b92b3eee155b50233 - sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libgcc-ng: '>=12' - libgoogle-cloud: 2.22.0 - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - hash: - md5: 7811f043944e010e54640918ea82cecd - sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libcxx: '>=16' - libgoogle-cloud: 2.22.0 - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda - hash: - md5: 0c25180c34b1a58d309b28386698fb6e - sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: linux-64 - dependencies: - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda - hash: - md5: 564517a8cbd095cff75eb996d33d2b7e - sha256: 1d4ece94dfef73d904dcba0fd9d56098796f5fdc62ea5f9edff60c71be7a3d63 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda hash: - md5: 2ac05daca7276a4d6ca4465707670380 - sha256: 8c9898d259e2343df52259b599ec342c386679e1c420df603cba6f06078fcdd6 + md5: ae061a5ed5f05818acdf9adab72c146d + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda hash: - md5: f36ddc11ca46958197a45effdd286e45 - sha256: 6950fee24766d03406e0f6f965262a5d98829c71eed8d1004f313892423b559b + md5: f54aeebefb5c5ff84eca4fb05ca8aa3a + sha256: 8473a300e10b79557ce0ac81602506b47146aff3df4cc3568147a7dd07f480a2 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.9.3-default_h24e0189_1009.conda + __osx: '>=10.13' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.1-default_h456cccd_1000.conda hash: - md5: 22fcbfd2a4cdf941b074a00b773b43dd - sha256: a9fc54b481d0477cdf5700d702d44fc04fe00ffe63fc253aa0c6d2944abe8f3f + md5: a14989f6bbea46e6ec4521a403f63ff2 + sha256: 0b5294c8e8fc5f9faab7e54786c5f3c4395ee64b5577a1f2ae687a960e089624 category: main optional: false - name: libiconv @@ -3591,16 +2855,16 @@ package: manager: conda platform: linux-64 dependencies: - libboost-headers: '' - libexpat: '>=2.5.0,<3.0a0' + __glibc: '>=2.17,<3.0.a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda hash: - md5: 3eb5f16bcc8a02892199aa63555c731f - sha256: f67fc0be886c7eac14dbce858bfcffbc90a55b598e897e513f0979dd2caad750 + md5: 6d76c5822cb38bc1ab5a06565c6cf626 + sha256: 5bd19933cb3790ec8632c11fa67c25d82654bea6c2bc4f51f8bcd8b122ae96c8 category: main optional: false - name: libkml @@ -3608,15 +2872,15 @@ package: manager: conda platform: osx-64 dependencies: - libboost-headers: '' - libcxx: '>=15.0.7' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda + __osx: '>=10.13' + libcxx: '>=16' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hfcbc525_1020.conda hash: - md5: 535b1bb4896b113c14dfa64141370a12 - sha256: f546750a59b85a4b721f69e34e797ceddb93c438ee384db285e3344490d6a9b5 + md5: 055d429f351b79c0a7b7d7e39ff45b28 + sha256: 20dec455f668ab2527d6a20204599253ac0b2d4d0325e4a1ce2316850128cc3e category: main optional: false - name: liblapack @@ -3650,7 +2914,7 @@ package: dependencies: libcxx: '>=16' libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda hash: @@ -3667,20 +2931,20 @@ package: bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda hash: - md5: b2414908e43c442ddc68e6148774a304 - sha256: 0b4d984c7be21531e9254ce742e04101f7f7e77c0bbb7074855c0806c28323b0 + md5: a908e463c710bd6b10a9eaa89fdf003c + sha256: 055572a4c8a1c3f9ac60071ee678f5ea49cfd7ac60a636d817988a6f9d6de6ae category: main optional: false - name: libnetcdf @@ -3688,24 +2952,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7760872_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7334405_114.conda hash: - md5: bce76ace6497221c2a2a02840aaceac5 - sha256: 3d6a950d82a8dfb9fa51c263e543cfa9c113703add20646ec85401e7b557da49 + md5: 32ffbe5b0b0134e49f6347f4de8c5dcc + sha256: a4af96274a6c72d97e84dfc728ecc765af300de805d962a835c0841bb6a8f331 category: main optional: false - name: libnghttp2 @@ -3717,7 +2981,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -3734,7 +2998,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -3762,10 +3026,10 @@ package: libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda hash: - md5: a356024784da6dfd4683dc5ecf45b155 - sha256: 2ae7559aed0705deb3f716c7b247c74fd1b5e35b64e39834ce8b95f7564d4a3e + md5: ae05ece66d3924ac3d48b4aa3fa96cec + sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39 category: main optional: false - name: libopenblas @@ -3773,354 +3037,390 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libgfortran: 5.* libgfortran5: '>=12.3.0' llvm-openmp: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_h8869122_1.conda hash: - md5: 00237c9c7f2cb6725fe2960680a6e225 - sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 + md5: c0798ad76ddd730dade6ff4dff66e0b5 + sha256: 83b0b9d3d09889b3648a81d2c18a2d78c405b03b115107941f0496a8b358ce6d category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda hash: - md5: 126a2a61d276c4268f71adeef25bfc33 - sha256: 901d6a974cf86c96f5ec29e7ef0e3a3bcf128ad9f48ee65d244d796512c2c8f5 + md5: 9511859bf5221238a2d3fb5322af01d5 + sha256: 32ce474983e78acb8636e580764e3d28899a7b0a2a61a538677e9bca09e95415 category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.2.0-h3d2f4b3_1.conda hash: - md5: 9d8a53bb2dbc55cee97d7c5093164e5b - sha256: 18359d9a5d343a89fd9fb8d0dc7890b290c52fbfc51fc2fdc7e639246ddccc60 + md5: 0ee799269d5b7c9c8b61f9e6de123eea + sha256: 87aade1bf653042543ae5f32f854f131e8b44ff236edf9d74797a4e1d2e3728d category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda hash: - md5: de9c380fea8634540db5fc8422888df1 - sha256: 7997f2e1e24d79dbecbc7a275a0aef495cdb25018b19ab982b23147cfe80f659 + md5: 70d82a64e6d07f4d6e07cae6b0bd4bd1 + sha256: 083e72464866b857ff272242f887b46a5527e20e41d292db55a4fa10aa0808c6 category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: bc0a89ad1ab1fdc0ac29434109086c86 - sha256: 735797a48790d2317ca18d081ae3fa96cede63bd7c1d749d95aabebd946e4b1b + md5: 23f03915c4359149231458da782f2ffb + sha256: dd22f7789ccfbd1a54fb31b7d737f2c623d5bc52dcebbabeba6bec71e4a77ec5 category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda hash: - md5: de1cbf145ecdc1d29af18e14eb267bca - sha256: 1ec1dc0cf9aa4e1879145f0d8645d6132d19e7f8ea0a678b500ee96a110527e7 + md5: f1e2a8ded23cef03804c4edb2edfb986 + sha256: db945b8a8d716d0c6f80cc5f07fd79692c8a941a9ee653aab6f7d2496f6f163b category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: 99efdc8defbec695d3b5c02359dc2c92 - sha256: d417139fa5501b8765085443e811e91c90c4a45350378f34dc0fa2121edc4f3b + md5: 922ba14bf1052b849a0abc90b3042437 + sha256: 6273fa16c6023b5cc1df146195f23279be054267eab11045a805b7422ca52c93 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda hash: - md5: 016b763e4776b4c2c536420a7e6a2349 - sha256: 6b530d036bf3a608c6cae2de4ab8f7e9471b53603c63b10d0a04c211e3325b1f + md5: 95d2d3baaa1e456ef65c713a5d99b815 + sha256: 6924426d9f88a54bfcc8aa2f5d9d7aeb69c839f308cd3b37aedc667157fc90f1 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.2.0-h280e65d_1.conda hash: - md5: cece1c44db441905aa3caaa79b1c8a86 - sha256: 37bc25f92b6803d7d4a1e5424c780a75ad1eda4974ca6dbcc4cbb573e240a377 + md5: 8f7279cbec42f59497e174f62405e2f7 + sha256: 94f025bdbc1147e8470b80b9cc69f0ee2f5f9dab5dee7c5d45b769c76832a88a category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda hash: - md5: d866cc8dc37f101505e65a4372794631 - sha256: 2daa2f6fc584674adee84b036a9a267a6bcae731c912326efda155f2328586d8 + md5: 9e49f87d8f99dc9724f52b3fac904106 + sha256: f2a4f0705e56ad8e25e4b20929e74ab0c7d5867cd52f315510dff37ea6508c38 category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.2.0-h3d2f4b3_1.conda hash: - md5: 0714af035978be750d5e1f9adc8ee4cb - sha256: eb5985f740ee97b8a30efd7ff6a48c36e3eb33678bf7a3f6fb53d5fc4bcc9cc7 + md5: cb7b9d64ca63eb70c579f7af4169f2d3 + sha256: 8fe13c8c576bfac296971539418e096ce3aa58c3c27790121c62a64c35fe0781 category: main optional: false - name: libopenvino-intel-gpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' ocl-icd: '>=2.3.2,<3.0a0' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda + hash: + md5: a9712fae44d01d906e228c49235e3b89 + sha256: c15a90baed7c3ad46c51d2ec70087cc3fb947dbeaea7e4bc93f785e9d12af092 + category: main + optional: false +- name: libopenvino-intel-npu-plugin + version: 2024.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libopenvino: 2024.2.0 + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda hash: - md5: 6ebefdc74cb700ec82cd6702125cc422 - sha256: 15f0ad9ea10829d8964253b08667af015dfa4befa0afd2e6f3a44110f6efcb96 + md5: 5c2d064181e686cf5cfac6f1a1ee4e91 + sha256: c2f4f1685b3662b0f18f6647fe7a46a0c061f78e017e3d9815e326171f342ba6 category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda hash: - md5: 6397395a4677d59bbd32c4f05bb8fa63 - sha256: 09c91b8701764154b41a2c82d0412939e5625c712edfe965496930cdad6c822e + md5: 89addf0fc0f489fa0c076f1c8c0d62bf + sha256: eb183fa65b43cc944ad3d1528cdb5c533d3b4ccdd8ed44612e2c89f962a020ce category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.2.0-h280e65d_1.conda hash: - md5: c3f40e2622af41f0e597733266a0ec09 - sha256: 64b45b4df151b80988d13f72cec3145ab3773f255e089d21cdb6a7ab7b2dc852 + md5: 2fb0fc2d2f2583682d70847ac23b56b0 + sha256: 8354b19cdb6551ae38e12b82cc352b6e5d288235cd114d4f80d3b63d3d16eb5c category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 24c9cf1dd8f6d6189102a136a731758c - sha256: c29f5bead57bfb14cca7bd89e20f13eb18ec9a4624dcff1d56834454deb3be9c + md5: 9b0a13989b35302e47da13842683804d + sha256: 3f7ea37f5d8f052a1a162d864c01b4ba477c05734351847e9136a5ebe84ac827 category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: 543a343c411d307d3076e021f4eec355 - sha256: 16da5c3b4526a340145e074b32253221059f60389bc6c048cec8dc2767ad357e + md5: 0f0ec68c3d7feac549eae4cd1a7e6542 + sha256: 54b187853047ba743fa570d794858cf4a451bee9db86a2129831b7c81ce4ffae category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 259bd0c788f447fe78aab69895365528 - sha256: cc16cf9103d57d14a4f65b0148ae6197ced75063bebb07533744a1f0675ef294 + md5: 7b3680d3fd00e1f91d5faf9c97c7ae78 + sha256: da2fcf5e9962d5c5e1d47d52f84635648952354c30205c5908332af5999625bc category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: f52039a0882dad166cbc55e1d41c05a4 - sha256: 37de5299f8f9c790f073bf7b5dd2d1c21ee148302fc8087a31291e72f49c0c52 + md5: b420755d98724dc040723df5c0447e5b + sha256: 75efc13d43147bc7e9e02a27e7ab3d050d37d60f7ccc34f902f35bfe91c45200 category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda hash: - md5: ec121a4195acadad086f84719cc91430 - sha256: 2f032e4cec7d24f80ea932c99b0fea896fbf1e4a202453b71b50bc6980d0cfae + md5: ac43b516c128411f84f1e19c875998f1 + sha256: 077470fd8a48b4aafbb46a6ceccd9697a82ec16cce5dcb56282711ec04852e1d category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.2.0-hf036a51_1.conda hash: - md5: 7489363c2aa4d7a29c2b6f2c505099a4 - sha256: a78255491cc455d1b8ac8436996e8112d59f49e6994013a3184f93cf55c6cd0d + md5: a34b2a4c23b4c7867ddba1ad92fadf57 + sha256: 4064f1c92da47c3ce6f8dafcbac80452b49251e09cf244d1c35c34b0df158bcf category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: - libabseil: '>=20240116.1,<20240117.0a0' + __glibc: '>=2.17,<3.0.a0' + libabseil: '>=20240116.2,<20240117.0a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda hash: - md5: bdbf11f760f1a3b35d766e03cebd9c42 - sha256: 3037418cbf5e14964e4c4909ac4f15729db29e990b57d3b2d0b7cf6b0186a3d7 + md5: 11acf52cac790edcf087b89e83834f7d + sha256: 0558659f340bc22a918750e1142a9215bac66fb8cde62279559f4a22d7d11be1 category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' + libabseil: '>=20240116.2,<20240117.0a0' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.0.0-h7d3639a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.2.0-haca2b7f_1.conda hash: - md5: 426d2097dd8f8c129351ab6d0158dde6 - sha256: 077a86295e5b30c8c9f9a140486f6d3b2eff32a9ff7e1c462a28f4e95bd60c66 + md5: 50310e9b533ff331a5a09c90e0c7a2f2 + sha256: fc5bb9c32e8e7eaf432edf9cbc1fe7576373ee36fc6e3f7a8b645aeb56ded965 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda hash: - md5: 4354ea9f30a8c5111403fa4b24a2ad66 - sha256: 792f3a7de81b92a85339082008281dc03359c64ab10d9a93c71856fbefac8333 + md5: e7f91b35e3aa7abe880fc9192a761fc0 + sha256: 896b19b23e0649cdadf972c7380f74b766012feaea1417ab2fc4efb4de049cd4 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.2.0-hf036a51_1.conda hash: - md5: ab2a53b0b8a50397a71b58ad4792c615 - sha256: 7458435a72afd7648cdce5da233407750f14c11e78cb4219b6d30a4a57a7a741 + md5: 01aa2d69ece7efe5270646c5ca774011 + sha256: 11ae1886e8e2535aaff0da48d1f5e8ff176489553c24c0f645331e29c9ccb839 category: main optional: false - name: libopus @@ -4164,7 +3464,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda hash: md5: 009981dd9cfcaa4dbfa25ffaed86bcae @@ -4176,40 +3476,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda hash: md5: 65dcddb15965c9de2c0365cb14910532 sha256: 13e646d24b5179e6b0a5ece4451a587d759f55d9a360b7015f8f96eff4524b8f category: main optional: false -- name: libpq - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda - hash: - md5: 9e49ec2a61d02623b379dc332eb6889d - sha256: e03a8439b79e013840c44c957d37dbce10316888b2b5dc7dcfcfc0cfe3a3b128 - category: main - optional: false -- name: libpq - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpq-16.2-ha925e61_1.conda - hash: - md5: a10ef466bbc68a8e74112a8e26028d66 - sha256: bfb252cb14b88a75ba4af930c16dccae265dce0afdf5abde7de1718181aa2cea - category: main - optional: false - name: libprotobuf version: 4.25.3 manager: conda @@ -4218,7 +3491,7 @@ package: libabseil: '>=20240116.1,<20240117.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda hash: md5: 6945825cebd2aeb16af4c69d97c32c13 @@ -4233,7 +3506,7 @@ package: __osx: '>=10.13' libabseil: '>=20240116.1,<20240117.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda hash: md5: 57b7ee4f1fd8573781cfdabaec4a7782 @@ -4250,7 +3523,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda hash: md5: 63ab3e0cf149917a08af38b2786320c0 @@ -4265,53 +3538,26 @@ package: lcms2: '>=2.15,<3.0a0' libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.21.1-h8138101_2.conda hash: md5: 099b1112ffc520a8d40b16d3ca9d47d0 sha256: e69f7fa11709b96be6d99c3c55768996a61c4c0a675bb57f433b3b712126410e category: main optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - hash: - md5: 41c69fba59d495e8cf5ffda48a607e35 - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - category: main - optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - hash: - md5: c5c36ec64e3c86504728c38b79011d08 - sha256: 384b72a09bd4bb29c1aa085110b2f940dba431587ffb4e2c1a28f605887a1867 - category: main - optional: false - name: librttopo version: 1.1.0 manager: conda platform: linux-64 dependencies: - geos: '>=3.12.1,<3.12.2.0a0' + __glibc: '>=2.17,<3.0.a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda + url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda hash: - md5: 20c3c14bc491f30daecaa6f73e2223ae - sha256: 03e248787162a1804683c614c0681c2488fa6d9f353cb32e2f8c1158157165ea + md5: 3d9f3a2e5d7213c34997e4464d2f938c + sha256: 65bfd9f8915b1fc2523c58bf556dc2b9ed6127b7c6877ed2841c67b717f6f924 category: main optional: false - name: librttopo @@ -4319,13 +3565,13 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - geos: '>=3.12.1,<3.12.2.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-hf05f67e_15.conda + __osx: '>=10.13' + geos: '>=3.12.2,<3.12.3.0a0' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-he2ba7a0_16.conda hash: - md5: e65bedc9d9779a161cf26b6d12305246 - sha256: 10c46efefda5cc77143832a186f517e401098907cf9c3ec7406a5c242bb34e33 + md5: 80cc407788999eb3cd5a3651981e55fd + sha256: 907f602ad39172a98e3062c0d6616535075f5227435753fe2c843eb10891403c category: main optional: false - name: libsanitizer @@ -4334,10 +3580,11 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda + libstdcxx-ng: '>=12.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda hash: - md5: 11d1ceacff40054d5a74b12975d76f20 - sha256: 70329cb8b0604273521cdae63520cb364a8d5477e156e65cdbd810984caeabee + md5: 448dc960d50a75e8286b8427028ec56e + sha256: 78e8578e875fddcd96d626f7ceebe1cda167c2435a87bacf15c2f02ae966ffcf category: main optional: false - name: libspatialite @@ -4345,21 +3592,22 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda hash: - md5: f2e2bdd5fd10493a525503b2f40c59eb - sha256: 4181564a6e7bc0fa854cf8f2ed55e25c166c52da501dd21b39cf5c7567e999cb + md5: 48502f34f5ba86c1ce192cb30f959dc9 + sha256: ba7a298eb6e101ad4c3769c84f0d635c34e677a1879064f41e82598f0a0f5696 category: main optional: false - name: libspatialite @@ -4367,46 +3615,48 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-h487bbac_5.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-hdc25a2c_8.conda hash: - md5: e295a6cf66039ca5ce3dfdbd850a4145 - sha256: 49de77260f5946f8a023309c11f9dabd9c070745afd5f1ba7343342ac6285306 + md5: 51fd57e4f726cea701188184c036c341 + sha256: 860aa6eae736e7f280fcded14541512a98def5f49e9206042b452428d9913509 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda hash: - md5: 866983a220e27a80cb75e85cb30466a1 - sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 18aa975d2094c34aef978060ae7da7d8 + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + __osx: '>=10.13' + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda hash: - md5: 086f56e13a96a6cfb1bf640505ae6b70 - sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 5dadfbc1a567fe6e475df4ce3148be09 + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 category: main optional: false - name: libssh2 @@ -4415,7 +3665,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -4428,7 +3678,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -4440,22 +3690,24 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: b3c6062c84a8e172555ee104ea6a01ab - sha256: efcd4b4cba79cd0fb5a87757c7ca63171cf3b7b06446192364bae7defb50b94c + md5: 3706e34877bd82d04cb1e9e9baeb2739 + sha256: d1993225de21943f76a3cc5cb7d55f88be225001a988068e673171bed130d180 category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libtasn1 @@ -4492,7 +3744,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda @@ -4511,7 +3763,7 @@ package: libdeflate: '>=1.20,<1.21.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h129831d_3.conda @@ -4556,95 +3808,100 @@ package: category: main optional: false - name: libva - version: 2.21.0 + version: 2.22.0 manager: conda platform: linux-64 dependencies: - libdrm: '>=2.4.120,<2.5.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + libdrm: '>=2.4.121,<2.5.0a0' + libgcc-ng: '>=12' + libxcb: '>=1.16,<1.17.0a0' + wayland: '>=1.23.0,<2.0a0' + wayland-protocols: '' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda hash: - md5: e50a2609159a3e336fe4092738c00687 - sha256: b4e3a3fa523a5ddd1eca7981c9d6a9b831a182950116cc5bda18c94a040b63bc + md5: d12f659072132c9d16e497073fc1f68b + sha256: 8a67bda4308a939b2b25337cac1bc7950a1ee755d009c020ab739c4e0607fc2d category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda hash: - md5: 01c76c6d71097a0f3bd8683a8f255123 - sha256: b0e0500fc92f626baaa2cf926dece5ce7571c42a2db2d993a250d4c5da4d68ca + md5: cde393f461e0c169d9ffb2fc70f81c33 + sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13 category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda hash: - md5: 2c087711228029c8eab3301ddff1c386 - sha256: d3980ecf1e65bfbf7e1c57d6f41a66ab4f33c4fe6b71bf9414bb823e2db186fb + md5: 9b8744a702ffb1738191e094e6eb67dc + sha256: 47e70e76988c11de97d539794fd4b03db69b75289ac02cdc35ae5a595ffcd973 category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda hash: - md5: 30de3fd9b3b602f7473f30e684eeea8c - sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0 + md5: b26e8aa824079e1be0294e7152ca4559 + sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda hash: - md5: 4e7e9d244e87d66c18d36894fd6a8ae5 - sha256: fa7580f26fec4c28321ec2ece1257f3293e0c646c635e9904679f4a8369be401 + md5: b2c0047ea73819d992484faacbbe1c24 + sha256: 7bafd8f4c637778cd0aa390bf3a894feef0e1fcf6ea6000c7ffc25c4c5a65538 category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda hash: - md5: 33277193f5b92bad9fdd230eb700929c - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 + md5: 151cba22b85a989c2d6ef9633ffee1e4 + sha256: 7180375f37fd264bb50672a63da94536d4abd81ccec059e932728ae056324b3a category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: osx-64 dependencies: pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.16-h0dc2134_0.conda hash: - md5: 5513f57e0238c87c12dffedbcc9c1a4a - sha256: f41904f466acc8b3197f37f2dd3a08da75720c7f7464d9267635debc4ac1902b + md5: 07e80289d4ba724f37b4b6f001f88fbe + sha256: c64277f586b716d5c34947e7f2783ef0d24f239a136bc6a024e854bede0389a9 category: main optional: false - name: libxcrypt @@ -4660,34 +3917,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 0ac9aff6010a7751961c8e4b863a40e7 + sha256: 11a346aed187405a7d3710a79b815fd66ff80fec3b9b7f840a24531324742acf category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' icu: '>=73.2,<74.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-hc603aa4_3.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: c188d96aea8eaa16efec573fe36a9a13 + sha256: b0cf4a1d3e628876613665ea957a4c0adc30460be859fa859a1eed7eac87330b category: main optional: false - name: libzip @@ -4697,7 +3956,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -4711,7 +3970,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -4720,37 +3979,39 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: llvm-tools @@ -4760,7 +4021,7 @@ package: dependencies: libllvm16: 16.0.6 libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-16.0.6-hbedff68_3.conda hash: @@ -4798,11 +4059,11 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda hash: - md5: bb14fcb13341b81d5eb386423b9d2bac - sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 + md5: ec7398d21e2651e0dcb0044d03b9a339 + sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 category: main optional: false - name: lzo @@ -4810,14 +4071,14 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda hash: - md5: 0b6bca372a95d6c602c7a922e928ce79 - sha256: c8a9401eff2efbbcc6da03d0066ee85d72402f7658c240e7968c64052a0d0493 + md5: bfecd73e4a2dc18ffd5288acf8a212ab + sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -4825,32 +4086,33 @@ package: libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda hash: - md5: 557396140c71eba588e96d597e0c61aa - sha256: 1a56549751f4c4a7998e0a8bcff367c3992cb832c0b211d775cfd644e1ef5e6b + md5: 4474532a312b2245c5c77f1176989b46 + sha256: 6315ea87d094418e744deb79a22331718b36a0e6e107cd7fc3c52c7922bc8133 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.5-h37d7099_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.7-h62b0c8d_0.conda hash: - md5: 2203b2e83c20305b3d669556c345c8e9 - sha256: 426f4db1d56cdefa478a5ece35ed7624860548ace87d6ad927c4c9c6a7a20fec + md5: 9cb19284d7d835918241acf8180099db + sha256: e02a6e1a43b0ff44bb9460d46d3f7687a1876d435fb3c2c6cf9e19bab60901f6 category: main optional: false - name: mpc @@ -4879,26 +4141,26 @@ package: category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: nettle @@ -4924,65 +4186,8 @@ package: sha256: 62de51fc44f1595a06c5b24bb717b949b4b9fb4c4acaf127b92ce99ddb546ca7 category: main optional: false -- name: nspr - version: '4.35' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda - hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - category: main - optional: false -- name: nspr - version: '4.35' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda - hash: - md5: a9e56c98d13d8b7ce72bf4357317c29b - sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libsqlite: '>=3.45.1,<4.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda - hash: - md5: 54b56c2fdf973656b748e0378900ec13 - sha256: a9bc94d03df48014011cf6caaf447f2ef86a5edf7c70d70002ec4b59f5a4e198 - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.98-ha05da47_0.conda - hash: - md5: 79d062716d8e1f77cf806c6fe0f4405c - sha256: 3d99dd976aeb8678e4ac5fcbd574e1de50cdc57b742e22855f294c8047d5c68e - category: main - optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: linux-64 dependencies: @@ -4993,27 +4198,28 @@ package: libstdcxx-ng: '>=12' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py311h1461c94_0.conda hash: - md5: a502d7aad449a1206efb366d6a12c52d - sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 + md5: 4998996a22ef05d2f486216075a3037f + sha256: f5c8070a623a216f999aec9b60b181f0624b7b074cc08189bdb4da6376c01a5d category: main optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' libcxx: '>=16' liblapack: '>=3.9.0,<4.0a0' python: '>=3.11,<3.12.0a0' python_abi: 3.11.* - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py311hc43a94b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.0.0-py311hc11d9cb_0.conda hash: - md5: bb02b8801d17265160e466cf8bbf28da - sha256: dc9628197125ee1d02b2e7a859a769d26291d747ed79337309b8a9e67a8b8e00 + md5: f3e2a534964152fca3ba80bea594f673 + sha256: 0e82d37aa474ce84302775f02d31fe0c762844ec472f5ed8f0db8190d5fd1db9 category: main optional: false - name: occt @@ -5072,7 +4278,7 @@ package: imath: '>=3.1.11,<3.1.12.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda hash: md5: 34e58e21fc28e404207d6ce4287da264 @@ -5086,7 +4292,7 @@ package: dependencies: imath: '>=3.1.11,<3.1.12.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.2.2-h3f0570e_1.conda hash: md5: 95bd8b6b83801d99b064c785585bd15d @@ -5127,7 +4333,7 @@ package: libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda hash: md5: 7f2e286780f072ed750df46dc2631138 @@ -5142,7 +4348,7 @@ package: libcxx: '>=16' libpng: '>=1.6.43,<1.7.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda hash: md5: 05a14cc9d725dd74995927968d6547e3 @@ -5150,28 +4356,29 @@ package: category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: p11-kit @@ -5202,30 +4409,31 @@ package: category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda hash: - md5: 8292dea9e022d9610a11fce5e0896ed8 - sha256: 766dd986a7ed6197676c14699000bba2625fd26c8a890fcb7a810e5cf56155bc + md5: 3914f7ac1761dce57102c72ca7c35d01 + sha256: 90646ad0d8f9d0fd896170c4f3d754e88c4ba0eaf856c24d00842016f644baab category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_0.conda hash: - md5: 9c8651803886ce9d5983e107a0df4ea8 - sha256: 226714bbf89d45bf7da4c7551e21b8a833f51d33379fe3dfbfe31b72832d4dba + md5: b8f63aec37f31ffddac6dfdc0b31a73e + sha256: b397f92ef7d561f817c5336295d6696c72d2576328baceb9dc51bfc772bcb48e category: main optional: false - name: pip @@ -5281,156 +4489,38 @@ package: sha256: 3ab44e12e566c67a6e9fd831f557ab195456aa996b8dd9af19787ca80caa5cd1 category: main optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: linux-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libstdcxx-ng: '>=12' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda - hash: - md5: c688853df9dcfed47200d0e28e5dfe11 - sha256: 0ea3e63ae3ba07bcae8cc541647c647c68aeec32dfbe3bbaeecc845833b27a6f - category: main - optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: osx-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - gettext: '>=0.21.1,<1.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/osx-64/poppler-24.03.0-h0c752f9_0.conda - hash: - md5: 6b55d989edec2e1ea71236ca4cdd4960 - sha256: 05c0e43fda42be7745a68681511125ee244f465a9515fe6d4b564a224ca3b46b - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda - hash: - md5: 7a5806219d0f77ce8393375d040df065 - sha256: 7fc52e69478973f173f055ade6c4087564362be9172c294b493a79671fef9a7e - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.2-h06f2bd8_1.conda - hash: - md5: fe36c4a9254176dde4ca696016c50aa8 - sha256: 2a96af8385c51e97950ed00d802186069bf4933b3be111956508ab6be158d463 - category: main - optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: linux-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda hash: - md5: c97818016ebf8710a0f0cd6c29806493 - sha256: a8fa28987cc1d613dbebf6440af77ef2adaf030f0ca83133872835d3df1faa1c + md5: c38c5246d064ef16eba065d93c46f1c6 + sha256: ec9d16725925c62a7974faa396ca61878cb4cc7398c6c0e76d3ae28cffafc7db category: main optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: osx-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + __osx: '>=10.13' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.0-h23b96cc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.1-hf92c781_0.conda hash: - md5: 290e72714216cf50217e8d0160374356 - sha256: 95ec19f40c92ed4c0a5f20ec0a4db11bf70cc8e891cd031c4ac1b77639d45290 + md5: b128ccdae180135720ab963c68bc2f1a + sha256: c047c55cb2e239d35d7f28fc50225d5798be37af1e84d9036966447c82b373f5 category: main optional: false - name: pthread-stubs @@ -5482,52 +4572,53 @@ package: category: main optional: false - name: python - version: 3.11.8 + version: 3.11.9 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.45.1,<4.0a0' + libsqlite: '>=3.45.3,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libzlib: '>=1.2.13,<2.0.0a0' + ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda hash: - md5: 2fdc314ee058eda0114738a9309d3683 - sha256: f33559d7127b6a892854bc3b2b4be1406c3be9537d658cb13edae57c8c0b5a11 + md5: ac68acfa8b558ed406c75e98d3428d7b + sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 category: main optional: false - name: python - version: 3.11.8 + version: 3.11.9 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: '>=3.45.3,<4.0a0' + libzlib: '>=1.2.13,<2.0.0a0' + ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda hash: - md5: 22bda10a0f425564a538aed9a0e8a9df - sha256: 645dad20b46041ecd6a85eccbb3291fa1ad7921eea065c0081efff78c3d7e27a + md5: 612763bc5ede9552e4233ec518b9c9fb + sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c category: main optional: false - name: python_abi @@ -5553,52 +4644,29 @@ package: category: main optional: false - name: rapidjson - version: 1.1.0 + version: 1.1.0.post20240409 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.3.0' - libstdcxx-ng: '>=7.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda hash: - md5: 37d4fdbb92d573c7d6ab6de74a666dc4 - sha256: 73b74a21dcaafc4a9f43e7f4295ead29d0f3ef13790bad69351942b77294aad8 + md5: d6e98530772fc26c112640461110d127 + sha256: 645e408a91d3c3bea6cbb24e0c208222eb45694978b48e0224424369271ca0ef category: main optional: false - name: rapidjson - version: 1.1.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0-hb1e8313_1002.tar.bz2 - hash: - md5: 6393fe5c6c2d496ab76853628bcf10d9 - sha256: ab46afaae30bf186fb389658bf7e1176508a9a0a93d9ab621f65bd1cbe1faafa - category: main - optional: false -- name: re2 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - hash: - md5: 8f70e36268dea8eb666ef14c29bd3cda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - category: main - optional: false -- name: re2 - version: 2023.09.01 + version: 1.1.0.post20240409 manager: conda platform: osx-64 dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0.post20240409-hf036a51_1.conda hash: - md5: 266f8ca8528fc7e0fa31066c309ad864 - sha256: 5739ed2cfa62ed7f828eb4b9e6e69ff1df56cb9a9aacdc296451a3cb647034eb + md5: 7b32c6b26b7c3a0d97ad484ab6f207c9 + sha256: 07f88271bc5a73fc5a910895bf83bb6046b2b84a3935015c448667aef41abf9e category: main optional: false - name: readline @@ -5626,41 +4694,28 @@ package: sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 category: main optional: false -- name: s2n - version: 1.4.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda - hash: - md5: 0240a49dffea6daea27aa388663edcab - sha256: 1068495f0f8f8b999dda339429dfaf5a8bd2e7a25bb386b6c39fd33ba01753fd - category: main - optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: osx-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: sigtool @@ -5676,124 +4731,101 @@ package: category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b - category: main - optional: false -- name: spdlog - version: 1.12.0 - manager: conda - platform: linux-64 - dependencies: - fmt: '>=10.1.1,<11.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - hash: - md5: f37afc6ce10d45b9fae2f55ddc635b9f - sha256: 34c2ac3ecafc109ea659087f2a429b8fd7c557eb75d072e723a9954472726e62 - category: main - optional: false -- name: spdlog - version: 1.12.0 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - fmt: '>=10.1.1,<11.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 1be852e792cca50421504cee933e3063 - sha256: 3bce42d94b4cd5672bde68ec47374e558b2bc481621f759f70b56bf3da12c31f + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda hash: - md5: 1423efca06ed343c1da0fc429bae0779 - sha256: 22d2692c82b73480c9adc80472bfb241262586edaf1dac1a7504434e47185d3c + md5: 77ea8dff5cf8550cc8f5629a6af56323 + sha256: e849d576e52bf3e6fc5786f89b7d76978f2e2438587826c95570324cb572e52b category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + __osx: '>=10.13' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.2-h7461747_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.46.0-h28673e1_0.conda hash: - md5: fc4dae09f6b38084f3bfc87c77032584 - sha256: c9c1b7d6025d5efa74f4ddbda1ae72a721f041ad3d4a6ec3dda600befe9dffaa + md5: b76e50276ebb3131cb84aac8123ca75d + sha256: 7d868d34348615450c43cb4737b44987a0e45fdf4759502b323494dc8c931409 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda hash: - md5: 207e01ffa0eb2d2efb83fb6f46365a21 - sha256: eee484177184c7876d258917ab3f209396e6fc59e9bf3603a3ebf1ce8b39df80 + md5: 06c5dec4ebb47213b648a6c4dc8400d6 + sha256: 3077a32687c6ccf853c978ad97b77a08fc518c94e73eb449f5a312f1d77d33f0 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.0.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.1.2-hf036a51_0.conda hash: - md5: 5eaa877d08099311d615c23a4549482d - sha256: 51414c2e9b9f26b71a94037e3969dbfa9f65a2feaf31b7fb0d9905b5fef0e56e + md5: 89a3e90b3433159eec5e9a7db235e419 + sha256: 2eafa66a8ecf0ae24e255771668ad42d3163466bb482c26dc7e4d128b8b9aa69 category: main optional: false - name: sysroot_linux-64 - version: '2.12' + version: '2.17' manager: conda platform: linux-64 dependencies: - kernel-headers_linux-64: 2.6.32 - url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda + _sysroot_linux-64_curr_repodata_hack: 3.* + kernel-headers_linux-64: 3.10.0 + tzdata: '' + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda hash: - md5: 595db67e32b276298ff3d94d07d47fbf - sha256: b4e4d685e41cb36cfb16f0cb15d2c61f8f94f56fab38987a44eff95d8a673fb5 + md5: 223fe8a3ff6d5e78484a9d58eb34d055 + sha256: b892b0b9c6dc8efe8b9b5442597d1ab8d65c0dc7e4e5a80f822cbdf0a639bd77 category: main optional: false - name: tapi @@ -5809,88 +4841,32 @@ package: category: main optional: false - name: tbb - version: 2021.11.0 + version: 2021.12.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libhwloc: '>=2.9.3,<2.9.4.0a0' + libhwloc: '>=2.11.1,<2.11.2.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda hash: - md5: 4531d2927578e7e254ff3bcf6457518c - sha256: ded4de0d5a3eb7b47ed829f0ed0e3c61ccd428308bde52d8d22ced228038223b + md5: c667c11d1e488a38220ede8a34441bff + sha256: e901e1887205a3f90d6a77e1302ccc5ffe48fd30de16907dfdbdbf1dbef0a177 category: main optional: false - name: tbb - version: 2021.11.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - libhwloc: '>=2.9.3,<2.9.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.11.0-h7728843_1.conda - hash: - md5: 29e29beba9deb0ef66bee015c5bf3c14 - sha256: 6d531daba5ccf150b58d434fa72b1da0da04e8f14ab71bdad289a90d355f47e8 - category: main - optional: false -- name: tiledb - version: 2.21.2 - manager: conda - platform: linux-64 - dependencies: - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' - libgcc-ng: '>=12' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda - hash: - md5: 04fcd8b5da3c8c8cf17f6ba7e8f839f9 - sha256: 414b441a41b40f509721d145f946b5e59c5d390b53ee04cf993302a73e6b5920 - category: main - optional: false -- name: tiledb - version: 2.21.2 + version: 2021.12.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' libcxx: '>=16' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.21.2-h0d80af6_0.conda + libhwloc: '>=2.11.1,<2.11.2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h3c5361c_3.conda hash: - md5: 7b0a0b85bf1cea8aa81e273dfb4fc815 - sha256: 5ea975c68f855a5cf617fb2c7a70c0814e57c3a84f6108a13b9fda89a5446a86 + md5: b0cada4d5a4cf1cbf8598b86231b5958 + sha256: e6ce25cb425251f74394f75c908a7a635c4469e95e0acc8f1106f29248156f5b category: main optional: false - name: tk @@ -5899,7 +4875,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc @@ -5911,37 +4887,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda hash: md5: bf830ba5afc507c6232d4ef0fb1a882d sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 category: main optional: false -- name: tzcode - version: 2024a - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda - hash: - md5: 32146e34aaec3745a08b6f49af3f41b0 - sha256: d3ea2927cabd6c9f27ee0cb498f893ac0133687d6a9e65e0bce4861c732a18df - category: main - optional: false -- name: tzcode - version: 2024a - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2024a-h10d778d_0.conda - hash: - md5: 8d50ba6668dbd193cd42ccd9099fa2ae - sha256: e3ee34b2711500f3b1d38309d47cfd7e4d05c0144f0b2b2bdfbc271a28cfdd76 - category: main - optional: false - name: tzdata version: 2024a manager: conda @@ -5965,28 +4917,56 @@ package: category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda hash: - md5: c5edf07141147789784f89d5b4e4a9ad - sha256: ec997599b6dcfef34242c67b695c4704d9ba6cb0b9de8f390defa475a95cdb3f + md5: d71d3a66528853c0a1ac2c02d79a0284 + sha256: 2aad2aeff7c69a2d7eecd7b662eef756b27d6a6b96f3e2c2a7071340ce14543e category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: osx-64 dependencies: - libcxx: '>=14' - url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.7-he965462_1.conda + __osx: '>=10.9' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.8-h6aefe2f_0.conda + hash: + md5: 649890a63cc818b24fbbf0572db221a5 + sha256: fec8e52955fc314580a93dee665349bf430ce6df19019cea3fae7ec60f732bdd + category: main + optional: false +- name: wayland + version: 1.23.0 + manager: conda + platform: linux-64 + dependencies: + libexpat: '>=2.6.2,<3.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda + hash: + md5: c13ca0abd5d1d31d0eebcf86d51da8a4 + sha256: 5f2572290dd09d5480abe6e0d9635c17031a12fd4e68578680e9f49444d6dd8b + category: main + optional: false +- name: wayland-protocols + version: '1.36' + manager: conda + platform: linux-64 + dependencies: + wayland: '' + url: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda hash: - md5: a342f2d5573ebdb1cba60ef2947c1b7f - sha256: 1f3563325ce2f9b28b6dfbc703f3cac4d36095d2103c40648338533f4cb80b63 + md5: c6f690e7d4abf562161477f14533cfd8 + sha256: ee18ec691d0c80b9493ba064930c1fedb8e7c369285ca78f7a39ecc4af908410 category: main optional: false - name: wheel @@ -6206,14 +5186,14 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda hash: - md5: 077b6e8ad6a3ddb741fce2496dd01bec - sha256: 3e53ba247f1ad68353f18aceba5bf8ce87e3dea930de85d36946844a7658c9fb + md5: 4a6d410296d7e39f00bacdee7df046e9 + sha256: 66eabe62b66c1597c4a755dcd3f4ce2c78adaf7b32e25dfee45504d67d7735c1 category: main optional: false - name: xorg-libx11 @@ -6221,14 +5201,15 @@ package: manager: conda platform: osx-64 dependencies: - libxcb: '>=1.15,<1.16.0a0' + __osx: '>=10.13' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-hc955faf_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-h7022169_1.conda hash: - md5: e13813931395ae85d3bbf7122d25e7c3 - sha256: eddb6d3f9c7bc105d9eff4b5c6093a8888e0988d0b448e680ed662bec7e0466e + md5: f09e69ee27a9aaf14a1698600f8e7f55 + sha256: eab0b85b6bf75724979bbf13f8b060efb7b159b5b5ce03c649f1ffad9f282bf1 category: main optional: false - name: xorg-libxau @@ -6352,14 +5333,14 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - xorg-libx11: '>=1.7.0,<2.0a0' - xorg-libxext: 1.3.* - xorg-libxt: '>=1.2.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 + libgcc-ng: '>=12' + xorg-libx11: '>=1.8.9,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + xorg-libxt: '>=1.3.0,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda hash: - md5: 3cdb89236358326adfce12be820a8af3 - sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b + md5: 4d6c9925cdcda27e9d022e40eb3eac05 + sha256: a34986d71949ba714b27080c8ebb4932857f6e2ebd6383fbb1639415b30f4fd0 category: main optional: false - name: xorg-libxrender @@ -6499,53 +5480,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/binary-p3.12.yml b/locks/binary-p3.12.yml index 0753ed40..9828c27e 100644 --- a/locks/binary-p3.12.yml +++ b/locks/binary-p3.12.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: 1adaad59fd871fe1ba9c4ac6e713f376dff0aff91993991f4b5026446a4ff24e - osx-64: cd6edc09e776406a346177dcd8475c6a7b0e3338d3ba7ab46ae0c3f9603a5c1c + linux-64: e490117e0a12cf3d4e9a6bf8c65e52f35eab8a87c865d1c356cb62d10377df87 + osx-64: c0b5cd9638e29944b4ff7039ec47e48ad171b0d13100a36061bdaf2ddc641f89 channels: - url: conda-forge used_env_vars: [] @@ -50,512 +50,41 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 category: main optional: false -- name: aom - version: 3.8.2 +- name: _sysroot_linux-64_curr_repodata_hack + version: '3' manager: conda platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda - hash: - md5: 625e1fed28a5139aed71b3a76117ef84 - sha256: 49b1352e2b9710b7b5400c0f2a86c0bb805091ecfc6c84d3dbf064effe33bfbf - category: main - optional: false -- name: aom - version: 3.8.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.8.2-h73e2aa4_0.conda - hash: - md5: a519a6b9f8f0e2ce1b4ee77cbc6a0a09 - sha256: 967d05b46e0a8153c57070a94262d38ffc03378803c1faa0bad258e8635d3775 - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda - hash: - md5: ce96c083829ab2727c942243ac93ffe0 - sha256: 75a540b313e5dc212fc0a6057f8a5bee2dda443f17a5a076bd3ea4d7195d483e - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda - hash: - md5: 0b451cddce1ea8f9247b386ba3285edc - sha256: f75a39577b61fc649e3a8c926b91218ebad6ea78beb2f2b16f90d3ae9493c1c4 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda - hash: - md5: ce2471034f5459a39636aacc292c96b6 - sha256: e45d9f1eb862f566bdea3d3229dfc74f31e647a72198fe04aab58ccc03a30a37 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda - hash: - md5: 393dbe9973160cb09cb3594c9246e260 - sha256: cb9b20aeec4cd037117fd0bfe2ae5a0a5f6a08a71f941be0f163bb27c87b98ea - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda - hash: - md5: d44fe0d9a6971a4fb245be0055775d9d - sha256: c71dd835b1d8c7097c8d152a65680f119a203b73a6a62c5aac414bafe5e997ad - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda - hash: - md5: c620ac518f3086eaf4f105f64908a57c - sha256: 1d207a8aee42700763e6a7801c69721ccc06ce75e62e0e5d8fc6df0197c0a88b - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda - hash: - md5: b0d9153fc7cfa8dc36b8703e1a59f5f3 - sha256: 7fcc6a924691f9de65c82fd559cb1cb2ebd121c42da544a9a43623d69a284e23 - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda - hash: - md5: ffd7cfb55b1aa4e3eef477583b1ad87d - sha256: 021cee135f0d9b58fbc8d212618cd9bd6bd0012da41a6469edf010b2853dd3ef - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda - hash: - md5: 58fc78e523e35a08423c913751a51fde - sha256: 38a30beabafc1dd86c0264b6746315a1010e541a1b3ed7f97e1702873e5eaa51 - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda - hash: - md5: 0923a8e81839b0b2d9787d85d635b196 - sha256: 65ea5552f7a87783b75a3ecf6e4acd2aee5357c4275a9932d732ee516acab0a9 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda - hash: - md5: 8476ec099649e9a6de52f7f4d916cd2a - sha256: 0dc5b73aa31cef3faeeb902a11f12e1244ac241f995d73e4f4e3e0c01622f7a1 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda - hash: - md5: d287122dfb77c5fa0147fdf368c86d54 - sha256: a3e6bfd71bbc4119da1e79f2bce6094f045112c230b3fd5cc9e6ccd36aba3156 - category: main - optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - s2n: '>=1.4.8,<1.4.9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda - hash: - md5: cbf8138080ea12e9d9d66cf7c8bee325 - sha256: 5d7c7af98276949cee0e731ecedbd7e80135a3c3c3ea8246808ebb270732ae69 - category: main - optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_2.conda - hash: - md5: 95e1a36ee569ff79e7eeccaf0ec1fe76 - sha256: ccb7eb57008cf89526694d5248878c6feffa9022aed0d657cb6a631b57f68026 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda - hash: - md5: 14ad8defb307e1edb293c3fc9da8648f - sha256: 6b2de4a0e6e907310127b1025a0030d023e1051da48ea5821dcc6db094d69ab7 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda - hash: - md5: c8bacb9a988fd8fb6b560a966c4979a8 - sha256: 99304e5095193b937745d0ce6812d0333186a31c41a51b1e4297ddcd962824eb - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda - hash: - md5: 0086628487f8888df34f024a0a0d0289 - sha256: fef9c9a628f4f18b509a79bab6e9356724c957058464af5624757cc8c6f0536e - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.5-h6f42f56_0.conda - hash: - md5: 868fbd186bc64457777c705162fd0d88 - sha256: a8cbf29cd471db62b42c0191411d66e446f3454dbb2d5daebd07bee670c1688d - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda - hash: - md5: 258194cedccd33fd8a7b95a8aa105015 - sha256: 349a05cf5fbcb3f6f358fc05098b210aa7da4ec3ab6d4719c79bb93b50a629f8 - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda - hash: - md5: bb1523b7de7ac6f112b1992cfcfb250b - sha256: 77f58ac3aec0cd987f80e202a8197e123beb13b9b25b0137dd921c7a6ddc86ac - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda - hash: - md5: 8a04fc5a5ecaba31f66904b47dcc7797 - sha256: 9080f064f572ac1747d32b4dff30452ff44ef2df399e6ec7bf9730da1eb99bba - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda hash: - md5: f17e778398011e88d45edf58f24c18ae - sha256: 5760728e7320a01519bcbbae8dcd31b86e819f66c58f641b86b27ce592e5fff3 + md5: 1c005af0c6ff22814b7c52ee448d4bea + sha256: 6ac30acdbfd3136ee7a1de28af4355165291627e905715611726e674499b0786 category: main optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda - hash: - md5: 44b522426a11ab2afbd09b0746b0e4cd - sha256: f6734310a4b948f4e838748c793b75fac8af195819e9986ae935ef8ab2632a8a - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.4-h25b5da4_3.conda - hash: - md5: 0bfe8548d21b566e2bd65c2fed90869e - sha256: 16c0d8f4d04f18e576ccf9fba2314956cd8667a0d14b1363cd627b600e87e890 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda - hash: - md5: 3e735ae06073894080acd78365e78936 - sha256: b5515e6012fc858c6dd3ccf36009470d4ab6e3ba283934809112cca2874fb185 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-hd2aab46_4.conda - hash: - md5: 76c6a4d1839a71361c31d9bcce3601b7 - sha256: ce10e38c01771663a0491a5190078484c5c3ae7be315e5b02fc1bc87e4c9856e - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: linux-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda - hash: - md5: 2dbab1d281b7e1da05eee544cbdc8af6 - sha256: 810a890bf66d6368637399ef415dcc8152acd28f4b4b61d4048b7be7cba17d4c - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: osx-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.11.1-hbb1e571_1.conda - hash: - md5: 6e982efd0947cd3e9ba4223fbd988508 - sha256: 4b22a5e01ebd7f09c869cea73ae4853fb18a10a5716c8984598327e34eb2f9da - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: linux-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda - hash: - md5: 1e63d3866554a4d2e3d1cba5f21a2841 - sha256: c88f6bc72ef42fd09471d4c4b2293fa17f730e3ba10290a0bb86de0ff7e9b195 - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: osx-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.10.0-h7728843_1.conda - hash: - md5: dc24ba551b749b6bab11e0ef22dc3438 - sha256: 2c68d1d28bdf9d465843bdb6818868e0b0af46dafc1f4e41df0af33241707113 - category: main - optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: linux-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda hash: - md5: f364272cb4c2f4ce2341067107b82865 - sha256: 7143e85cfadcc3c789c879e66c3e6dbf8b6d5822d1d75b5b3063955279348233 + md5: 346722a0be40f6edc53f12640d301338 + sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 category: main optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: osx-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' + __osx: '>=10.13' libcxx: '>=16' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.5.0-h0e82ce4_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda hash: - md5: 8a980ef5c6bc0677f5a60d5d60a4efdd - sha256: ecff365d3cdf3b5b04a6f823ec75b07459fb6cc312475180f7a33a237242ea27 + md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8 + sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5 category: main optional: false - name: binutils @@ -564,10 +93,10 @@ package: platform: linux-64 dependencies: binutils_impl_linux-64: '>=2.40,<2.41.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda hash: - md5: ccc940fddbc3fcd3d79cd4c654c4b5c4 - sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c + md5: df53aa8418f8c289ae9b9665986034f8 + sha256: 75d7f5cda999fe1efe9f1de1be2d3e4ce32b20cbf97d1ef7b770e2e90c062858 category: main optional: false - name: binutils_impl_linux-64 @@ -577,10 +106,10 @@ package: dependencies: ld_impl_linux-64: '2.40' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda hash: - md5: 33084421a8c0af6aef1b439707f7662a - sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d + md5: 3f840c7ed70a96b5ebde8044b2f36f32 + sha256: 230f3136d17fdcf0e6da3a3ae59118570bc18106d79dd29bf2f341338d2a42c4 category: main optional: false - name: binutils_linux-64 @@ -590,43 +119,44 @@ package: dependencies: binutils_impl_linux-64: 2.40.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda hash: - md5: 2d9a60578bc28469d9aeef9aea5520c3 - sha256: d114b825acef51c1d065ca0a17f97e0e856c48765aecf2f8f164935635013dd2 + md5: bb3fb8553a669828501e80d13b6bd744 + sha256: b88a28156805c12e8ad363f49e27da26c176ed340b0f96cb9b6450bf7a6047f1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -634,45 +164,49 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: c-compiler @@ -683,10 +217,10 @@ package: binutils: '' gcc: '' gcc_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda hash: - md5: fad1d0a651bf929c6c16fbf1f6ccfa7c - sha256: 19343f6cdefd0a2e36c4f0da81ed9ea964e5b4e82a2304809afd8f151bf2ac8c + md5: e9dffe1056994133616378309f932d77 + sha256: 4213b6cbaed673c07f8b79c089f3487afdd56de944f21c4861ead862b7657eb4 category: main optional: false - name: c-compiler @@ -698,32 +232,32 @@ package: clang_osx-64: 16.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_1.conda hash: - md5: 4652f33fe8d895f61177e2783b289377 - sha256: c32fdb29dac5e1a01aa486aba1f7b21cff5c1c7748c0cf9b6c9475888b61eb17 + md5: d27411cb82bc1b76b9f487da6ae97f1d + sha256: a8e2e2b121e61e3d6a67aa618602815211573e96477ab048176a831ae622bfaf category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: cairo @@ -736,22 +270,22 @@ package: freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.2,<1.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxrender: '>=0.9.11,<0.10.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda hash: - md5: f907bb958910dc404647326ca80c263e - sha256: 142e2639a5bc0e99c44d76f4cc8dce9c6a2d87330c4beeabb128832cd871a86e + md5: b6d90276c5aee9b4407dd94eb0cd40a8 + sha256: 51cfaf4669ad83499b3da215b915c503d36faf6edf6db4681a70b5710842a86c category: main optional: false - name: cairo @@ -759,21 +293,21 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.4,<1.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h9f650ed_2.conda hash: - md5: 13f830b1bf46018f7062d1b798d53eca - sha256: f8d1142cf244eadcbc44e8ca2266aa61a05b6cda5571f9b745ba32c7ebbfdfba + md5: d264e5b9759cab8d203cdfe43eabd8b5 + sha256: 1d2480538838cf5009df0285a73aa405798bc49de0c689ab270f543f5ae961aa category: main optional: false - name: cctools @@ -798,7 +332,7 @@ package: ld64_osx-64: '>=711,<712.0a0' libcxx: '' libllvm16: '>=16.0.6,<16.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' sigtool: '' url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-ha1c5b94_0.conda hash: @@ -806,49 +340,16 @@ package: sha256: 16ef6a8dd367d7d4d7b3446f73ed95b07603d6b5b3256c3acab9b3a9006ef7eb category: main optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgfortran-ng: '' - libgfortran5: '>=12.3.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda - hash: - md5: 446ac3db6cb017e3dd067cc35cf51442 - sha256: fe50510b705d2adf6f7c162293f788ee7fa2eebd33adf30856723667e6a45586 - category: main - optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: osx-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgfortran: 5.* - libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.4.0-h60fb419_0.conda - hash: - md5: fea202fa33621a6c8a8a7146af6b34b7 - sha256: 476c45686fd8b3309117fc5c37ce29338f6f241f2598e3506f85ca196fc41cc9 - category: main - optional: false - name: clang version: 16.0.6 manager: conda platform: osx-64 dependencies: clang-16: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-hdae98eb_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-default_h179603d_9.conda hash: - md5: 884e7b24306e4f21b7ee08dabadb2ecc - sha256: 71d2fa8174aedf549313fccf6fbc63ef08fdc898891ffba56dd376226649fa13 + md5: 1acf03a00abda70355ef2978cfce3e9b + sha256: 0553d08f7c917801841db35755d03c2e3c593145e7bb540d848ff60e9a59342d category: main optional: false - name: clang-16 @@ -856,16 +357,17 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libclang-cpp16: 16.0.6 libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 1c298568c30efe7d9369c7c15b748461 - sha256: 5a8dcab3b23552c6e93967ecc7e13c0e40c3f8e96ba26a4d942fa528ed5b449e + md5: bdd24ee262fd1c08f6e0a8173140321d + sha256: 26d405aeb42d84c904b551f5efa00ba3b8e4ec6577f62cecaa849fb1e485137f category: main optional: false -- name: clang_impl_osx-64 +- name: clang_osx-64 version: 16.0.6 manager: conda platform: osx-64 @@ -875,22 +377,10 @@ package: compiler-rt: 16.0.6.* ld64_osx-64: '' llvm-tools: 16.0.6.* - url: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-16.0.6-h8787910_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-h8787910_2.conda hash: - md5: ed9c90270c77481fc4cfccd0891d62a8 - sha256: 2174b2a01fb60da87b383405100bb6d5eac54fb8e84d2ce5f6a0488627c055fc - category: main - optional: false -- name: clang_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-hb91bd55_11.conda - hash: - md5: 24123b15e9c0dad9c0d5fd9da0b4c7a9 - sha256: 86b4928261c21546b9bae5a58975a5ade6256be0aacd8d0f7a3126150bad3967 + md5: efd22736de32ae376efc729b0b5af8a2 + sha256: 44150a183de949cfbba1c871af31ed4cf96b9500736848bac07714a4d432ede6 category: main optional: false - name: clangxx @@ -899,38 +389,26 @@ package: platform: osx-64 dependencies: clang: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h179603d_9.conda hash: - md5: cc8c007a529a7cfaa5d29d8599df3fe6 - sha256: 422e471cb572b977c7ff3aec6c89fc6af365c5e5a4e29feaa780519c9a20e84d + md5: 0cad937ac54668f5bd98ab7c6a76374c + sha256: 149c705d66303ab4ffe153b7d45625bdd4d131607178336e7a5a5fa45253c9d9 category: main optional: false -- name: clangxx_impl_osx-64 +- name: clangxx_osx-64 version: 16.0.6 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' clang_osx-64: 16.0.6 clangxx: 16.0.6.* - libcxx: '>=16' + libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-16.0.6-h6d92fbe_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-h1b7723c_2.conda hash: - md5: a658c595675bde00373347b22a974810 - sha256: 944d9cb8052eefec3182380454bf8a3f1b2a93c5ea992f8681ef45e975492983 - category: main - optional: false -- name: clangxx_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_osx-64: 16.0.6 - clangxx_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-hb91bd55_11.conda - hash: - md5: e49aad30263abdcb785e610981b7c2c7 - sha256: 664e769eecf1d07d07729f4902ef07f2f5b11bc033adfd84637ce9742f3267a1 + md5: 9b40be235bc26c0949debeca13a35305 + sha256: 3b300a28e5a22146763309db69c80171db76bace3d5c1fd54623509936368e48 category: main optional: false - name: compiler-rt @@ -968,10 +446,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda hash: - md5: 81458b3aed8ab8711951ec3c0c04e097 - sha256: db059492391adfbed877d611870e01b6e0660c14fbe72dec5e17d1842b51581d + md5: d8d07866ac3b5b6937213c89a1874f08 + sha256: f50660a6543c401448e435ff71a2849faae203e3362be7618d994b6baf345f12 category: main optional: false - name: compilers @@ -982,10 +460,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_1.conda hash: - md5: 3576aa54986a3e2a5370e4232b35c036 - sha256: 0f219384ea4a1aaac26148f20a3ddb5fcb19f4a748b742e66e2b92a1af3a08a8 + md5: 875e9b06186a41d55b96b9c1a52f15be + sha256: c4db9ad330ae0baf68e77673eb3953d966e08c5e5993b0cc8c003d62c026068a category: main optional: false - name: cxx-compiler @@ -996,10 +474,10 @@ package: c-compiler: 1.7.0 gxx: '' gxx_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda hash: - md5: b4537c98cb59f8725b0e1e65816b4a28 - sha256: 9278c12ed455a39a50d908381786540c9fd1627e4489dca9638b3e222c86d3f7 + md5: 28de2e073db9ca9b72858bee9fb6f571 + sha256: cf895938292cfd4cfa2a06c6d57aa25c33cc974d4ffe52e704ffb67f5577b93f category: main optional: false - name: cxx-compiler @@ -1009,10 +487,10 @@ package: dependencies: c-compiler: 1.7.0 clangxx_osx-64: 16.* - url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_1.conda hash: - md5: 8abaa2694c1fba2b6bd3753d00a60415 - sha256: fe198da9a3ea1f3d1c9f18cceff633594549ef80c20bdb9522beb4b4446be09c + md5: e04cb15a20553b973dd068c2dc81d682 + sha256: 844b0894552468685c6a9f7eaab3837461e1ebea5c3880d8de616c83b618f044 category: main optional: false - name: dav1d @@ -1039,44 +517,45 @@ package: category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: linux-64 dependencies: hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda hash: - md5: f12ca97c38833a5a179adc172155d15d - sha256: 964b3b53ca1c116fa0480912ec85fe182d8db6866607448b5b3ae73b0bf370e8 + md5: 6d8c86d0368625b6503d696db70ea041 + sha256: cccb49014366103ff5405c8b52f191cf8a9ceec6aedfe000418bdc1c11dc20cc category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.34.1-h40b907c_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.36.0-h96318c6_0.conda hash: - md5: 20dc150b88956b981f1e0a56cadc3437 - sha256: 0473cf51b54171f1e8dd1b48a765b070b14bd9f801ee01594645e80bbea11918 + md5: 9ef1b3475a7c8a75a24b3a3302808171 + sha256: ec058f68ad00fc52620440992e1be8d9812a4d9ab6ad7f9f6cf99fdd1f4843e2 category: main optional: false - name: expat @@ -1105,11 +584,12 @@ package: category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: linux-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __glibc: '>=2.17,<3.0.a0' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1117,48 +597,50 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-gpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-gpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-npu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' libstdcxx-ng: '>=12' - libva: '>=2.21.0,<3.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxcb: '>=1.15,<1.16.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libva: '>=2.22.0,<3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxcb: '>=1.16,<1.17.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda hash: - md5: a9865c001fa2e03272895e23b10bc55f - sha256: 844dfa9e64bd20453a36f94a7110b6db48b47db5095f7bbb395f56eb55831f10 + md5: 107fd9222d9f628608b07b69abba9420 + sha256: b264eb69ddcc15bdbd74e7ce57b96350483abdfaa73d485dd4efcca0f4d8507f category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: osx-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __osx: '>=10.13' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1166,35 +648,35 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.1-gpl_h9654dba_107.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-7.0.1-gpl_hb3e10e8_104.conda hash: - md5: 656eb681c293b9e07d3dfba0ba3f6d06 - sha256: 1b60bdfa05370d217bd97aa7ae477e8237f3d63340009c5915ab7e45ddabe662 + md5: 973b150f71301149def599cd44a88545 + sha256: 76e9f20fe02283843ba418cb199270dfbc76c457496473029882916addda9e0d category: main optional: false - name: fltk @@ -1206,22 +688,22 @@ package: libgcc-ng: '>=12' libglu: '' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda hash: - md5: ddcdbcc4fb8918767d6145239c1965bd - sha256: 8287ad80f3d56fdcd454b671cb3d4fa55baf6abe9104680ce5c470d2eb03f3c0 + md5: c82be18188e73e00064101a46e46e785 + sha256: ee14e3fe574e5c1820cd67d620e608330417f23725080da5120aa864eaf3b53f category: main optional: false - name: fltk @@ -1229,49 +711,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-he73b29e_0.conda - hash: - md5: 9b4d34b0accb2d0572f3a21cbf075a85 - sha256: 2a8aa3d7444e6c9eae75cb21dcf8f6f2283968ef035f2bad99f645e938b9b16b - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-ha50d76c_1.conda hash: - md5: 35ef8bc24bd34074ebae3c943d551728 - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - hash: - md5: ab205d53bda43d03f5c5b993ccb406b3 - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc + md5: a958392eb3607deaab9de701d24cf159 + sha256: 0904ed13fe6590e89b74ace95fbbcc3f8155f6e2287318383d7813ba4bb04207 category: main optional: false - name: font-ttf-dejavu-sans-mono @@ -1345,10 +802,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: font-ttf-ubuntu @@ -1356,10 +813,10 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: fontconfig @@ -1371,7 +828,7 @@ package: freetype: '>=2.12.1,<3.0a0' libgcc-ng: '>=12' libuuid: '>=2.32.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda hash: md5: 0f69b688f52ff6da70bccb7ff7001d1d @@ -1385,7 +842,7 @@ package: dependencies: expat: '>=2.5.0,<3.0a0' freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda hash: md5: 86cc5867dfbee4178118392bae4a3c89 @@ -1455,10 +912,10 @@ package: c-compiler: 1.7.0 gfortran: '' gfortran_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda hash: - md5: 7ef7c0f111dad1c8006504a0f1ccd820 - sha256: 1e4da85586882c4f52f99d63615f0d8548d71be4c82e363485d6ca7bddf0074a + md5: cf4b0e7c4c78bb0662aed9b27c414a3c + sha256: 4293677cdf4c54d13659a3f9ac15cae778310811c62add29bb2e70630756317a category: main optional: false - name: fortran-compiler @@ -1471,10 +928,10 @@ package: gfortran_osx-64: 12.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_1.conda hash: - md5: 2c11db8b46df0a547997116f0fd54b8e - sha256: 2470272c1dc170763c364042e5630ce840a39fce500e57adcfe29f193a585f79 + md5: 48319058089f492d5059e04494b81ed9 + sha256: 994007a99553e495d397de45484f3aaccfd1cd730019c146903785c0abebadeb category: main optional: false - name: freeglut @@ -1484,16 +941,16 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxi: '' - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda hash: - md5: 6e553df297f6e64668efb54302e0f139 - sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f + md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 + sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 category: main optional: false - name: freeimage @@ -1510,7 +967,7 @@ package: libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda @@ -1532,7 +989,7 @@ package: libraw: '>=0.21.1,<0.22.0a0' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-hdc0ade2_20.conda @@ -1548,7 +1005,7 @@ package: dependencies: libgcc-ng: '>=12' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda hash: md5: 9ae35c3d96db2c94ce0cef86efdfa2cb @@ -1561,7 +1018,7 @@ package: platform: osx-64 dependencies: libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda hash: md5: 25152fce119320c980e5470e64834b50 @@ -1626,10 +1083,10 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda hash: - md5: 413e326f8a01d041ffbfbb51cea46a93 - sha256: 60669bb79c79d6f6929c67b334acd9dc885dccfb7371e41de7626090dc06e408 + md5: e42d156a1e3dd5651c89d7606b5a4a45 + sha256: 4f1f5bd8d0c5be91158d6e25fe1a183bb63d64b76da14ca6c619d5702fa112d8 category: main optional: false - name: gcc_impl_linux-64 @@ -1637,17 +1094,17 @@ package: manager: conda platform: linux-64 dependencies: - binutils_impl_linux-64: '>=2.39' + binutils_impl_linux-64: '>=2.40' libgcc-devel_linux-64: 12.3.0 libgcc-ng: '>=12.3.0' libgomp: '>=12.3.0' libsanitizer: 12.3.0 libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda hash: - md5: e89827619e73df59496c708b94f6f3d5 - sha256: a87826c55e6aa2ed5d17f267e6a583f7951658afaa4bf45cd5ba97f5583608b9 + md5: 93325fff774c4cc8dcc8c65039cb4646 + sha256: a6039b425279c4e080ac019d393ccb1b082698d48b83ec5660d96ef3c849b6a9 category: main optional: false - name: gcc_linux-64 @@ -1658,110 +1115,112 @@ package: binutils_linux-64: '2.40' gcc_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda hash: - md5: 7a53f84c45bdf4656ba27b9e9ed68b3d - sha256: 836692c3d4948f25a19f9071db40f7788edcb342d771786a206a6a122f92365d + md5: 954881ce9897d01c7c2031fb93ed366b + sha256: e8f7b8dbe97b6115d212fa9e2b9a53b960db09fd9bc5fb903e401f35507f161f category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: linux-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libgdal: 3.8.5 + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.26.4,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py312h257dd4b_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py312h3d1e6dc_7.conda hash: - md5: 3af74f7e6e3cc2c601451edb6922d839 - sha256: 2d308f3836e340bd4daacdd7abd4ffb6f07f7517f8afd2e57bc361b4219a2ce7 + md5: 2a6b88dad299a75916628cc8ffef5019 + sha256: af3ef8e6b7b1df45ed77cdec0f1d9dbdf59e2bc99322565453db2b292c0d6c2c category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' libcxx: '>=16' - libgdal: 3.8.5 - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.26.4,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.8.5-py312h1be6df0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.9.1-py312h4908f73_7.conda hash: - md5: dc8a1be558f8b90aa17aab08c55bd2e8 - sha256: d99a5ca26460ca9b5fd4ceab8db611af76a8ea20935e856c1d497737acf652bb + md5: d6ebdb561f857065715ff99abc80177d + sha256: 0a6f48b037fe4f00bf281890ae3dc076386e23bfced397c967857752c1921640 category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda hash: - md5: 8c0f4f71f5a59ceb0c6fa9f51501066d - sha256: 2593b255cb9c4639d6ea261c47aaed1380216a366546f0468e95c36c2afd1c1a + md5: 621d814955342209dc8e7f87c41f1ba0 + sha256: 8ccddcf6263f972122d2ea7388b881194dcd9bc8e1092b4440b7a7572c65b226 category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.2-hf036a51_0.conda hash: - md5: d13f05ed3985f57456b610bab66366db - sha256: 6feffb0d1999a22c5f94d2168b1af9c5fbdd25c9a963a6825ee32cf05e5c07f5 + md5: 69d6f60244f3a1fa8cfc34a9be856f19 + sha256: 43f959ac8f463b78a66cd6c2fd772bf68228e360559e74e774150aa2541b1f52 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda hash: - md5: aadc00cd5e330b5f7fb289446c23ab23 - sha256: 882cf1ef5bb0f176e9bc3da5a9783e11fce467d87ebbe76c0d0aa88bfa06de46 + md5: 8ff4fa3ab0b63dc5b214a68839499e41 + sha256: df00139c22b1b2ab1e1e48bb94c68febcc40a7ca812bd4f228a3e09ac9d2cdf2 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h7c2ff5c_16.conda + url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.3-h4bbec01_1.conda hash: - md5: c505170a140041f1ef9758df72b00b26 - sha256: e9277328123fa387561c53ee08c7758f8801eef1ee4caa982bca86480b002c9d + md5: 94b592c68bb826b1ffee62524b117aa2 + sha256: 7f5c0d021822e12cd64848caa77d43398cea90381f420d6f973877f3eccc2188 category: main optional: false - name: gettext @@ -1835,10 +1294,10 @@ package: gcc: 12.3.0.* gcc_impl_linux-64: 12.3.0.* gfortran_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda hash: - md5: 6b0b27394cf439d0540f949190556860 - sha256: f97482f7d85062ad61e7092eeca8a1a130fbf811cb8fb39be841072be3a81d95 + md5: da3ce6140908b41fb8fb205104b54ae6 + sha256: b5b181a4bed88036cf9b8a1476c0fe62fd6e7f8d7408507dd68861dee55775bf category: main optional: false - name: gfortran @@ -1861,14 +1320,14 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: '>=12.3.0' - libgcc-ng: '>=4.9' + libgcc-ng: '>=12.3.0' libgfortran5: '>=12.3.0' - libstdcxx-ng: '>=4.9' + libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda hash: - md5: 4d72ee7c82f8a9b2ecef4fcefa9acd19 - sha256: b965de2c6987ed5ecbbcdf2ea3c3ae8020d1eea81ab915c4cf2bddf37c1ff195 + md5: 96471c6bcf708822422bd9f78dbecc3b + sha256: a99c9bc4cf9883647b0abc25511ece611fd9cb96a1560b35fff5385a06059509 category: main optional: false - name: gfortran_impl_osx-64 @@ -1882,7 +1341,7 @@ package: libgfortran-devel_osx-64: 12.3.0.* libgfortran5: '>=12.3.0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpc: '>=1.3.1,<2.0a0' mpfr: '>=4.2.0,<5.0a0' zlib: '' @@ -1901,10 +1360,10 @@ package: gcc_linux-64: 12.3.0 gfortran_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda hash: - md5: 3a9e5b8a6f651ff14e74d896d8f04ab6 - sha256: f2285e33370851e689e70fa8b5a34a44b0271aff9831a027f302e062cb498cdd + md5: d77e515e624f3edb33ac89997322b5a8 + sha256: 62c99e466d1e034d22f2e57c0e95101a92f467824e18cfdedbdc18866d5ae063 category: main optional: false - name: gfortran_osx-64 @@ -1927,26 +1386,26 @@ package: category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda hash: - md5: 96f3b11872ef6fad973eac856cd2624f - sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b + md5: 3bf7b9fd5a7136126e0234db4b87c8b6 + sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.2-h10d778d_0.conda hash: - md5: aca150b0186836f893ebac79019e5498 - sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d + md5: 03e8c9b4d3da5f3d6eabdd020c2d63ac + sha256: 2c825df829097536314a195ae5cacaa8695209da6b4400135a65d8e23c008ff8 category: main optional: false - name: gmp @@ -1956,10 +1415,10 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda hash: - md5: e358c7c5f6824c272b5034b3816438a7 - sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 + md5: c94a5994ef49749880a8139cf9afcbe1 + sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c category: main optional: false - name: gmp @@ -1967,11 +1426,12 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda hash: - md5: 92f8d748d95d97f92fc26cfac9bb5b6e - sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 + md5: 427101d13f19c4974552a4e5b072eef1 + sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc category: main optional: false - name: gmsh @@ -1989,7 +1449,7 @@ package: liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' xorg-libx11: '>=1.8.7,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' @@ -2016,7 +1476,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' zlib: '' url: https://conda.anaconda.org/conda-forge/osx-64/gmsh-4.12.2-h48a2193_0.conda @@ -2092,10 +1552,10 @@ package: dependencies: gcc: 12.3.0.* gxx_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda hash: - md5: 8c50a4d15a8d4812af563a684d598910 - sha256: 12c8d969b1b6acf1bf4f7c7399993dd3d422a713ad6d7ab9343f6b990f8373a0 + md5: c3a3cf9cf544bd621a18add719056529 + sha256: fb1d5d87be5d23b2eaab45afcd62560ffda12ba870a3c1a2da6293dd8d5d4587 category: main optional: false - name: gxx_impl_linux-64 @@ -2106,10 +1566,10 @@ package: gcc_impl_linux-64: 12.3.0 libstdcxx-devel_linux-64: 12.3.0 sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda hash: - md5: cddba8fd94e52012abea1caad722b9c2 - sha256: 69371a1e8ad718b033bc1c58743a395e06ad19d08a2ff97e264ed82fd3ccbd9c + md5: bb4fe41bc0584a3f6d3026634170c330 + sha256: 34225c17afdd49219220d9fad1bc5b0b1bdc01c5e2faa8eb75f4fe471758bdc1 category: main optional: false - name: gxx_linux-64 @@ -2121,14 +1581,14 @@ package: gcc_linux-64: 12.3.0 gxx_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda hash: - md5: 9ec22c7c544f4a4f6d660f0a3b0fd15c - sha256: 5a842fc69c03ac513a2c021f3f21afd9d9ca50b10b95c0dcd236aa77d6d42373 + md5: 26155c2e3afafee809654f86f434c234 + sha256: 8e1068c185f0558933a7d7aa1fb1d310ac3e1acf219f4926925733a8c333971a category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: linux-64 dependencies: @@ -2137,30 +1597,30 @@ package: graphite2: '' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.1,<3.0a0' + libglib: '>=2.80.2,<3.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda hash: - md5: 5a6f6c00ef982a9bc83558d9ac8f64a0 - sha256: 4b55aea03b18a4084b750eee531ad978d4a3690f63019132c26c6ad26bbe3aed + md5: c7b47c64af53e8ecee01d101eeab2342 + sha256: 5854e5ac2d3399ef30b59f15045c19fa5f0bab94d116bd75cac4d05181543dc3 category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' cairo: '>=1.18.0,<2.0a0' freetype: '>=2.12.1,<3.0a0' graphite2: '' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.3.0-hf45c392_0.conda + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-9.0.0-h053f038_0.conda hash: - md5: 41d890485f909e4ecdc608741718c75e - sha256: c6ea14e4f4869bc78b27276c09832af845dfa415585362ed6064e37a1b5fe9c5 + md5: 0a4256cad662dc36666221a2a8daa34e + sha256: eb94445e4ea3e794582f47365d3b429adfddc24209a39bb8102f17198a0661e1 category: main optional: false - name: hdf4 @@ -2171,7 +1631,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -2185,7 +1645,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -2197,18 +1657,18 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda hash: - md5: d471a5c3abc984b662d9bae3bb7fd8a5 - sha256: b814f8f9598cc6e50127533ec256725183ba69db5fd8cf5443223627f19e3e59 + md5: 7e1729554e209627636a0f6fabcdd115 + sha256: 2278fa07da6f96e807d402cd55480624d67d2dee202191aaaf278ce5ab23605a category: main optional: false - name: hdf5 @@ -2216,18 +1676,18 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_105.conda hash: - md5: 8e2ac4ae815a8c9743fe37d70f48f075 - sha256: 158dd2ab901659b47e8f7ee0ec1d9e45a1fedc4871391a44a1c8b9e8ba4c9c6b + md5: 98544299f6bb2ef4d7362506a3dde886 + sha256: 98f8350730d09e8ad7b62ca6d6be38ee2324b11bbcd1a5fe2cac619b12cd68d7 category: main optional: false - name: icu @@ -2261,7 +1721,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda hash: md5: 07268e57799c7ad50809cadc297a515e @@ -2274,7 +1734,7 @@ package: platform: osx-64 dependencies: libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.11-h2d185b6_0.conda hash: md5: 39c1f288d263e971db74f8803e28dabd @@ -2294,7 +1754,7 @@ package: category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: linux-64 dependencies: @@ -2302,22 +1762,23 @@ package: libgcc-ng: '>=12' libglu: '>=9.0.0,<10.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda hash: - md5: 05c1609de571f7a9a40e6d7d4116c21a - sha256: 5cc5e2ae5127d655747a377e267ff40856c262a00f52cc6840238cfdb52368c4 + md5: 9518ab7016cf4564778aef08b6bd8792 + sha256: 0a5ca92ea0261f435c27a3c3c5c5bc5e8b4b1af1343b21ef0cbc7c33b62f5239 category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.3-h6ff19ee_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.4-hb10263b_0.conda hash: - md5: fe830a9cdfb229efde037ce4c8b5d677 - sha256: 1ec4bc54e277af13b6016d69c8f3fe769a56d0642f3e60783aaf03536c0220af + md5: b7a6171ecee244e2b2a19177ec3c34a9 + sha256: da2c2fa393b89596cf0f81c8e73db2e9b589ae961058317f6fcb4867e05055dd category: main optional: false - name: jigsaw @@ -2350,22 +1811,24 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda hash: - md5: 9961b1f100c3b6852bd97c9233d06979 - sha256: 5646496ca07dfa1486d27ed07282967007811dfc63d6394652e87f94166ecae3 + md5: f8f0f0c4338bad5c34a4e9e11460481d + sha256: 0caf06ccfbd6f9a7b3a1e09fa83e318c9e84f2d1c1003a9e486f2600f4096720 category: main optional: false - name: json-c version: '0.17' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h6253ea5_1.conda hash: - md5: 266d2e4ebbf37091c8322937392bb540 - sha256: 2a493095fe1292108ff1799a1b47ababe82d844bfa3abcf2252676c1017a1e04 + md5: fb72a2ef514c2df4ba035187945a6dcf + sha256: 66ddd1a4d643c7c800a1bb8e61f5f4198ec102be37db9a6d2e037004442eff8d category: main optional: false - name: jxrlib @@ -2391,42 +1854,16 @@ package: sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b category: main optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: linux-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda - hash: - md5: f7e7077802927590efc8bf7328208f12 - sha256: ee0934ff426d3cab015055808bed33eb9d20f635ec14bc421c596f4b70927102 - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: osx-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.3-h5f07ac3_0.conda - hash: - md5: 7a0924f6214e4c17b6062b21d1240253 - sha256: 54a847faf2d2aea83c149d98634646edb8e7f346faefc6af1aa52106200b43aa - category: main - optional: false - name: kernel-headers_linux-64 - version: 2.6.32 + version: 3.10.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda + dependencies: + _sysroot_linux-64_curr_repodata_hack: 3.* + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda hash: - md5: d731b543793afc0433c4fd593e693fce - sha256: fb39d64b48f3d9d1acc3df208911a41f25b6a00bd54935d5973b4739a9edd5b6 + md5: ff7f38675b226cfb855aebfc32a13e31 + sha256: a55044e0f61058a5f6bab5e1dd7f15a1fa7a08ec41501dbfca5ab0fc50b9c0c1 category: main optional: false - name: keyutils @@ -2442,7 +1879,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -2450,25 +1887,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: lame @@ -2554,10 +1992,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 category: main optional: false - name: lerc @@ -2586,28 +2024,30 @@ package: category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda hash: - md5: 75648bc5dd3b8eab22406876c24d81ec - sha256: 9951421311285dd4335ad3aceffb223a4d3bc90fb804245508cd27aceb184a29 + md5: c48fc56ec03229f294176923c3265c05 + sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hf036a51_1.conda hash: - md5: 819934a15bc13a0d30778bf18446ada6 - sha256: 30c0f569949a2fa0c5fd9aae3416e3f6623b9dd6fccdaa8d3437f143b67cca2a + md5: d6c78ca84abed3fea5f308ac83b8f54e + sha256: 396d18f39d5207ecae06fddcbc6e5f20865718939bc4e0ea9729e13952833aac category: main optional: false - name: libaec @@ -2636,43 +2076,44 @@ package: category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda hash: - md5: 3bf887827d1968275978361a6e405e4f - sha256: 340ed0bb02fe26a2b2e29cedf6559e2999b820f434e745c108e788d629ae4b17 + md5: 32ddb97f897740641d8d46a829ce1704 + sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936 category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libiconv: '>=1.17,<2.0a0' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda hash: - md5: 8c7b79b20a67287a87b39df8a8c8dcc4 - sha256: f458515a49c56e117e05fe607493b7683a7bf06d2a625b59e378dbbf7f308895 + md5: 82a85fa38e83366009b7f4b2cef4deb8 + sha256: 9e46db25e976630e6738b351d76d9b79047ae232638b82f9f45eba774caaef8a category: main optional: false - name: libasprintf @@ -2733,14 +2174,14 @@ package: fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda hash: - md5: c306fd9cc90c0585171167d09135a827 - sha256: 1bc3e44239a11613627488b7a9b6c021ec6b52c5925abd666832db0cb2a59f05 + md5: 25db2ea6b8fefce451369e2cc826f6f4 + sha256: 59ac3fc42b4cee09b04379aa3e91d6d45fdfc8a52afbfa1f9f32e99abbca3137 category: main optional: false - name: libass @@ -2748,17 +2189,18 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h80904bb_1.conda + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h5386a9e_2.conda hash: - md5: 9ccad0aebe916aa3715fda9eefe92584 - sha256: f97c70aa61ecc1b43907cf0322215a58f19e0723ee67b4ebd02146da24f03976 + md5: eb6c82cd6a0217884ee0ac8c974543ba + sha256: 92f425a8f1373fab13877d887a2c03220878983575313d1f0670fcea117bed8b category: main optional: false - name: libblas @@ -2785,28 +2227,6 @@ package: sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59 category: main optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda - hash: - md5: 85d30a3fcc0f1cfc252776208af546a1 - sha256: 5a7843db33422d043256af27f288836f51530b058653bdb074704eb72282f601 - category: main - optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.84.0-h694c41f_2.conda - hash: - md5: 37678c6938655e8862e121b48101365a - sha256: e51f3b877ab4a7a68bf1e1f95e9b007d716e85547078bfd5f6f7f114545dc26e - category: main - optional: false - name: libcblas version: 3.9.0 manager: conda @@ -2836,83 +2256,60 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h7151d67_6.conda - hash: - md5: 7eaad118ab797d1427f8745c861d1925 - sha256: 8d77bf8bb12e4dff0bdc0d6dbc9ec674a46470c4e51a1fc8ffec16ed7da3365f - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - hash: - md5: c965a5aa0d5c1c37ffc62dff36e28400 - sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5 - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 23d6d5a69918a438355d7cbc4c3d54c9 - sha256: 3043869ac1ee84554f177695e92f2f3c2c507b260edad38a0bf3981fce1632ff + md5: 1d2344f627433a89f189b8aeb503eaa6 + sha256: fec5b4a971bfa09348d1cf0f7adfa00015aea31ea12027dc38b36b2eeda16dde category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libdeflate @@ -2939,16 +2336,16 @@ package: category: main optional: false - name: libdrm - version: 2.4.120 + version: 2.4.122 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libpciaccess: '>=0.18,<0.19.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda hash: - md5: 7c3071bdf1d28b331a06bda6e85ab607 - sha256: 8622f52e517418ae7234081fac14a3caa8aec5d1ee5f881ca1f3b194d81c3150 + md5: bbfc4dbe5e97b385ef088f354d65e563 + sha256: 74c59a29b76bafbb022389c7cfa9b33b8becd7879b2c6b25a1a99735bf4e9c81 category: main optional: false - name: libedit @@ -3049,129 +2446,107 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: e12ce6b051085b8f27e239f5e5f5bce5 - sha256: ed2dfc6d959dc27e7668439e1ad31b127b43e99f9a7e77a2d34b958fa797316b + md5: 7fc690ec9db2902e5ee90cebfdab31e7 + sha256: 60c21686f4a715106fba21b1c22401710fd9f288a6402d6fdc65aa14e66e0ec7 category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libuuid: '>=2.38.1,<3.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda hash: - md5: bbc8dad387da810666640cb8609964df - sha256: 2434c6d51515805f8177210e5f183c5881332378b575beeb43afda5a0b3ae3bd + md5: 85fcff96b59d3e3a812601d713931d4f + sha256: 62296ded701499cf64c72c7bb1ab690754a50464cc3cd8124d57f9012c6b2d34 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: osx-64 dependencies: - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.8.5-h4f2ca4b_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-core-3.9.1-hb16c948_7.conda hash: - md5: 2a9e484d2523dd69dd0eb5045e0d69a0 - sha256: b7626d21c15b247df862632c4329e4946baedcb56e7d2d8bc1e7f65918501a2d + md5: 1b131ccbc9918802ada8468de898f235 + sha256: f9127a7bf525925fe4378f5aeb4fd95a53f2ba6fd7ae262574c71b09141fe7d1 category: main optional: false - name: libgettextpo @@ -3250,27 +2625,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -3286,35 +2661,36 @@ package: category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: linux-64 dependencies: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda hash: - md5: 0269d2b7fa89f4a37cdee5ad6161f6cc - sha256: 99983c2514dd99da1bab50e9a25ed16cfc1d46aca0385c3be177c8e299731b51 + md5: 6ea440297aacee4893f02ad759e6ffbc + sha256: 5f5854a7cee117d115009d8f22a70d5f9e28f09cb6e453e8f1dd712e354ecec9 category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libffi: '>=3.4,<4.0a0' libiconv: '>=1.17,<2.0a0' libintl: '>=0.22.5,<1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.0-h81c1438_3.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.3-h736d271_1.conda hash: - md5: de78445096d2846df7f4f5fa5c252560 - sha256: 0da6453549cc49d7258f3db76adc7ffb8e5fec524fb3c3af14a2ba1842bee0f7 + md5: 0919d467624606fbc05c38c458f3f42a + sha256: bfd5a28140d31f9310efcdfd1136f36d7ca718a297690a1a8869b3a1966675ae category: main optional: false - name: libglu @@ -3324,167 +2700,55 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-xextproto: '>=7.3.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda hash: - md5: 50c389a09b6b7babaef531eb7cb5e0ca - sha256: 8368435c41105dc3e1c02896a02ecaa21b77d0b0d67fc8b06a16ba885c86f917 + md5: df069bea331c8486ac21814969301c1f + sha256: c4a14878c2be8c18b7e89a19917f0f6c964dd962c91a079fe5e0c6e8b8b1bbd4 category: main optional: false - name: libgomp - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda - hash: - md5: d211c42b9ce49aee3734fdc828731689 - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda - hash: - md5: 4b4e36a91e7dabf7345b82d85767a7c3 - sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda - hash: - md5: 3f2faf53ecb3b51b92b3eee155b50233 - sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libgcc-ng: '>=12' - libgoogle-cloud: 2.22.0 - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - hash: - md5: 7811f043944e010e54640918ea82cecd - sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libcxx: '>=16' - libgoogle-cloud: 2.22.0 - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda - hash: - md5: 0c25180c34b1a58d309b28386698fb6e - sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: linux-64 - dependencies: - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda - hash: - md5: 564517a8cbd095cff75eb996d33d2b7e - sha256: 1d4ece94dfef73d904dcba0fd9d56098796f5fdc62ea5f9edff60c71be7a3d63 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda hash: - md5: 2ac05daca7276a4d6ca4465707670380 - sha256: 8c9898d259e2343df52259b599ec342c386679e1c420df603cba6f06078fcdd6 + md5: ae061a5ed5f05818acdf9adab72c146d + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda hash: - md5: f36ddc11ca46958197a45effdd286e45 - sha256: 6950fee24766d03406e0f6f965262a5d98829c71eed8d1004f313892423b559b + md5: f54aeebefb5c5ff84eca4fb05ca8aa3a + sha256: 8473a300e10b79557ce0ac81602506b47146aff3df4cc3568147a7dd07f480a2 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.9.3-default_h24e0189_1009.conda + __osx: '>=10.13' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.1-default_h456cccd_1000.conda hash: - md5: 22fcbfd2a4cdf941b074a00b773b43dd - sha256: a9fc54b481d0477cdf5700d702d44fc04fe00ffe63fc253aa0c6d2944abe8f3f + md5: a14989f6bbea46e6ec4521a403f63ff2 + sha256: 0b5294c8e8fc5f9faab7e54786c5f3c4395ee64b5577a1f2ae687a960e089624 category: main optional: false - name: libiconv @@ -3590,16 +2854,16 @@ package: manager: conda platform: linux-64 dependencies: - libboost-headers: '' - libexpat: '>=2.5.0,<3.0a0' + __glibc: '>=2.17,<3.0.a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda hash: - md5: 3eb5f16bcc8a02892199aa63555c731f - sha256: f67fc0be886c7eac14dbce858bfcffbc90a55b598e897e513f0979dd2caad750 + md5: 6d76c5822cb38bc1ab5a06565c6cf626 + sha256: 5bd19933cb3790ec8632c11fa67c25d82654bea6c2bc4f51f8bcd8b122ae96c8 category: main optional: false - name: libkml @@ -3607,15 +2871,15 @@ package: manager: conda platform: osx-64 dependencies: - libboost-headers: '' - libcxx: '>=15.0.7' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda + __osx: '>=10.13' + libcxx: '>=16' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hfcbc525_1020.conda hash: - md5: 535b1bb4896b113c14dfa64141370a12 - sha256: f546750a59b85a4b721f69e34e797ceddb93c438ee384db285e3344490d6a9b5 + md5: 055d429f351b79c0a7b7d7e39ff45b28 + sha256: 20dec455f668ab2527d6a20204599253ac0b2d4d0325e4a1ce2316850128cc3e category: main optional: false - name: liblapack @@ -3649,7 +2913,7 @@ package: dependencies: libcxx: '>=16' libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda hash: @@ -3666,20 +2930,20 @@ package: bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda hash: - md5: b2414908e43c442ddc68e6148774a304 - sha256: 0b4d984c7be21531e9254ce742e04101f7f7e77c0bbb7074855c0806c28323b0 + md5: a908e463c710bd6b10a9eaa89fdf003c + sha256: 055572a4c8a1c3f9ac60071ee678f5ea49cfd7ac60a636d817988a6f9d6de6ae category: main optional: false - name: libnetcdf @@ -3687,24 +2951,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7760872_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7334405_114.conda hash: - md5: bce76ace6497221c2a2a02840aaceac5 - sha256: 3d6a950d82a8dfb9fa51c263e543cfa9c113703add20646ec85401e7b557da49 + md5: 32ffbe5b0b0134e49f6347f4de8c5dcc + sha256: a4af96274a6c72d97e84dfc728ecc765af300de805d962a835c0841bb6a8f331 category: main optional: false - name: libnghttp2 @@ -3716,7 +2980,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -3733,7 +2997,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -3761,10 +3025,10 @@ package: libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda hash: - md5: a356024784da6dfd4683dc5ecf45b155 - sha256: 2ae7559aed0705deb3f716c7b247c74fd1b5e35b64e39834ce8b95f7564d4a3e + md5: ae05ece66d3924ac3d48b4aa3fa96cec + sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39 category: main optional: false - name: libopenblas @@ -3772,354 +3036,390 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libgfortran: 5.* libgfortran5: '>=12.3.0' llvm-openmp: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_h8869122_1.conda hash: - md5: 00237c9c7f2cb6725fe2960680a6e225 - sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 + md5: c0798ad76ddd730dade6ff4dff66e0b5 + sha256: 83b0b9d3d09889b3648a81d2c18a2d78c405b03b115107941f0496a8b358ce6d category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda hash: - md5: 126a2a61d276c4268f71adeef25bfc33 - sha256: 901d6a974cf86c96f5ec29e7ef0e3a3bcf128ad9f48ee65d244d796512c2c8f5 + md5: 9511859bf5221238a2d3fb5322af01d5 + sha256: 32ce474983e78acb8636e580764e3d28899a7b0a2a61a538677e9bca09e95415 category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.2.0-h3d2f4b3_1.conda hash: - md5: 9d8a53bb2dbc55cee97d7c5093164e5b - sha256: 18359d9a5d343a89fd9fb8d0dc7890b290c52fbfc51fc2fdc7e639246ddccc60 + md5: 0ee799269d5b7c9c8b61f9e6de123eea + sha256: 87aade1bf653042543ae5f32f854f131e8b44ff236edf9d74797a4e1d2e3728d category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda hash: - md5: de9c380fea8634540db5fc8422888df1 - sha256: 7997f2e1e24d79dbecbc7a275a0aef495cdb25018b19ab982b23147cfe80f659 + md5: 70d82a64e6d07f4d6e07cae6b0bd4bd1 + sha256: 083e72464866b857ff272242f887b46a5527e20e41d292db55a4fa10aa0808c6 category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: bc0a89ad1ab1fdc0ac29434109086c86 - sha256: 735797a48790d2317ca18d081ae3fa96cede63bd7c1d749d95aabebd946e4b1b + md5: 23f03915c4359149231458da782f2ffb + sha256: dd22f7789ccfbd1a54fb31b7d737f2c623d5bc52dcebbabeba6bec71e4a77ec5 category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda hash: - md5: de1cbf145ecdc1d29af18e14eb267bca - sha256: 1ec1dc0cf9aa4e1879145f0d8645d6132d19e7f8ea0a678b500ee96a110527e7 + md5: f1e2a8ded23cef03804c4edb2edfb986 + sha256: db945b8a8d716d0c6f80cc5f07fd79692c8a941a9ee653aab6f7d2496f6f163b category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: 99efdc8defbec695d3b5c02359dc2c92 - sha256: d417139fa5501b8765085443e811e91c90c4a45350378f34dc0fa2121edc4f3b + md5: 922ba14bf1052b849a0abc90b3042437 + sha256: 6273fa16c6023b5cc1df146195f23279be054267eab11045a805b7422ca52c93 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda hash: - md5: 016b763e4776b4c2c536420a7e6a2349 - sha256: 6b530d036bf3a608c6cae2de4ab8f7e9471b53603c63b10d0a04c211e3325b1f + md5: 95d2d3baaa1e456ef65c713a5d99b815 + sha256: 6924426d9f88a54bfcc8aa2f5d9d7aeb69c839f308cd3b37aedc667157fc90f1 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.2.0-h280e65d_1.conda hash: - md5: cece1c44db441905aa3caaa79b1c8a86 - sha256: 37bc25f92b6803d7d4a1e5424c780a75ad1eda4974ca6dbcc4cbb573e240a377 + md5: 8f7279cbec42f59497e174f62405e2f7 + sha256: 94f025bdbc1147e8470b80b9cc69f0ee2f5f9dab5dee7c5d45b769c76832a88a category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda hash: - md5: d866cc8dc37f101505e65a4372794631 - sha256: 2daa2f6fc584674adee84b036a9a267a6bcae731c912326efda155f2328586d8 + md5: 9e49f87d8f99dc9724f52b3fac904106 + sha256: f2a4f0705e56ad8e25e4b20929e74ab0c7d5867cd52f315510dff37ea6508c38 category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.2.0-h3d2f4b3_1.conda hash: - md5: 0714af035978be750d5e1f9adc8ee4cb - sha256: eb5985f740ee97b8a30efd7ff6a48c36e3eb33678bf7a3f6fb53d5fc4bcc9cc7 + md5: cb7b9d64ca63eb70c579f7af4169f2d3 + sha256: 8fe13c8c576bfac296971539418e096ce3aa58c3c27790121c62a64c35fe0781 category: main optional: false - name: libopenvino-intel-gpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' ocl-icd: '>=2.3.2,<3.0a0' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda + hash: + md5: a9712fae44d01d906e228c49235e3b89 + sha256: c15a90baed7c3ad46c51d2ec70087cc3fb947dbeaea7e4bc93f785e9d12af092 + category: main + optional: false +- name: libopenvino-intel-npu-plugin + version: 2024.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libopenvino: 2024.2.0 + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda hash: - md5: 6ebefdc74cb700ec82cd6702125cc422 - sha256: 15f0ad9ea10829d8964253b08667af015dfa4befa0afd2e6f3a44110f6efcb96 + md5: 5c2d064181e686cf5cfac6f1a1ee4e91 + sha256: c2f4f1685b3662b0f18f6647fe7a46a0c061f78e017e3d9815e326171f342ba6 category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda hash: - md5: 6397395a4677d59bbd32c4f05bb8fa63 - sha256: 09c91b8701764154b41a2c82d0412939e5625c712edfe965496930cdad6c822e + md5: 89addf0fc0f489fa0c076f1c8c0d62bf + sha256: eb183fa65b43cc944ad3d1528cdb5c533d3b4ccdd8ed44612e2c89f962a020ce category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.2.0-h280e65d_1.conda hash: - md5: c3f40e2622af41f0e597733266a0ec09 - sha256: 64b45b4df151b80988d13f72cec3145ab3773f255e089d21cdb6a7ab7b2dc852 + md5: 2fb0fc2d2f2583682d70847ac23b56b0 + sha256: 8354b19cdb6551ae38e12b82cc352b6e5d288235cd114d4f80d3b63d3d16eb5c category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 24c9cf1dd8f6d6189102a136a731758c - sha256: c29f5bead57bfb14cca7bd89e20f13eb18ec9a4624dcff1d56834454deb3be9c + md5: 9b0a13989b35302e47da13842683804d + sha256: 3f7ea37f5d8f052a1a162d864c01b4ba477c05734351847e9136a5ebe84ac827 category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: 543a343c411d307d3076e021f4eec355 - sha256: 16da5c3b4526a340145e074b32253221059f60389bc6c048cec8dc2767ad357e + md5: 0f0ec68c3d7feac549eae4cd1a7e6542 + sha256: 54b187853047ba743fa570d794858cf4a451bee9db86a2129831b7c81ce4ffae category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 259bd0c788f447fe78aab69895365528 - sha256: cc16cf9103d57d14a4f65b0148ae6197ced75063bebb07533744a1f0675ef294 + md5: 7b3680d3fd00e1f91d5faf9c97c7ae78 + sha256: da2fcf5e9962d5c5e1d47d52f84635648952354c30205c5908332af5999625bc category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: f52039a0882dad166cbc55e1d41c05a4 - sha256: 37de5299f8f9c790f073bf7b5dd2d1c21ee148302fc8087a31291e72f49c0c52 + md5: b420755d98724dc040723df5c0447e5b + sha256: 75efc13d43147bc7e9e02a27e7ab3d050d37d60f7ccc34f902f35bfe91c45200 category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda hash: - md5: ec121a4195acadad086f84719cc91430 - sha256: 2f032e4cec7d24f80ea932c99b0fea896fbf1e4a202453b71b50bc6980d0cfae + md5: ac43b516c128411f84f1e19c875998f1 + sha256: 077470fd8a48b4aafbb46a6ceccd9697a82ec16cce5dcb56282711ec04852e1d category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.2.0-hf036a51_1.conda hash: - md5: 7489363c2aa4d7a29c2b6f2c505099a4 - sha256: a78255491cc455d1b8ac8436996e8112d59f49e6994013a3184f93cf55c6cd0d + md5: a34b2a4c23b4c7867ddba1ad92fadf57 + sha256: 4064f1c92da47c3ce6f8dafcbac80452b49251e09cf244d1c35c34b0df158bcf category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: - libabseil: '>=20240116.1,<20240117.0a0' + __glibc: '>=2.17,<3.0.a0' + libabseil: '>=20240116.2,<20240117.0a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda hash: - md5: bdbf11f760f1a3b35d766e03cebd9c42 - sha256: 3037418cbf5e14964e4c4909ac4f15729db29e990b57d3b2d0b7cf6b0186a3d7 + md5: 11acf52cac790edcf087b89e83834f7d + sha256: 0558659f340bc22a918750e1142a9215bac66fb8cde62279559f4a22d7d11be1 category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' + libabseil: '>=20240116.2,<20240117.0a0' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.0.0-h7d3639a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.2.0-haca2b7f_1.conda hash: - md5: 426d2097dd8f8c129351ab6d0158dde6 - sha256: 077a86295e5b30c8c9f9a140486f6d3b2eff32a9ff7e1c462a28f4e95bd60c66 + md5: 50310e9b533ff331a5a09c90e0c7a2f2 + sha256: fc5bb9c32e8e7eaf432edf9cbc1fe7576373ee36fc6e3f7a8b645aeb56ded965 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda hash: - md5: 4354ea9f30a8c5111403fa4b24a2ad66 - sha256: 792f3a7de81b92a85339082008281dc03359c64ab10d9a93c71856fbefac8333 + md5: e7f91b35e3aa7abe880fc9192a761fc0 + sha256: 896b19b23e0649cdadf972c7380f74b766012feaea1417ab2fc4efb4de049cd4 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.2.0-hf036a51_1.conda hash: - md5: ab2a53b0b8a50397a71b58ad4792c615 - sha256: 7458435a72afd7648cdce5da233407750f14c11e78cb4219b6d30a4a57a7a741 + md5: 01aa2d69ece7efe5270646c5ca774011 + sha256: 11ae1886e8e2535aaff0da48d1f5e8ff176489553c24c0f645331e29c9ccb839 category: main optional: false - name: libopus @@ -4163,7 +3463,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda hash: md5: 009981dd9cfcaa4dbfa25ffaed86bcae @@ -4175,40 +3475,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda hash: md5: 65dcddb15965c9de2c0365cb14910532 sha256: 13e646d24b5179e6b0a5ece4451a587d759f55d9a360b7015f8f96eff4524b8f category: main optional: false -- name: libpq - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda - hash: - md5: 9e49ec2a61d02623b379dc332eb6889d - sha256: e03a8439b79e013840c44c957d37dbce10316888b2b5dc7dcfcfc0cfe3a3b128 - category: main - optional: false -- name: libpq - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpq-16.2-ha925e61_1.conda - hash: - md5: a10ef466bbc68a8e74112a8e26028d66 - sha256: bfb252cb14b88a75ba4af930c16dccae265dce0afdf5abde7de1718181aa2cea - category: main - optional: false - name: libprotobuf version: 4.25.3 manager: conda @@ -4217,7 +3490,7 @@ package: libabseil: '>=20240116.1,<20240117.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda hash: md5: 6945825cebd2aeb16af4c69d97c32c13 @@ -4232,7 +3505,7 @@ package: __osx: '>=10.13' libabseil: '>=20240116.1,<20240117.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda hash: md5: 57b7ee4f1fd8573781cfdabaec4a7782 @@ -4249,7 +3522,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda hash: md5: 63ab3e0cf149917a08af38b2786320c0 @@ -4264,53 +3537,26 @@ package: lcms2: '>=2.15,<3.0a0' libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.21.1-h8138101_2.conda hash: md5: 099b1112ffc520a8d40b16d3ca9d47d0 sha256: e69f7fa11709b96be6d99c3c55768996a61c4c0a675bb57f433b3b712126410e category: main optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - hash: - md5: 41c69fba59d495e8cf5ffda48a607e35 - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - category: main - optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - hash: - md5: c5c36ec64e3c86504728c38b79011d08 - sha256: 384b72a09bd4bb29c1aa085110b2f940dba431587ffb4e2c1a28f605887a1867 - category: main - optional: false - name: librttopo version: 1.1.0 manager: conda platform: linux-64 dependencies: - geos: '>=3.12.1,<3.12.2.0a0' + __glibc: '>=2.17,<3.0.a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda + url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda hash: - md5: 20c3c14bc491f30daecaa6f73e2223ae - sha256: 03e248787162a1804683c614c0681c2488fa6d9f353cb32e2f8c1158157165ea + md5: 3d9f3a2e5d7213c34997e4464d2f938c + sha256: 65bfd9f8915b1fc2523c58bf556dc2b9ed6127b7c6877ed2841c67b717f6f924 category: main optional: false - name: librttopo @@ -4318,13 +3564,13 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - geos: '>=3.12.1,<3.12.2.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-hf05f67e_15.conda + __osx: '>=10.13' + geos: '>=3.12.2,<3.12.3.0a0' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-he2ba7a0_16.conda hash: - md5: e65bedc9d9779a161cf26b6d12305246 - sha256: 10c46efefda5cc77143832a186f517e401098907cf9c3ec7406a5c242bb34e33 + md5: 80cc407788999eb3cd5a3651981e55fd + sha256: 907f602ad39172a98e3062c0d6616535075f5227435753fe2c843eb10891403c category: main optional: false - name: libsanitizer @@ -4333,10 +3579,11 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda + libstdcxx-ng: '>=12.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda hash: - md5: 11d1ceacff40054d5a74b12975d76f20 - sha256: 70329cb8b0604273521cdae63520cb364a8d5477e156e65cdbd810984caeabee + md5: 448dc960d50a75e8286b8427028ec56e + sha256: 78e8578e875fddcd96d626f7ceebe1cda167c2435a87bacf15c2f02ae966ffcf category: main optional: false - name: libspatialite @@ -4344,21 +3591,22 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda hash: - md5: f2e2bdd5fd10493a525503b2f40c59eb - sha256: 4181564a6e7bc0fa854cf8f2ed55e25c166c52da501dd21b39cf5c7567e999cb + md5: 48502f34f5ba86c1ce192cb30f959dc9 + sha256: ba7a298eb6e101ad4c3769c84f0d635c34e677a1879064f41e82598f0a0f5696 category: main optional: false - name: libspatialite @@ -4366,46 +3614,48 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-h487bbac_5.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-hdc25a2c_8.conda hash: - md5: e295a6cf66039ca5ce3dfdbd850a4145 - sha256: 49de77260f5946f8a023309c11f9dabd9c070745afd5f1ba7343342ac6285306 + md5: 51fd57e4f726cea701188184c036c341 + sha256: 860aa6eae736e7f280fcded14541512a98def5f49e9206042b452428d9913509 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda hash: - md5: 866983a220e27a80cb75e85cb30466a1 - sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 18aa975d2094c34aef978060ae7da7d8 + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + __osx: '>=10.13' + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda hash: - md5: 086f56e13a96a6cfb1bf640505ae6b70 - sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 5dadfbc1a567fe6e475df4ce3148be09 + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 category: main optional: false - name: libssh2 @@ -4414,7 +3664,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -4427,7 +3677,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -4439,22 +3689,24 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: b3c6062c84a8e172555ee104ea6a01ab - sha256: efcd4b4cba79cd0fb5a87757c7ca63171cf3b7b06446192364bae7defb50b94c + md5: 3706e34877bd82d04cb1e9e9baeb2739 + sha256: d1993225de21943f76a3cc5cb7d55f88be225001a988068e673171bed130d180 category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libtasn1 @@ -4491,7 +3743,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda @@ -4510,7 +3762,7 @@ package: libdeflate: '>=1.20,<1.21.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h129831d_3.conda @@ -4555,95 +3807,100 @@ package: category: main optional: false - name: libva - version: 2.21.0 + version: 2.22.0 manager: conda platform: linux-64 dependencies: - libdrm: '>=2.4.120,<2.5.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + libdrm: '>=2.4.121,<2.5.0a0' + libgcc-ng: '>=12' + libxcb: '>=1.16,<1.17.0a0' + wayland: '>=1.23.0,<2.0a0' + wayland-protocols: '' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda hash: - md5: e50a2609159a3e336fe4092738c00687 - sha256: b4e3a3fa523a5ddd1eca7981c9d6a9b831a182950116cc5bda18c94a040b63bc + md5: d12f659072132c9d16e497073fc1f68b + sha256: 8a67bda4308a939b2b25337cac1bc7950a1ee755d009c020ab739c4e0607fc2d category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda hash: - md5: 01c76c6d71097a0f3bd8683a8f255123 - sha256: b0e0500fc92f626baaa2cf926dece5ce7571c42a2db2d993a250d4c5da4d68ca + md5: cde393f461e0c169d9ffb2fc70f81c33 + sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13 category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda hash: - md5: 2c087711228029c8eab3301ddff1c386 - sha256: d3980ecf1e65bfbf7e1c57d6f41a66ab4f33c4fe6b71bf9414bb823e2db186fb + md5: 9b8744a702ffb1738191e094e6eb67dc + sha256: 47e70e76988c11de97d539794fd4b03db69b75289ac02cdc35ae5a595ffcd973 category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda hash: - md5: 30de3fd9b3b602f7473f30e684eeea8c - sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0 + md5: b26e8aa824079e1be0294e7152ca4559 + sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda hash: - md5: 4e7e9d244e87d66c18d36894fd6a8ae5 - sha256: fa7580f26fec4c28321ec2ece1257f3293e0c646c635e9904679f4a8369be401 + md5: b2c0047ea73819d992484faacbbe1c24 + sha256: 7bafd8f4c637778cd0aa390bf3a894feef0e1fcf6ea6000c7ffc25c4c5a65538 category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda hash: - md5: 33277193f5b92bad9fdd230eb700929c - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 + md5: 151cba22b85a989c2d6ef9633ffee1e4 + sha256: 7180375f37fd264bb50672a63da94536d4abd81ccec059e932728ae056324b3a category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: osx-64 dependencies: pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.16-h0dc2134_0.conda hash: - md5: 5513f57e0238c87c12dffedbcc9c1a4a - sha256: f41904f466acc8b3197f37f2dd3a08da75720c7f7464d9267635debc4ac1902b + md5: 07e80289d4ba724f37b4b6f001f88fbe + sha256: c64277f586b716d5c34947e7f2783ef0d24f239a136bc6a024e854bede0389a9 category: main optional: false - name: libxcrypt @@ -4659,34 +3916,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 0ac9aff6010a7751961c8e4b863a40e7 + sha256: 11a346aed187405a7d3710a79b815fd66ff80fec3b9b7f840a24531324742acf category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' icu: '>=73.2,<74.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-hc603aa4_3.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: c188d96aea8eaa16efec573fe36a9a13 + sha256: b0cf4a1d3e628876613665ea957a4c0adc30460be859fa859a1eed7eac87330b category: main optional: false - name: libzip @@ -4696,7 +3955,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -4710,7 +3969,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -4719,37 +3978,39 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: llvm-tools @@ -4759,7 +4020,7 @@ package: dependencies: libllvm16: 16.0.6 libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-16.0.6-hbedff68_3.conda hash: @@ -4797,11 +4058,11 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda hash: - md5: bb14fcb13341b81d5eb386423b9d2bac - sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 + md5: ec7398d21e2651e0dcb0044d03b9a339 + sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 category: main optional: false - name: lzo @@ -4809,14 +4070,14 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda hash: - md5: 0b6bca372a95d6c602c7a922e928ce79 - sha256: c8a9401eff2efbbcc6da03d0066ee85d72402f7658c240e7968c64052a0d0493 + md5: bfecd73e4a2dc18ffd5288acf8a212ab + sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -4824,32 +4085,33 @@ package: libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda hash: - md5: 557396140c71eba588e96d597e0c61aa - sha256: 1a56549751f4c4a7998e0a8bcff367c3992cb832c0b211d775cfd644e1ef5e6b + md5: 4474532a312b2245c5c77f1176989b46 + sha256: 6315ea87d094418e744deb79a22331718b36a0e6e107cd7fc3c52c7922bc8133 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.5-h37d7099_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.7-h62b0c8d_0.conda hash: - md5: 2203b2e83c20305b3d669556c345c8e9 - sha256: 426f4db1d56cdefa478a5ece35ed7624860548ace87d6ad927c4c9c6a7a20fec + md5: 9cb19284d7d835918241acf8180099db + sha256: e02a6e1a43b0ff44bb9460d46d3f7687a1876d435fb3c2c6cf9e19bab60901f6 category: main optional: false - name: mpc @@ -4878,26 +4140,26 @@ package: category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: nettle @@ -4923,65 +4185,8 @@ package: sha256: 62de51fc44f1595a06c5b24bb717b949b4b9fb4c4acaf127b92ce99ddb546ca7 category: main optional: false -- name: nspr - version: '4.35' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda - hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - category: main - optional: false -- name: nspr - version: '4.35' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda - hash: - md5: a9e56c98d13d8b7ce72bf4357317c29b - sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libsqlite: '>=3.45.1,<4.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda - hash: - md5: 54b56c2fdf973656b748e0378900ec13 - sha256: a9bc94d03df48014011cf6caaf447f2ef86a5edf7c70d70002ec4b59f5a4e198 - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.98-ha05da47_0.conda - hash: - md5: 79d062716d8e1f77cf806c6fe0f4405c - sha256: 3d99dd976aeb8678e4ac5fcbd574e1de50cdc57b742e22855f294c8047d5c68e - category: main - optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: linux-64 dependencies: @@ -4992,27 +4197,28 @@ package: libstdcxx-ng: '>=12' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py312h22e1c76_0.conda hash: - md5: d8285bea2a350f63fab23bf460221f3f - sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8 + md5: 7956c7d65f87aecaba720af6088e72c3 + sha256: e5fc4a1053c8f02db78d4a50733d6c84d04e3c781749ae7478876ecdcd8c87ca category: main optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' libcxx: '>=16' liblapack: '>=3.9.0,<4.0a0' python: '>=3.12,<3.13.0a0' python_abi: 3.12.* - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py312he3a82b2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.0.0-py312h8813227_0.conda hash: - md5: 96c61a21c4276613748dba069554846b - sha256: 6152b73fba3e227afa4952df8753128fc9669bbaf142ee8f9972bf9df3bf8856 + md5: 814dba0ed2de85d89e09a5b811024a86 + sha256: c83b985945095b04c4ba4828eea4ddb0b9b5546518b39d4b91c32afbf7838cde category: main optional: false - name: occt @@ -5071,7 +4277,7 @@ package: imath: '>=3.1.11,<3.1.12.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda hash: md5: 34e58e21fc28e404207d6ce4287da264 @@ -5085,7 +4291,7 @@ package: dependencies: imath: '>=3.1.11,<3.1.12.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.2.2-h3f0570e_1.conda hash: md5: 95bd8b6b83801d99b064c785585bd15d @@ -5126,7 +4332,7 @@ package: libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda hash: md5: 7f2e286780f072ed750df46dc2631138 @@ -5141,7 +4347,7 @@ package: libcxx: '>=16' libpng: '>=1.6.43,<1.7.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda hash: md5: 05a14cc9d725dd74995927968d6547e3 @@ -5149,28 +4355,29 @@ package: category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: p11-kit @@ -5201,30 +4408,31 @@ package: category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda hash: - md5: 8292dea9e022d9610a11fce5e0896ed8 - sha256: 766dd986a7ed6197676c14699000bba2625fd26c8a890fcb7a810e5cf56155bc + md5: 3914f7ac1761dce57102c72ca7c35d01 + sha256: 90646ad0d8f9d0fd896170c4f3d754e88c4ba0eaf856c24d00842016f644baab category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_0.conda hash: - md5: 9c8651803886ce9d5983e107a0df4ea8 - sha256: 226714bbf89d45bf7da4c7551e21b8a833f51d33379fe3dfbfe31b72832d4dba + md5: b8f63aec37f31ffddac6dfdc0b31a73e + sha256: b397f92ef7d561f817c5336295d6696c72d2576328baceb9dc51bfc772bcb48e category: main optional: false - name: pip @@ -5280,156 +4488,38 @@ package: sha256: 3ab44e12e566c67a6e9fd831f557ab195456aa996b8dd9af19787ca80caa5cd1 category: main optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: linux-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libstdcxx-ng: '>=12' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda - hash: - md5: c688853df9dcfed47200d0e28e5dfe11 - sha256: 0ea3e63ae3ba07bcae8cc541647c647c68aeec32dfbe3bbaeecc845833b27a6f - category: main - optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: osx-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - gettext: '>=0.21.1,<1.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/osx-64/poppler-24.03.0-h0c752f9_0.conda - hash: - md5: 6b55d989edec2e1ea71236ca4cdd4960 - sha256: 05c0e43fda42be7745a68681511125ee244f465a9515fe6d4b564a224ca3b46b - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda - hash: - md5: 7a5806219d0f77ce8393375d040df065 - sha256: 7fc52e69478973f173f055ade6c4087564362be9172c294b493a79671fef9a7e - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.2-h06f2bd8_1.conda - hash: - md5: fe36c4a9254176dde4ca696016c50aa8 - sha256: 2a96af8385c51e97950ed00d802186069bf4933b3be111956508ab6be158d463 - category: main - optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: linux-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda hash: - md5: c97818016ebf8710a0f0cd6c29806493 - sha256: a8fa28987cc1d613dbebf6440af77ef2adaf030f0ca83133872835d3df1faa1c + md5: c38c5246d064ef16eba065d93c46f1c6 + sha256: ec9d16725925c62a7974faa396ca61878cb4cc7398c6c0e76d3ae28cffafc7db category: main optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: osx-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + __osx: '>=10.13' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.0-h23b96cc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.1-hf92c781_0.conda hash: - md5: 290e72714216cf50217e8d0160374356 - sha256: 95ec19f40c92ed4c0a5f20ec0a4db11bf70cc8e891cd031c4ac1b77639d45290 + md5: b128ccdae180135720ab963c68bc2f1a + sha256: c047c55cb2e239d35d7f28fc50225d5798be37af1e84d9036966447c82b373f5 category: main optional: false - name: pthread-stubs @@ -5481,52 +4571,53 @@ package: category: main optional: false - name: python - version: 3.12.2 + version: 3.12.4 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.45.1,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + ncurses: '>=6.5,<7.0a0' + openssl: '>=3.3.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.2-hab00c5b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda hash: - md5: ad7b68400f3a6ebe72b00be093c7f301 - sha256: ddb7a2d8d78046bda5d7631e6814f9468d2eb054e10f86f4648c9d1fdaa30c0f + md5: d73490214f536cccb5819e9873048c92 + sha256: 97a78631e6c928bf7ad78d52f7f070fcf3bd37619fa48dc4394c21cf3058cdee category: main optional: false - name: python - version: 3.12.2 + version: 3.12.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' - openssl: '>=3.2.1,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + ncurses: '>=6.5,<7.0a0' + openssl: '>=3.3.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.2-h9f0c242_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda hash: - md5: 0179b8007ba008cf5bec11f3b3853902 - sha256: 7647ac06c3798a182a4bcb1ff58864f1ef81eb3acea6971295304c23e43252fb + md5: 94e2b77992f580ac6b7a4fc9b53018b3 + sha256: 677958ee90eff229755d4e0ed40af6d835c9131e863b1539b34bbf07d7a775f3 category: main optional: false - name: python_abi @@ -5552,52 +4643,29 @@ package: category: main optional: false - name: rapidjson - version: 1.1.0 + version: 1.1.0.post20240409 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.3.0' - libstdcxx-ng: '>=7.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda hash: - md5: 37d4fdbb92d573c7d6ab6de74a666dc4 - sha256: 73b74a21dcaafc4a9f43e7f4295ead29d0f3ef13790bad69351942b77294aad8 + md5: d6e98530772fc26c112640461110d127 + sha256: 645e408a91d3c3bea6cbb24e0c208222eb45694978b48e0224424369271ca0ef category: main optional: false - name: rapidjson - version: 1.1.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0-hb1e8313_1002.tar.bz2 - hash: - md5: 6393fe5c6c2d496ab76853628bcf10d9 - sha256: ab46afaae30bf186fb389658bf7e1176508a9a0a93d9ab621f65bd1cbe1faafa - category: main - optional: false -- name: re2 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - hash: - md5: 8f70e36268dea8eb666ef14c29bd3cda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - category: main - optional: false -- name: re2 - version: 2023.09.01 + version: 1.1.0.post20240409 manager: conda platform: osx-64 dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0.post20240409-hf036a51_1.conda hash: - md5: 266f8ca8528fc7e0fa31066c309ad864 - sha256: 5739ed2cfa62ed7f828eb4b9e6e69ff1df56cb9a9aacdc296451a3cb647034eb + md5: 7b32c6b26b7c3a0d97ad484ab6f207c9 + sha256: 07f88271bc5a73fc5a910895bf83bb6046b2b84a3935015c448667aef41abf9e category: main optional: false - name: readline @@ -5625,41 +4693,28 @@ package: sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 category: main optional: false -- name: s2n - version: 1.4.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda - hash: - md5: 0240a49dffea6daea27aa388663edcab - sha256: 1068495f0f8f8b999dda339429dfaf5a8bd2e7a25bb386b6c39fd33ba01753fd - category: main - optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: osx-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: sigtool @@ -5675,124 +4730,101 @@ package: category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b - category: main - optional: false -- name: spdlog - version: 1.12.0 - manager: conda - platform: linux-64 - dependencies: - fmt: '>=10.1.1,<11.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - hash: - md5: f37afc6ce10d45b9fae2f55ddc635b9f - sha256: 34c2ac3ecafc109ea659087f2a429b8fd7c557eb75d072e723a9954472726e62 - category: main - optional: false -- name: spdlog - version: 1.12.0 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - fmt: '>=10.1.1,<11.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 1be852e792cca50421504cee933e3063 - sha256: 3bce42d94b4cd5672bde68ec47374e558b2bc481621f759f70b56bf3da12c31f + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda hash: - md5: 1423efca06ed343c1da0fc429bae0779 - sha256: 22d2692c82b73480c9adc80472bfb241262586edaf1dac1a7504434e47185d3c + md5: 77ea8dff5cf8550cc8f5629a6af56323 + sha256: e849d576e52bf3e6fc5786f89b7d76978f2e2438587826c95570324cb572e52b category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + __osx: '>=10.13' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.2-h7461747_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.46.0-h28673e1_0.conda hash: - md5: fc4dae09f6b38084f3bfc87c77032584 - sha256: c9c1b7d6025d5efa74f4ddbda1ae72a721f041ad3d4a6ec3dda600befe9dffaa + md5: b76e50276ebb3131cb84aac8123ca75d + sha256: 7d868d34348615450c43cb4737b44987a0e45fdf4759502b323494dc8c931409 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda hash: - md5: 207e01ffa0eb2d2efb83fb6f46365a21 - sha256: eee484177184c7876d258917ab3f209396e6fc59e9bf3603a3ebf1ce8b39df80 + md5: 06c5dec4ebb47213b648a6c4dc8400d6 + sha256: 3077a32687c6ccf853c978ad97b77a08fc518c94e73eb449f5a312f1d77d33f0 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.0.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.1.2-hf036a51_0.conda hash: - md5: 5eaa877d08099311d615c23a4549482d - sha256: 51414c2e9b9f26b71a94037e3969dbfa9f65a2feaf31b7fb0d9905b5fef0e56e + md5: 89a3e90b3433159eec5e9a7db235e419 + sha256: 2eafa66a8ecf0ae24e255771668ad42d3163466bb482c26dc7e4d128b8b9aa69 category: main optional: false - name: sysroot_linux-64 - version: '2.12' + version: '2.17' manager: conda platform: linux-64 dependencies: - kernel-headers_linux-64: 2.6.32 - url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda + _sysroot_linux-64_curr_repodata_hack: 3.* + kernel-headers_linux-64: 3.10.0 + tzdata: '' + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda hash: - md5: 595db67e32b276298ff3d94d07d47fbf - sha256: b4e4d685e41cb36cfb16f0cb15d2c61f8f94f56fab38987a44eff95d8a673fb5 + md5: 223fe8a3ff6d5e78484a9d58eb34d055 + sha256: b892b0b9c6dc8efe8b9b5442597d1ab8d65c0dc7e4e5a80f822cbdf0a639bd77 category: main optional: false - name: tapi @@ -5808,88 +4840,32 @@ package: category: main optional: false - name: tbb - version: 2021.11.0 + version: 2021.12.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libhwloc: '>=2.9.3,<2.9.4.0a0' + libhwloc: '>=2.11.1,<2.11.2.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda hash: - md5: 4531d2927578e7e254ff3bcf6457518c - sha256: ded4de0d5a3eb7b47ed829f0ed0e3c61ccd428308bde52d8d22ced228038223b + md5: c667c11d1e488a38220ede8a34441bff + sha256: e901e1887205a3f90d6a77e1302ccc5ffe48fd30de16907dfdbdbf1dbef0a177 category: main optional: false - name: tbb - version: 2021.11.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - libhwloc: '>=2.9.3,<2.9.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.11.0-h7728843_1.conda - hash: - md5: 29e29beba9deb0ef66bee015c5bf3c14 - sha256: 6d531daba5ccf150b58d434fa72b1da0da04e8f14ab71bdad289a90d355f47e8 - category: main - optional: false -- name: tiledb - version: 2.21.2 - manager: conda - platform: linux-64 - dependencies: - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' - libgcc-ng: '>=12' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda - hash: - md5: 04fcd8b5da3c8c8cf17f6ba7e8f839f9 - sha256: 414b441a41b40f509721d145f946b5e59c5d390b53ee04cf993302a73e6b5920 - category: main - optional: false -- name: tiledb - version: 2.21.2 + version: 2021.12.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' libcxx: '>=16' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.21.2-h0d80af6_0.conda + libhwloc: '>=2.11.1,<2.11.2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h3c5361c_3.conda hash: - md5: 7b0a0b85bf1cea8aa81e273dfb4fc815 - sha256: 5ea975c68f855a5cf617fb2c7a70c0814e57c3a84f6108a13b9fda89a5446a86 + md5: b0cada4d5a4cf1cbf8598b86231b5958 + sha256: e6ce25cb425251f74394f75c908a7a635c4469e95e0acc8f1106f29248156f5b category: main optional: false - name: tk @@ -5898,7 +4874,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc @@ -5910,37 +4886,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda hash: md5: bf830ba5afc507c6232d4ef0fb1a882d sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 category: main optional: false -- name: tzcode - version: 2024a - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda - hash: - md5: 32146e34aaec3745a08b6f49af3f41b0 - sha256: d3ea2927cabd6c9f27ee0cb498f893ac0133687d6a9e65e0bce4861c732a18df - category: main - optional: false -- name: tzcode - version: 2024a - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2024a-h10d778d_0.conda - hash: - md5: 8d50ba6668dbd193cd42ccd9099fa2ae - sha256: e3ee34b2711500f3b1d38309d47cfd7e4d05c0144f0b2b2bdfbc271a28cfdd76 - category: main - optional: false - name: tzdata version: 2024a manager: conda @@ -5964,28 +4916,56 @@ package: category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda hash: - md5: c5edf07141147789784f89d5b4e4a9ad - sha256: ec997599b6dcfef34242c67b695c4704d9ba6cb0b9de8f390defa475a95cdb3f + md5: d71d3a66528853c0a1ac2c02d79a0284 + sha256: 2aad2aeff7c69a2d7eecd7b662eef756b27d6a6b96f3e2c2a7071340ce14543e category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: osx-64 dependencies: - libcxx: '>=14' - url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.7-he965462_1.conda + __osx: '>=10.9' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.8-h6aefe2f_0.conda + hash: + md5: 649890a63cc818b24fbbf0572db221a5 + sha256: fec8e52955fc314580a93dee665349bf430ce6df19019cea3fae7ec60f732bdd + category: main + optional: false +- name: wayland + version: 1.23.0 + manager: conda + platform: linux-64 + dependencies: + libexpat: '>=2.6.2,<3.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda + hash: + md5: c13ca0abd5d1d31d0eebcf86d51da8a4 + sha256: 5f2572290dd09d5480abe6e0d9635c17031a12fd4e68578680e9f49444d6dd8b + category: main + optional: false +- name: wayland-protocols + version: '1.36' + manager: conda + platform: linux-64 + dependencies: + wayland: '' + url: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda hash: - md5: a342f2d5573ebdb1cba60ef2947c1b7f - sha256: 1f3563325ce2f9b28b6dfbc703f3cac4d36095d2103c40648338533f4cb80b63 + md5: c6f690e7d4abf562161477f14533cfd8 + sha256: ee18ec691d0c80b9493ba064930c1fedb8e7c369285ca78f7a39ecc4af908410 category: main optional: false - name: wheel @@ -6205,14 +5185,14 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda hash: - md5: 077b6e8ad6a3ddb741fce2496dd01bec - sha256: 3e53ba247f1ad68353f18aceba5bf8ce87e3dea930de85d36946844a7658c9fb + md5: 4a6d410296d7e39f00bacdee7df046e9 + sha256: 66eabe62b66c1597c4a755dcd3f4ce2c78adaf7b32e25dfee45504d67d7735c1 category: main optional: false - name: xorg-libx11 @@ -6220,14 +5200,15 @@ package: manager: conda platform: osx-64 dependencies: - libxcb: '>=1.15,<1.16.0a0' + __osx: '>=10.13' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-hc955faf_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-h7022169_1.conda hash: - md5: e13813931395ae85d3bbf7122d25e7c3 - sha256: eddb6d3f9c7bc105d9eff4b5c6093a8888e0988d0b448e680ed662bec7e0466e + md5: f09e69ee27a9aaf14a1698600f8e7f55 + sha256: eab0b85b6bf75724979bbf13f8b060efb7b159b5b5ce03c649f1ffad9f282bf1 category: main optional: false - name: xorg-libxau @@ -6351,14 +5332,14 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - xorg-libx11: '>=1.7.0,<2.0a0' - xorg-libxext: 1.3.* - xorg-libxt: '>=1.2.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 + libgcc-ng: '>=12' + xorg-libx11: '>=1.8.9,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + xorg-libxt: '>=1.3.0,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda hash: - md5: 3cdb89236358326adfce12be820a8af3 - sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b + md5: 4d6c9925cdcda27e9d022e40eb3eac05 + sha256: a34986d71949ba714b27080c8ebb4932857f6e2ebd6383fbb1639415b30f4fd0 category: main optional: false - name: xorg-libxrender @@ -6498,53 +5479,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/binary-p3.9.yml b/locks/binary-p3.9.yml index c4a3e458..fc149ebf 100644 --- a/locks/binary-p3.9.yml +++ b/locks/binary-p3.9.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: ba55ac76de851f52993149a1cb636afc8ad1a951653fb405580a7bb42220ff8a - osx-64: 8cc127644c2bc658bfc1d4fd3242a6aa12bafeee9c6254c3a43fc9ccad86f6fd + linux-64: 3e58101bff1eb83e8bd8432d345f8a42de67caf96d1a08147806b56addda7831 + osx-64: 13a686ed5cacb5fe0e0864b3bbeb6ef148bbab99e83004eac68152e38c69816c channels: - url: conda-forge used_env_vars: [] @@ -51,512 +51,41 @@ package: sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 category: main optional: false -- name: aom - version: 3.8.2 +- name: _sysroot_linux-64_curr_repodata_hack + version: '3' manager: conda platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda - hash: - md5: 625e1fed28a5139aed71b3a76117ef84 - sha256: 49b1352e2b9710b7b5400c0f2a86c0bb805091ecfc6c84d3dbf064effe33bfbf - category: main - optional: false -- name: aom - version: 3.8.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.8.2-h73e2aa4_0.conda - hash: - md5: a519a6b9f8f0e2ce1b4ee77cbc6a0a09 - sha256: 967d05b46e0a8153c57070a94262d38ffc03378803c1faa0bad258e8635d3775 - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda - hash: - md5: ce96c083829ab2727c942243ac93ffe0 - sha256: 75a540b313e5dc212fc0a6057f8a5bee2dda443f17a5a076bd3ea4d7195d483e - category: main - optional: false -- name: aws-c-auth - version: 0.7.16 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-auth-0.7.16-h9d28af5_8.conda - hash: - md5: 0b451cddce1ea8f9247b386ba3285edc - sha256: f75a39577b61fc649e3a8c926b91218ebad6ea78beb2f2b16f90d3ae9493c1c4 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda - hash: - md5: ce2471034f5459a39636aacc292c96b6 - sha256: e45d9f1eb862f566bdea3d3229dfc74f31e647a72198fe04aab58ccc03a30a37 - category: main - optional: false -- name: aws-c-cal - version: 0.6.10 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-cal-0.6.10-hf9de6f9_2.conda - hash: - md5: 393dbe9973160cb09cb3594c9246e260 - sha256: cb9b20aeec4cd037117fd0bfe2ae5a0a5f6a08a71f941be0f163bb27c87b98ea - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda - hash: - md5: d44fe0d9a6971a4fb245be0055775d9d - sha256: c71dd835b1d8c7097c8d152a65680f119a203b73a6a62c5aac414bafe5e997ad - category: main - optional: false -- name: aws-c-common - version: 0.9.14 - manager: conda - platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-common-0.9.14-h10d778d_0.conda - hash: - md5: c620ac518f3086eaf4f105f64908a57c - sha256: 1d207a8aee42700763e6a7801c69721ccc06ce75e62e0e5d8fc6df0197c0a88b - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda - hash: - md5: b0d9153fc7cfa8dc36b8703e1a59f5f3 - sha256: 7fcc6a924691f9de65c82fd559cb1cb2ebd121c42da544a9a43623d69a284e23 - category: main - optional: false -- name: aws-c-compression - version: 0.2.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-compression-0.2.18-h905ab21_2.conda - hash: - md5: ffd7cfb55b1aa4e3eef477583b1ad87d - sha256: 021cee135f0d9b58fbc8d212618cd9bd6bd0012da41a6469edf010b2853dd3ef - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda - hash: - md5: 58fc78e523e35a08423c913751a51fde - sha256: 38a30beabafc1dd86c0264b6746315a1010e541a1b3ed7f97e1702873e5eaa51 - category: main - optional: false -- name: aws-c-event-stream - version: 0.4.2 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-event-stream-0.4.2-h30f2259_6.conda - hash: - md5: 0923a8e81839b0b2d9787d85d635b196 - sha256: 65ea5552f7a87783b75a3ecf6e4acd2aee5357c4275a9932d732ee516acab0a9 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda - hash: - md5: 8476ec099649e9a6de52f7f4d916cd2a - sha256: 0dc5b73aa31cef3faeeb902a11f12e1244ac241f995d73e4f4e3e0c01622f7a1 - category: main - optional: false -- name: aws-c-http - version: 0.8.1 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-compression: '>=0.2.18,<0.2.19.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-http-0.8.1-hce3b3da_7.conda - hash: - md5: d287122dfb77c5fa0147fdf368c86d54 - sha256: a3e6bfd71bbc4119da1e79f2bce6094f045112c230b3fd5cc9e6ccd36aba3156 - category: main - optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: linux-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - s2n: '>=1.4.8,<1.4.9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda + url: https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda hash: - md5: cbf8138080ea12e9d9d66cf7c8bee325 - sha256: 5d7c7af98276949cee0e731ecedbd7e80135a3c3c3ea8246808ebb270732ae69 + md5: 1c005af0c6ff22814b7c52ee448d4bea + sha256: 6ac30acdbfd3136ee7a1de28af4355165291627e905715611726e674499b0786 category: main optional: false -- name: aws-c-io - version: 0.14.6 - manager: conda - platform: osx-64 - dependencies: - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-io-0.14.6-hf76ed93_2.conda - hash: - md5: 95e1a36ee569ff79e7eeccaf0ec1fe76 - sha256: ccb7eb57008cf89526694d5248878c6feffa9022aed0d657cb6a631b57f68026 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda - hash: - md5: 14ad8defb307e1edb293c3fc9da8648f - sha256: 6b2de4a0e6e907310127b1025a0030d023e1051da48ea5821dcc6db094d69ab7 - category: main - optional: false -- name: aws-c-mqtt - version: 0.10.3 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-mqtt-0.10.3-ha335edc_2.conda - hash: - md5: c8bacb9a988fd8fb6b560a966c4979a8 - sha256: 99304e5095193b937745d0ce6812d0333186a31c41a51b1e4297ddcd962824eb - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda - hash: - md5: 0086628487f8888df34f024a0a0d0289 - sha256: fef9c9a628f4f18b509a79bab6e9356724c957058464af5624757cc8c6f0536e - category: main - optional: false -- name: aws-c-s3 - version: 0.5.5 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-s3-0.5.5-h6f42f56_0.conda - hash: - md5: 868fbd186bc64457777c705162fd0d88 - sha256: a8cbf29cd471db62b42c0191411d66e446f3454dbb2d5daebd07bee670c1688d - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda - hash: - md5: 258194cedccd33fd8a7b95a8aa105015 - sha256: 349a05cf5fbcb3f6f358fc05098b210aa7da4ec3ab6d4719c79bb93b50a629f8 - category: main - optional: false -- name: aws-c-sdkutils - version: 0.1.15 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-c-sdkutils-0.1.15-h905ab21_2.conda - hash: - md5: bb1523b7de7ac6f112b1992cfcfb250b - sha256: 77f58ac3aec0cd987f80e202a8197e123beb13b9b25b0137dd921c7a6ddc86ac - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda - hash: - md5: 8a04fc5a5ecaba31f66904b47dcc7797 - sha256: 9080f064f572ac1747d32b4dff30452ff44ef2df399e6ec7bf9730da1eb99bba - category: main - optional: false -- name: aws-checksums - version: 0.1.18 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-checksums-0.1.18-h905ab21_2.conda - hash: - md5: f17e778398011e88d45edf58f24c18ae - sha256: 5760728e7320a01519bcbbae8dcd31b86e819f66c58f641b86b27ce592e5fff3 - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: linux-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda - hash: - md5: 44b522426a11ab2afbd09b0746b0e4cd - sha256: f6734310a4b948f4e838748c793b75fac8af195819e9986ae935ef8ab2632a8a - category: main - optional: false -- name: aws-crt-cpp - version: 0.26.4 - manager: conda - platform: osx-64 - dependencies: - aws-c-auth: '>=0.7.16,<0.7.17.0a0' - aws-c-cal: '>=0.6.10,<0.6.11.0a0' - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-c-http: '>=0.8.1,<0.8.2.0a0' - aws-c-io: '>=0.14.6,<0.14.7.0a0' - aws-c-mqtt: '>=0.10.3,<0.10.4.0a0' - aws-c-s3: '>=0.5.5,<0.5.6.0a0' - aws-c-sdkutils: '>=0.1.15,<0.1.16.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-crt-cpp-0.26.4-h25b5da4_3.conda - hash: - md5: 0bfe8548d21b566e2bd65c2fed90869e - sha256: 16c0d8f4d04f18e576ccf9fba2314956cd8667a0d14b1363cd627b600e87e890 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: linux-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda - hash: - md5: 3e735ae06073894080acd78365e78936 - sha256: b5515e6012fc858c6dd3ccf36009470d4ab6e3ba283934809112cca2874fb185 - category: main - optional: false -- name: aws-sdk-cpp - version: 1.11.267 - manager: conda - platform: osx-64 - dependencies: - aws-c-common: '>=0.9.14,<0.9.15.0a0' - aws-c-event-stream: '>=0.4.2,<0.4.3.0a0' - aws-checksums: '>=0.1.18,<0.1.19.0a0' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - libcurl: '>=8.6.0,<9.0a0' - libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/aws-sdk-cpp-1.11.267-hd2aab46_4.conda - hash: - md5: 76c6a4d1839a71361c31d9bcce3601b7 - sha256: ce10e38c01771663a0491a5190078484c5c3ae7be315e5b02fc1bc87e4c9856e - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: linux-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda - hash: - md5: 2dbab1d281b7e1da05eee544cbdc8af6 - sha256: 810a890bf66d6368637399ef415dcc8152acd28f4b4b61d4048b7be7cba17d4c - category: main - optional: false -- name: azure-core-cpp - version: 1.11.1 - manager: conda - platform: osx-64 - dependencies: - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-core-cpp-1.11.1-hbb1e571_1.conda - hash: - md5: 6e982efd0947cd3e9ba4223fbd988508 - sha256: 4b22a5e01ebd7f09c869cea73ae4853fb18a10a5716c8984598327e34eb2f9da - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: linux-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda - hash: - md5: 1e63d3866554a4d2e3d1cba5f21a2841 - sha256: c88f6bc72ef42fd09471d4c4b2293fa17f730e3ba10290a0bb86de0ff7e9b195 - category: main - optional: false -- name: azure-storage-blobs-cpp - version: 12.10.0 - manager: conda - platform: osx-64 - dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-blobs-cpp-12.10.0-h7728843_1.conda - hash: - md5: dc24ba551b749b6bab11e0ef22dc3438 - sha256: 2c68d1d28bdf9d465843bdb6818868e0b0af46dafc1f4e41df0af33241707113 - category: main - optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: linux-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda hash: - md5: f364272cb4c2f4ce2341067107b82865 - sha256: 7143e85cfadcc3c789c879e66c3e6dbf8b6d5822d1d75b5b3063955279348233 + md5: 346722a0be40f6edc53f12640d301338 + sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855 category: main optional: false -- name: azure-storage-common-cpp - version: 12.5.0 +- name: aom + version: 3.9.1 manager: conda platform: osx-64 dependencies: - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' + __osx: '>=10.13' libcxx: '>=16' - libxml2: '>=2.12.5,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/azure-storage-common-cpp-12.5.0-h0e82ce4_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.9.1-hf036a51_0.conda hash: - md5: 8a980ef5c6bc0677f5a60d5d60a4efdd - sha256: ecff365d3cdf3b5b04a6f823ec75b07459fb6cc312475180f7a33a237242ea27 + md5: 3f17bc32cb7fcb2b4bf3d8d37f656eb8 + sha256: 3032f2f55d6eceb10d53217c2a7f43e1eac83603d91e21ce502e8179e63a75f5 category: main optional: false - name: binutils @@ -565,10 +94,10 @@ package: platform: linux-64 dependencies: binutils_impl_linux-64: '>=2.40,<2.41.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda hash: - md5: ccc940fddbc3fcd3d79cd4c654c4b5c4 - sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c + md5: df53aa8418f8c289ae9b9665986034f8 + sha256: 75d7f5cda999fe1efe9f1de1be2d3e4ce32b20cbf97d1ef7b770e2e90c062858 category: main optional: false - name: binutils_impl_linux-64 @@ -578,10 +107,10 @@ package: dependencies: ld_impl_linux-64: '2.40' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda hash: - md5: 33084421a8c0af6aef1b439707f7662a - sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d + md5: 3f840c7ed70a96b5ebde8044b2f36f32 + sha256: 230f3136d17fdcf0e6da3a3ae59118570bc18106d79dd29bf2f341338d2a42c4 category: main optional: false - name: binutils_linux-64 @@ -591,43 +120,44 @@ package: dependencies: binutils_impl_linux-64: 2.40.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda hash: - md5: 2d9a60578bc28469d9aeef9aea5520c3 - sha256: d114b825acef51c1d065ca0a17f97e0e856c48765aecf2f8f164935635013dd2 + md5: bb3fb8553a669828501e80d13b6bd744 + sha256: b88a28156805c12e8ad363f49e27da26c176ed340b0f96cb9b6450bf7a6047f1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -635,45 +165,49 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: c-compiler @@ -684,10 +218,10 @@ package: binutils: '' gcc: '' gcc_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda hash: - md5: fad1d0a651bf929c6c16fbf1f6ccfa7c - sha256: 19343f6cdefd0a2e36c4f0da81ed9ea964e5b4e82a2304809afd8f151bf2ac8c + md5: e9dffe1056994133616378309f932d77 + sha256: 4213b6cbaed673c07f8b79c089f3487afdd56de944f21c4861ead862b7657eb4 category: main optional: false - name: c-compiler @@ -699,32 +233,32 @@ package: clang_osx-64: 16.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.7.0-h282daa2_1.conda hash: - md5: 4652f33fe8d895f61177e2783b289377 - sha256: c32fdb29dac5e1a01aa486aba1f7b21cff5c1c7748c0cf9b6c9475888b61eb17 + md5: d27411cb82bc1b76b9f487da6ae97f1d + sha256: a8e2e2b121e61e3d6a67aa618602815211573e96477ab048176a831ae622bfaf category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: cairo @@ -737,22 +271,22 @@ package: freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.2,<1.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxrender: '>=0.9.11,<0.10.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda hash: - md5: f907bb958910dc404647326ca80c263e - sha256: 142e2639a5bc0e99c44d76f4cc8dce9c6a2d87330c4beeabb128832cd871a86e + md5: b6d90276c5aee9b4407dd94eb0cd40a8 + sha256: 51cfaf4669ad83499b3da215b915c503d36faf6edf6db4681a70b5710842a86c category: main optional: false - name: cairo @@ -760,21 +294,21 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.0,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pixman: '>=0.42.2,<1.0a0' + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libzlib: '>=1.3.1,<2.0a0' + pixman: '>=0.43.4,<1.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h99e66fa_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.18.0-h9f650ed_2.conda hash: - md5: 13f830b1bf46018f7062d1b798d53eca - sha256: f8d1142cf244eadcbc44e8ca2266aa61a05b6cda5571f9b745ba32c7ebbfdfba + md5: d264e5b9759cab8d203cdfe43eabd8b5 + sha256: 1d2480538838cf5009df0285a73aa405798bc49de0c689ab270f543f5ae961aa category: main optional: false - name: cctools @@ -799,7 +333,7 @@ package: ld64_osx-64: '>=711,<712.0a0' libcxx: '' libllvm16: '>=16.0.6,<16.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' sigtool: '' url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-986-ha1c5b94_0.conda hash: @@ -807,49 +341,16 @@ package: sha256: 16ef6a8dd367d7d4d7b3446f73ed95b07603d6b5b3256c3acab9b3a9006ef7eb category: main optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: linux-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgfortran-ng: '' - libgfortran5: '>=12.3.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda - hash: - md5: 446ac3db6cb017e3dd067cc35cf51442 - sha256: fe50510b705d2adf6f7c162293f788ee7fa2eebd33adf30856723667e6a45586 - category: main - optional: false -- name: cfitsio - version: 4.4.0 - manager: conda - platform: osx-64 - dependencies: - bzip2: '>=1.0.8,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgfortran: 5.* - libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cfitsio-4.4.0-h60fb419_0.conda - hash: - md5: fea202fa33621a6c8a8a7146af6b34b7 - sha256: 476c45686fd8b3309117fc5c37ce29338f6f241f2598e3506f85ca196fc41cc9 - category: main - optional: false - name: clang version: 16.0.6 manager: conda platform: osx-64 dependencies: clang-16: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-hdae98eb_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16.0.6-default_h179603d_9.conda hash: - md5: 884e7b24306e4f21b7ee08dabadb2ecc - sha256: 71d2fa8174aedf549313fccf6fbc63ef08fdc898891ffba56dd376226649fa13 + md5: 1acf03a00abda70355ef2978cfce3e9b + sha256: 0553d08f7c917801841db35755d03c2e3c593145e7bb540d848ff60e9a59342d category: main optional: false - name: clang-16 @@ -857,16 +358,17 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libclang-cpp16: 16.0.6 libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang-16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 1c298568c30efe7d9369c7c15b748461 - sha256: 5a8dcab3b23552c6e93967ecc7e13c0e40c3f8e96ba26a4d942fa528ed5b449e + md5: bdd24ee262fd1c08f6e0a8173140321d + sha256: 26d405aeb42d84c904b551f5efa00ba3b8e4ec6577f62cecaa849fb1e485137f category: main optional: false -- name: clang_impl_osx-64 +- name: clang_osx-64 version: 16.0.6 manager: conda platform: osx-64 @@ -876,22 +378,10 @@ package: compiler-rt: 16.0.6.* ld64_osx-64: '' llvm-tools: 16.0.6.* - url: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-16.0.6-h8787910_11.conda - hash: - md5: ed9c90270c77481fc4cfccd0891d62a8 - sha256: 2174b2a01fb60da87b383405100bb6d5eac54fb8e84d2ce5f6a0488627c055fc - category: main - optional: false -- name: clang_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-hb91bd55_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-16.0.6-h8787910_2.conda hash: - md5: 24123b15e9c0dad9c0d5fd9da0b4c7a9 - sha256: 86b4928261c21546b9bae5a58975a5ade6256be0aacd8d0f7a3126150bad3967 + md5: efd22736de32ae376efc729b0b5af8a2 + sha256: 44150a183de949cfbba1c871af31ed4cf96b9500736848bac07714a4d432ede6 category: main optional: false - name: clangxx @@ -900,38 +390,26 @@ package: platform: osx-64 dependencies: clang: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h7151d67_6.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-16.0.6-default_h179603d_9.conda hash: - md5: cc8c007a529a7cfaa5d29d8599df3fe6 - sha256: 422e471cb572b977c7ff3aec6c89fc6af365c5e5a4e29feaa780519c9a20e84d + md5: 0cad937ac54668f5bd98ab7c6a76374c + sha256: 149c705d66303ab4ffe153b7d45625bdd4d131607178336e7a5a5fa45253c9d9 category: main optional: false -- name: clangxx_impl_osx-64 +- name: clangxx_osx-64 version: 16.0.6 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' clang_osx-64: 16.0.6 clangxx: 16.0.6.* - libcxx: '>=16' + libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-16.0.6-h6d92fbe_11.conda + url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-h1b7723c_2.conda hash: - md5: a658c595675bde00373347b22a974810 - sha256: 944d9cb8052eefec3182380454bf8a3f1b2a93c5ea992f8681ef45e975492983 - category: main - optional: false -- name: clangxx_osx-64 - version: 16.0.6 - manager: conda - platform: osx-64 - dependencies: - clang_osx-64: 16.0.6 - clangxx_impl_osx-64: 16.0.6 - url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-16.0.6-hb91bd55_11.conda - hash: - md5: e49aad30263abdcb785e610981b7c2c7 - sha256: 664e769eecf1d07d07729f4902ef07f2f5b11bc033adfd84637ce9742f3267a1 + md5: 9b40be235bc26c0949debeca13a35305 + sha256: 3b300a28e5a22146763309db69c80171db76bace3d5c1fd54623509936368e48 category: main optional: false - name: compiler-rt @@ -969,10 +447,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda hash: - md5: 81458b3aed8ab8711951ec3c0c04e097 - sha256: db059492391adfbed877d611870e01b6e0660c14fbe72dec5e17d1842b51581d + md5: d8d07866ac3b5b6937213c89a1874f08 + sha256: f50660a6543c401448e435ff71a2849faae203e3362be7618d994b6baf345f12 category: main optional: false - name: compilers @@ -983,10 +461,10 @@ package: c-compiler: 1.7.0 cxx-compiler: 1.7.0 fortran-compiler: 1.7.0 - url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.7.0-h694c41f_1.conda hash: - md5: 3576aa54986a3e2a5370e4232b35c036 - sha256: 0f219384ea4a1aaac26148f20a3ddb5fcb19f4a748b742e66e2b92a1af3a08a8 + md5: 875e9b06186a41d55b96b9c1a52f15be + sha256: c4db9ad330ae0baf68e77673eb3953d966e08c5e5993b0cc8c003d62c026068a category: main optional: false - name: cxx-compiler @@ -997,10 +475,10 @@ package: c-compiler: 1.7.0 gxx: '' gxx_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda hash: - md5: b4537c98cb59f8725b0e1e65816b4a28 - sha256: 9278c12ed455a39a50d908381786540c9fd1627e4489dca9638b3e222c86d3f7 + md5: 28de2e073db9ca9b72858bee9fb6f571 + sha256: cf895938292cfd4cfa2a06c6d57aa25c33cc974d4ffe52e704ffb67f5577b93f category: main optional: false - name: cxx-compiler @@ -1010,10 +488,10 @@ package: dependencies: c-compiler: 1.7.0 clangxx_osx-64: 16.* - url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.7.0-h7728843_1.conda hash: - md5: 8abaa2694c1fba2b6bd3753d00a60415 - sha256: fe198da9a3ea1f3d1c9f18cceff633594549ef80c20bdb9522beb4b4446be09c + md5: e04cb15a20553b973dd068c2dc81d682 + sha256: 844b0894552468685c6a9f7eaab3837461e1ebea5c3880d8de616c83b618f044 category: main optional: false - name: dav1d @@ -1040,44 +518,45 @@ package: category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: linux-64 dependencies: hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda hash: - md5: f12ca97c38833a5a179adc172155d15d - sha256: 964b3b53ca1c116fa0480912ec85fe182d8db6866607448b5b3ae73b0bf370e8 + md5: 6d8c86d0368625b6503d696db70ea041 + sha256: cccb49014366103ff5405c8b52f191cf8a9ceec6aedfe000418bdc1c11dc20cc category: main optional: false - name: eccodes - version: 2.34.1 + version: 2.36.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' hdf5: '>=1.14.3,<1.14.4.0a0' - jasper: '>=4.2.1,<5.0a0' - libaec: '>=1.1.2,<2.0a0' + jasper: '>=4.2.4,<5.0a0' + libaec: '>=1.1.3,<2.0a0' libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.34.1-h40b907c_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/eccodes-2.36.0-h96318c6_0.conda hash: - md5: 20dc150b88956b981f1e0a56cadc3437 - sha256: 0473cf51b54171f1e8dd1b48a765b070b14bd9f801ee01594645e80bbea11918 + md5: 9ef1b3475a7c8a75a24b3a3302808171 + sha256: ec058f68ad00fc52620440992e1be8d9812a4d9ab6ad7f9f6cf99fdd1f4843e2 category: main optional: false - name: expat @@ -1106,11 +585,12 @@ package: category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: linux-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __glibc: '>=2.17,<3.0.a0' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1118,48 +598,50 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-gpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-gpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-npu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' libstdcxx-ng: '>=12' - libva: '>=2.21.0,<3.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxcb: '>=1.15,<1.16.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libva: '>=2.22.0,<3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxcb: '>=1.16,<1.17.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda hash: - md5: a9865c001fa2e03272895e23b10bc55f - sha256: 844dfa9e64bd20453a36f94a7110b6db48b47db5095f7bbb395f56eb55831f10 + md5: 107fd9222d9f628608b07b69abba9420 + sha256: b264eb69ddcc15bdbd74e7ce57b96350483abdfaa73d485dd4efcca0f4d8507f category: main optional: false - name: ffmpeg - version: 6.1.1 + version: 7.0.1 manager: conda platform: osx-64 dependencies: - aom: '>=3.8.2,<3.9.0a0' + __osx: '>=10.13' + aom: '>=3.9.1,<3.10.0a0' bzip2: '>=1.0.8,<2.0a0' dav1d: '>=1.2.1,<1.2.2.0a0' fontconfig: '>=2.14.2,<3.0a0' @@ -1167,35 +649,35 @@ package: freetype: '>=2.12.1,<3.0a0' gmp: '>=6.3.0,<7.0a0' gnutls: '>=3.7.9,<3.8.0a0' - harfbuzz: '>=8.3.0,<9.0a0' + harfbuzz: '>=9.0.0,<10.0a0' lame: '>=3.100,<3.101.0a0' libass: '>=0.17.1,<0.17.2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libopenvino: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-batch-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-auto-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-hetero-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-intel-cpu-plugin: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-ir-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-onnx-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-paddle-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-pytorch-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-frontend: '>=2024.0.0,<2024.0.1.0a0' - libopenvino-tensorflow-lite-frontend: '>=2024.0.0,<2024.0.1.0a0' + libopenvino: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-batch-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-auto-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-hetero-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-intel-cpu-plugin: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-ir-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-onnx-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-paddle-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-pytorch-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-frontend: '>=2024.2.0,<2024.2.1.0a0' + libopenvino-tensorflow-lite-frontend: '>=2024.2.0,<2024.2.1.0a0' libopus: '>=1.3.1,<2.0a0' - libvpx: '>=1.14.0,<1.15.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libvpx: '>=1.14.1,<1.15.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' openh264: '>=2.4.1,<2.4.2.0a0' - svt-av1: '>=2.0.0,<2.0.1.0a0' + svt-av1: '>=2.1.2,<2.1.3.0a0' x264: '>=1!164.3095,<1!165' x265: '>=3.5,<3.6.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.1.1-gpl_h9654dba_107.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-7.0.1-gpl_hb3e10e8_104.conda hash: - md5: 656eb681c293b9e07d3dfba0ba3f6d06 - sha256: 1b60bdfa05370d217bd97aa7ae477e8237f3d63340009c5915ab7e45ddabe662 + md5: 973b150f71301149def599cd44a88545 + sha256: 76e9f20fe02283843ba418cb199270dfbc76c457496473029882916addda9e0d category: main optional: false - name: fltk @@ -1207,22 +689,22 @@ package: libgcc-ng: '>=12' libglu: '' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' + libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda hash: - md5: ddcdbcc4fb8918767d6145239c1965bd - sha256: 8287ad80f3d56fdcd454b671cb3d4fa55baf6abe9104680ce5c470d2eb03f3c0 + md5: c82be18188e73e00064101a46e46e785 + sha256: ee14e3fe574e5c1820cd67d620e608330417f23725080da5120aa864eaf3b53f category: main optional: false - name: fltk @@ -1230,49 +712,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libxcb: '>=1.15,<1.16.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.43,<1.7.0a0' + libxcb: '>=1.16,<1.17.0a0' + libzlib: '>=1.3.1,<2.0a0' xorg-libice: '>=1.1.1,<2.0a0' xorg-libsm: '>=1.2.4,<2.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxrender: '>=0.9.11,<0.10.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-he73b29e_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fltk-1.3.9-ha50d76c_1.conda hash: - md5: 9b4d34b0accb2d0572f3a21cbf075a85 - sha256: 2a8aa3d7444e6c9eae75cb21dcf8f6f2283968ef035f2bad99f645e938b9b16b - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda - hash: - md5: 35ef8bc24bd34074ebae3c943d551728 - sha256: 7b9ba098a3661e023c3555e01554354ac4891af8f8998e85f0fcbfdac79fc0d4 - category: main - optional: false -- name: fmt - version: 10.2.1 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/fmt-10.2.1-h7728843_0.conda - hash: - md5: ab205d53bda43d03f5c5b993ccb406b3 - sha256: 2faeccfe2b9f7c028cf271f66757365fe43b15a1234084c16f159646a646ccbc + md5: a958392eb3607deaab9de701d24cf159 + sha256: 0904ed13fe6590e89b74ace95fbbcc3f8155f6e2287318383d7813ba4bb04207 category: main optional: false - name: font-ttf-dejavu-sans-mono @@ -1346,10 +803,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: font-ttf-ubuntu @@ -1357,10 +814,10 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda hash: - md5: 6185f640c43843e5ad6fd1c5372c3f80 - sha256: 056c85b482d58faab5fd4670b6c1f5df0986314cca3bc831d458b22e4ef2c792 + md5: cbbe59391138ea5ad3658c76912e147f + sha256: c940f6e969143e13a3a9660abb3c7e7e23b8319efb29dbdd5dee0b9939236e13 category: main optional: false - name: fontconfig @@ -1372,7 +829,7 @@ package: freetype: '>=2.12.1,<3.0a0' libgcc-ng: '>=12' libuuid: '>=2.32.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda hash: md5: 0f69b688f52ff6da70bccb7ff7001d1d @@ -1386,7 +843,7 @@ package: dependencies: expat: '>=2.5.0,<3.0a0' freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda hash: md5: 86cc5867dfbee4178118392bae4a3c89 @@ -1456,10 +913,10 @@ package: c-compiler: 1.7.0 gfortran: '' gfortran_linux-64: 12.* - url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda hash: - md5: 7ef7c0f111dad1c8006504a0f1ccd820 - sha256: 1e4da85586882c4f52f99d63615f0d8548d71be4c82e363485d6ca7bddf0074a + md5: cf4b0e7c4c78bb0662aed9b27c414a3c + sha256: 4293677cdf4c54d13659a3f9ac15cae778310811c62add29bb2e70630756317a category: main optional: false - name: fortran-compiler @@ -1472,10 +929,10 @@ package: gfortran_osx-64: 12.* ld64: '>=530' llvm-openmp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.7.0-h6c2ab21_1.conda hash: - md5: 2c11db8b46df0a547997116f0fd54b8e - sha256: 2470272c1dc170763c364042e5630ce840a39fce500e57adcfe29f193a585f79 + md5: 48319058089f492d5059e04494b81ed9 + sha256: 994007a99553e495d397de45484f3aaccfd1cd730019c146903785c0abebadeb category: main optional: false - name: freeglut @@ -1485,16 +942,16 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' xorg-libxi: '' - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda hash: - md5: 6e553df297f6e64668efb54302e0f139 - sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f + md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 + sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 category: main optional: false - name: freeimage @@ -1511,7 +968,7 @@ package: libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda @@ -1533,7 +990,7 @@ package: libraw: '>=0.21.1,<0.22.0a0' libtiff: '>=4.6.0,<4.7.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openexr: '>=3.2.2,<3.3.0a0' openjpeg: '>=2.5.2,<3.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freeimage-3.18.0-hdc0ade2_20.conda @@ -1549,7 +1006,7 @@ package: dependencies: libgcc-ng: '>=12' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda hash: md5: 9ae35c3d96db2c94ce0cef86efdfa2cb @@ -1562,7 +1019,7 @@ package: platform: osx-64 dependencies: libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h60636b9_2.conda hash: md5: 25152fce119320c980e5470e64834b50 @@ -1627,10 +1084,10 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda hash: - md5: 413e326f8a01d041ffbfbb51cea46a93 - sha256: 60669bb79c79d6f6929c67b334acd9dc885dccfb7371e41de7626090dc06e408 + md5: e42d156a1e3dd5651c89d7606b5a4a45 + sha256: 4f1f5bd8d0c5be91158d6e25fe1a183bb63d64b76da14ca6c619d5702fa112d8 category: main optional: false - name: gcc_impl_linux-64 @@ -1638,17 +1095,17 @@ package: manager: conda platform: linux-64 dependencies: - binutils_impl_linux-64: '>=2.39' + binutils_impl_linux-64: '>=2.40' libgcc-devel_linux-64: 12.3.0 libgcc-ng: '>=12.3.0' libgomp: '>=12.3.0' libsanitizer: 12.3.0 libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda hash: - md5: e89827619e73df59496c708b94f6f3d5 - sha256: a87826c55e6aa2ed5d17f267e6a583f7951658afaa4bf45cd5ba97f5583608b9 + md5: 93325fff774c4cc8dcc8c65039cb4646 + sha256: a6039b425279c4e080ac019d393ccb1b082698d48b83ec5660d96ef3c849b6a9 category: main optional: false - name: gcc_linux-64 @@ -1659,110 +1116,112 @@ package: binutils_linux-64: '2.40' gcc_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda hash: - md5: 7a53f84c45bdf4656ba27b9e9ed68b3d - sha256: 836692c3d4948f25a19f9071db40f7788edcb342d771786a206a6a122f92365d + md5: 954881ce9897d01c7c2031fb93ed366b + sha256: e8f7b8dbe97b6115d212fa9e2b9a53b960db09fd9bc5fb903e401f35507f161f category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: linux-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libgdal: 3.8.5 + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.22.4,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* - url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py39he9866c7_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py39h670d7db_7.conda hash: - md5: 67bde20ef88d2915e3f7419e62e10991 - sha256: 5d9227dd6e241da2d4e4331d9cbcfc4fc9378d91a0676d3a6a48ca4a1fb5f505 + md5: 144d9b8d59f2895ae8f6e10296a4e538 + sha256: 62f0743ad0d4c7cff03ca49c6818865cd438f22fa8e18b1e814c78e9ac8009da category: main optional: false - name: gdal - version: 3.8.5 + version: 3.9.1 manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' libcxx: '>=16' - libgdal: 3.8.5 - libxml2: '>=2.12.6,<3.0a0' - numpy: '>=1.22.4,<2.0a0' - openssl: '>=3.2.1,<4.0a0' + libgdal-core: 3.9.1.* + libkml: '>=1.3.0,<1.4.0a0' + libxml2: '>=2.12.7,<3.0a0' + numpy: '>=1.19,<3' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* - url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.8.5-py39ha0dfb3d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gdal-3.9.1-py39he29f2f6_7.conda hash: - md5: 8ff348ab95b86065149d019c3aceef91 - sha256: 36585c22da1e006e58ba8cfff24174ded055e3a67d58272612894840278b812d + md5: 5c4e7b09029e309c0c56ec03b773e9db + sha256: 0669309ee00aca9b4950008d24a0bcb472569381833ab707b41981b6fe4fbd2a category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda hash: - md5: 8c0f4f71f5a59ceb0c6fa9f51501066d - sha256: 2593b255cb9c4639d6ea261c47aaed1380216a366546f0468e95c36c2afd1c1a + md5: 621d814955342209dc8e7f87c41f1ba0 + sha256: 8ccddcf6263f972122d2ea7388b881194dcd9bc8e1092b4440b7a7572c65b226 category: main optional: false - name: geos - version: 3.12.1 + version: 3.12.2 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.1-h93d8f39_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/geos-3.12.2-hf036a51_0.conda hash: - md5: d13f05ed3985f57456b610bab66366db - sha256: 6feffb0d1999a22c5f94d2168b1af9c5fbdd25c9a963a6825ee32cf05e5c07f5 + md5: 69d6f60244f3a1fa8cfc34a9be856f19 + sha256: 43f959ac8f463b78a66cd6c2fd772bf68228e360559e74e774150aa2541b1f52 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda + url: https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda hash: - md5: aadc00cd5e330b5f7fb289446c23ab23 - sha256: 882cf1ef5bb0f176e9bc3da5a9783e11fce467d87ebbe76c0d0aa88bfa06de46 + md5: 8ff4fa3ab0b63dc5b214a68839499e41 + sha256: df00139c22b1b2ab1e1e48bb94c68febcc40a7ca812bd4f228a3e09ac9d2cdf2 category: main optional: false - name: geotiff - version: 1.7.1 + version: 1.7.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' libjpeg-turbo: '>=3.0.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.0,<9.5.0a0' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.1-h7c2ff5c_16.conda + url: https://conda.anaconda.org/conda-forge/osx-64/geotiff-1.7.3-h4bbec01_1.conda hash: - md5: c505170a140041f1ef9758df72b00b26 - sha256: e9277328123fa387561c53ee08c7758f8801eef1ee4caa982bca86480b002c9d + md5: 94b592c68bb826b1ffee62524b117aa2 + sha256: 7f5c0d021822e12cd64848caa77d43398cea90381f420d6f973877f3eccc2188 category: main optional: false - name: gettext @@ -1836,10 +1295,10 @@ package: gcc: 12.3.0.* gcc_impl_linux-64: 12.3.0.* gfortran_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda hash: - md5: 6b0b27394cf439d0540f949190556860 - sha256: f97482f7d85062ad61e7092eeca8a1a130fbf811cb8fb39be841072be3a81d95 + md5: da3ce6140908b41fb8fb205104b54ae6 + sha256: b5b181a4bed88036cf9b8a1476c0fe62fd6e7f8d7408507dd68861dee55775bf category: main optional: false - name: gfortran @@ -1862,14 +1321,14 @@ package: platform: linux-64 dependencies: gcc_impl_linux-64: '>=12.3.0' - libgcc-ng: '>=4.9' + libgcc-ng: '>=12.3.0' libgfortran5: '>=12.3.0' - libstdcxx-ng: '>=4.9' + libstdcxx-ng: '>=12.3.0' sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda hash: - md5: 4d72ee7c82f8a9b2ecef4fcefa9acd19 - sha256: b965de2c6987ed5ecbbcdf2ea3c3ae8020d1eea81ab915c4cf2bddf37c1ff195 + md5: 96471c6bcf708822422bd9f78dbecc3b + sha256: a99c9bc4cf9883647b0abc25511ece611fd9cb96a1560b35fff5385a06059509 category: main optional: false - name: gfortran_impl_osx-64 @@ -1883,7 +1342,7 @@ package: libgfortran-devel_osx-64: 12.3.0.* libgfortran5: '>=12.3.0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpc: '>=1.3.1,<2.0a0' mpfr: '>=4.2.0,<5.0a0' zlib: '' @@ -1902,10 +1361,10 @@ package: gcc_linux-64: 12.3.0 gfortran_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda hash: - md5: 3a9e5b8a6f651ff14e74d896d8f04ab6 - sha256: f2285e33370851e689e70fa8b5a34a44b0271aff9831a027f302e062cb498cdd + md5: d77e515e624f3edb33ac89997322b5a8 + sha256: 62c99e466d1e034d22f2e57c0e95101a92f467824e18cfdedbdc18866d5ae063 category: main optional: false - name: gfortran_osx-64 @@ -1928,26 +1387,26 @@ package: category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda hash: - md5: 96f3b11872ef6fad973eac856cd2624f - sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b + md5: 3bf7b9fd5a7136126e0234db4b87c8b6 + sha256: aac402a8298f0c0cc528664249170372ef6b37ac39fdc92b40601a6aed1e32ff category: main optional: false - name: giflib - version: 5.2.1 + version: 5.2.2 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.1-hb7f2c08_3.conda + url: https://conda.anaconda.org/conda-forge/osx-64/giflib-5.2.2-h10d778d_0.conda hash: - md5: aca150b0186836f893ebac79019e5498 - sha256: 47515e0874bcf67e438e1d5d093b074c1781f055067195f0d00a7790a56d446d + md5: 03e8c9b4d3da5f3d6eabdd020c2d63ac + sha256: 2c825df829097536314a195ae5cacaa8695209da6b4400135a65d8e23c008ff8 category: main optional: false - name: gmp @@ -1957,10 +1416,10 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda hash: - md5: e358c7c5f6824c272b5034b3816438a7 - sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 + md5: c94a5994ef49749880a8139cf9afcbe1 + sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c category: main optional: false - name: gmp @@ -1968,11 +1427,12 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-hf036a51_2.conda hash: - md5: 92f8d748d95d97f92fc26cfac9bb5b6e - sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 + md5: 427101d13f19c4974552a4e5b072eef1 + sha256: 75aa5e7a875afdcf4903b7dc98577672a3dc17b528ac217b915f9528f93c85fc category: main optional: false - name: gmsh @@ -1990,7 +1450,7 @@ package: liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' xorg-libx11: '>=1.8.7,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' @@ -2017,7 +1477,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' liblapack: '>=3.9.0,<4.0a0' libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' occt: '>=7.7.2,<7.8.0a0' zlib: '' url: https://conda.anaconda.org/conda-forge/osx-64/gmsh-4.12.2-h48a2193_0.conda @@ -2093,10 +1553,10 @@ package: dependencies: gcc: 12.3.0.* gxx_impl_linux-64: 12.3.0.* - url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda hash: - md5: 8c50a4d15a8d4812af563a684d598910 - sha256: 12c8d969b1b6acf1bf4f7c7399993dd3d422a713ad6d7ab9343f6b990f8373a0 + md5: c3a3cf9cf544bd621a18add719056529 + sha256: fb1d5d87be5d23b2eaab45afcd62560ffda12ba870a3c1a2da6293dd8d5d4587 category: main optional: false - name: gxx_impl_linux-64 @@ -2107,10 +1567,10 @@ package: gcc_impl_linux-64: 12.3.0 libstdcxx-devel_linux-64: 12.3.0 sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda hash: - md5: cddba8fd94e52012abea1caad722b9c2 - sha256: 69371a1e8ad718b033bc1c58743a395e06ad19d08a2ff97e264ed82fd3ccbd9c + md5: bb4fe41bc0584a3f6d3026634170c330 + sha256: 34225c17afdd49219220d9fad1bc5b0b1bdc01c5e2faa8eb75f4fe471758bdc1 category: main optional: false - name: gxx_linux-64 @@ -2122,14 +1582,14 @@ package: gcc_linux-64: 12.3.0 gxx_impl_linux-64: 12.3.0.* sysroot_linux-64: '' - url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda + url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda hash: - md5: 9ec22c7c544f4a4f6d660f0a3b0fd15c - sha256: 5a842fc69c03ac513a2c021f3f21afd9d9ca50b10b95c0dcd236aa77d6d42373 + md5: 26155c2e3afafee809654f86f434c234 + sha256: 8e1068c185f0558933a7d7aa1fb1d310ac3e1acf219f4926925733a8c333971a category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: linux-64 dependencies: @@ -2138,30 +1598,30 @@ package: graphite2: '' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' - libglib: '>=2.78.1,<3.0a0' + libglib: '>=2.80.2,<3.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda hash: - md5: 5a6f6c00ef982a9bc83558d9ac8f64a0 - sha256: 4b55aea03b18a4084b750eee531ad978d4a3690f63019132c26c6ad26bbe3aed + md5: c7b47c64af53e8ecee01d101eeab2342 + sha256: 5854e5ac2d3399ef30b59f15045c19fa5f0bab94d116bd75cac4d05181543dc3 category: main optional: false - name: harfbuzz - version: 8.3.0 + version: 9.0.0 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' cairo: '>=1.18.0,<2.0a0' freetype: '>=2.12.1,<3.0a0' graphite2: '' icu: '>=73.2,<74.0a0' - libcxx: '>=16.0.6' - libglib: '>=2.78.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-8.3.0-hf45c392_0.conda + libcxx: '>=16' + libglib: '>=2.80.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-9.0.0-h053f038_0.conda hash: - md5: 41d890485f909e4ecdc608741718c75e - sha256: c6ea14e4f4869bc78b27276c09832af845dfa415585362ed6064e37a1b5fe9c5 + md5: 0a4256cad662dc36666221a2a8daa34e + sha256: eb94445e4ea3e794582f47365d3b429adfddc24209a39bb8102f17198a0661e1 category: main optional: false - name: hdf4 @@ -2172,7 +1632,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -2186,7 +1646,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -2198,18 +1658,18 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda hash: - md5: d471a5c3abc984b662d9bae3bb7fd8a5 - sha256: b814f8f9598cc6e50127533ec256725183ba69db5fd8cf5443223627f19e3e59 + md5: 7e1729554e209627636a0f6fabcdd115 + sha256: 2278fa07da6f96e807d402cd55480624d67d2dee202191aaaf278ce5ab23605a category: main optional: false - name: hdf5 @@ -2217,18 +1677,18 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h691f4bf_100.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-nompi_h687a608_105.conda hash: - md5: 8e2ac4ae815a8c9743fe37d70f48f075 - sha256: 158dd2ab901659b47e8f7ee0ec1d9e45a1fedc4871391a44a1c8b9e8ba4c9c6b + md5: 98544299f6bb2ef4d7362506a3dde886 + sha256: 98f8350730d09e8ad7b62ca6d6be38ee2324b11bbcd1a5fe2cac619b12cd68d7 category: main optional: false - name: icu @@ -2262,7 +1722,7 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda hash: md5: 07268e57799c7ad50809cadc297a515e @@ -2275,7 +1735,7 @@ package: platform: osx-64 dependencies: libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/imath-3.1.11-h2d185b6_0.conda hash: md5: 39c1f288d263e971db74f8803e28dabd @@ -2295,7 +1755,7 @@ package: category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: linux-64 dependencies: @@ -2303,22 +1763,23 @@ package: libgcc-ng: '>=12' libglu: '>=9.0.0,<10.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda hash: - md5: 05c1609de571f7a9a40e6d7d4116c21a - sha256: 5cc5e2ae5127d655747a377e267ff40856c262a00f52cc6840238cfdb52368c4 + md5: 9518ab7016cf4564778aef08b6bd8792 + sha256: 0a5ca92ea0261f435c27a3c3c5c5bc5e8b4b1af1343b21ef0cbc7c33b62f5239 category: main optional: false - name: jasper - version: 4.2.3 + version: 4.2.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' libjpeg-turbo: '>=3.0.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.3-h6ff19ee_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.2.4-hb10263b_0.conda hash: - md5: fe830a9cdfb229efde037ce4c8b5d677 - sha256: 1ec4bc54e277af13b6016d69c8f3fe769a56d0642f3e60783aaf03536c0220af + md5: b7a6171ecee244e2b2a19177ec3c34a9 + sha256: da2c2fa393b89596cf0f81c8e73db2e9b589ae961058317f6fcb4867e05055dd category: main optional: false - name: jigsaw @@ -2351,22 +1812,24 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda hash: - md5: 9961b1f100c3b6852bd97c9233d06979 - sha256: 5646496ca07dfa1486d27ed07282967007811dfc63d6394652e87f94166ecae3 + md5: f8f0f0c4338bad5c34a4e9e11460481d + sha256: 0caf06ccfbd6f9a7b3a1e09fa83e318c9e84f2d1c1003a9e486f2600f4096720 category: main optional: false - name: json-c version: '0.17' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h8e11ae5_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/json-c-0.17-h6253ea5_1.conda hash: - md5: 266d2e4ebbf37091c8322937392bb540 - sha256: 2a493095fe1292108ff1799a1b47ababe82d844bfa3abcf2252676c1017a1e04 + md5: fb72a2ef514c2df4ba035187945a6dcf + sha256: 66ddd1a4d643c7c800a1bb8e61f5f4198ec102be37db9a6d2e037004442eff8d category: main optional: false - name: jxrlib @@ -2388,46 +1851,20 @@ package: dependencies: {} url: https://conda.anaconda.org/conda-forge/osx-64/jxrlib-1.1-h10d778d_3.conda hash: - md5: cfaf81d843a80812fe16a68bdae60562 - sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: linux-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda - hash: - md5: f7e7077802927590efc8bf7328208f12 - sha256: ee0934ff426d3cab015055808bed33eb9d20f635ec14bc421c596f4b70927102 - category: main - optional: false -- name: kealib - version: 1.5.3 - manager: conda - platform: osx-64 - dependencies: - hdf5: '>=1.14.3,<1.14.4.0a0' - libcxx: '>=15' - url: https://conda.anaconda.org/conda-forge/osx-64/kealib-1.5.3-h5f07ac3_0.conda - hash: - md5: 7a0924f6214e4c17b6062b21d1240253 - sha256: 54a847faf2d2aea83c149d98634646edb8e7f346faefc6af1aa52106200b43aa + md5: cfaf81d843a80812fe16a68bdae60562 + sha256: a548a4be14a4c76d6d992a5c1feffcbb08062f5c57abc6e4278d40c2c9a7185b category: main optional: false - name: kernel-headers_linux-64 - version: 2.6.32 + version: 3.10.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda + dependencies: + _sysroot_linux-64_curr_repodata_hack: 3.* + url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda hash: - md5: d731b543793afc0433c4fd593e693fce - sha256: fb39d64b48f3d9d1acc3df208911a41f25b6a00bd54935d5973b4739a9edd5b6 + md5: ff7f38675b226cfb855aebfc32a13e31 + sha256: a55044e0f61058a5f6bab5e1dd7f15a1fa7a08ec41501dbfca5ab0fc50b9c0c1 category: main optional: false - name: keyutils @@ -2443,7 +1880,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -2451,25 +1888,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: lame @@ -2555,10 +1993,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 category: main optional: false - name: lerc @@ -2587,28 +2025,30 @@ package: category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda hash: - md5: 75648bc5dd3b8eab22406876c24d81ec - sha256: 9951421311285dd4335ad3aceffb223a4d3bc90fb804245508cd27aceb184a29 + md5: c48fc56ec03229f294176923c3265c05 + sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 category: main optional: false - name: libabseil - version: '20240116.1' + version: '20240116.2' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.1-cxx17_hc1bcbd7_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libabseil-20240116.2-cxx17_hf036a51_1.conda hash: - md5: 819934a15bc13a0d30778bf18446ada6 - sha256: 30c0f569949a2fa0c5fd9aae3416e3f6623b9dd6fccdaa8d3437f143b67cca2a + md5: d6c78ca84abed3fea5f308ac83b8f54e + sha256: 396d18f39d5207ecae06fddcbc6e5f20865718939bc4e0ea9729e13952833aac category: main optional: false - name: libaec @@ -2637,43 +2077,44 @@ package: category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda hash: - md5: 3bf887827d1968275978361a6e405e4f - sha256: 340ed0bb02fe26a2b2e29cedf6559e2999b820f434e745c108e788d629ae4b17 + md5: 32ddb97f897740641d8d46a829ce1704 + sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936 category: main optional: false - name: libarchive - version: 3.7.2 + version: 3.7.4 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libiconv: '>=1.17,<2.0a0' - libxml2: '>=2.12.2,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' lz4-c: '>=1.9.3,<1.10.0a0' lzo: '>=2.10,<3.0a0' - openssl: '>=3.2.0,<4.0a0' + openssl: '>=3.3.0,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.2-hd35d340_1.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libarchive-3.7.4-h20e244c_0.conda hash: - md5: 8c7b79b20a67287a87b39df8a8c8dcc4 - sha256: f458515a49c56e117e05fe607493b7683a7bf06d2a625b59e378dbbf7f308895 + md5: 82a85fa38e83366009b7f4b2cef4deb8 + sha256: 9e46db25e976630e6738b351d76d9b79047ae232638b82f9f45eba774caaef8a category: main optional: false - name: libasprintf @@ -2734,14 +2175,14 @@ package: fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda hash: - md5: c306fd9cc90c0585171167d09135a827 - sha256: 1bc3e44239a11613627488b7a9b6c021ec6b52c5925abd666832db0cb2a59f05 + md5: 25db2ea6b8fefce451369e2cc826f6f4 + sha256: 59ac3fc42b4cee09b04379aa3e91d6d45fdfc8a52afbfa1f9f32e99abbca3137 category: main optional: false - name: libass @@ -2749,17 +2190,18 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' fontconfig: '>=2.14.2,<3.0a0' fonts-conda-ecosystem: '' freetype: '>=2.12.1,<3.0a0' fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=8.1.1,<9.0a0' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h80904bb_1.conda + harfbuzz: '>=9.0.0,<10.0a0' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h5386a9e_2.conda hash: - md5: 9ccad0aebe916aa3715fda9eefe92584 - sha256: f97c70aa61ecc1b43907cf0322215a58f19e0723ee67b4ebd02146da24f03976 + md5: eb6c82cd6a0217884ee0ac8c974543ba + sha256: 92f425a8f1373fab13877d887a2c03220878983575313d1f0670fcea117bed8b category: main optional: false - name: libblas @@ -2786,28 +2228,6 @@ package: sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59 category: main optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda - hash: - md5: 85d30a3fcc0f1cfc252776208af546a1 - sha256: 5a7843db33422d043256af27f288836f51530b058653bdb074704eb72282f601 - category: main - optional: false -- name: libboost-headers - version: 1.84.0 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libboost-headers-1.84.0-h694c41f_2.conda - hash: - md5: 37678c6938655e8862e121b48101365a - sha256: e51f3b877ab4a7a68bf1e1f95e9b007d716e85547078bfd5f6f7f114545dc26e - category: main - optional: false - name: libcblas version: 3.9.0 manager: conda @@ -2837,83 +2257,60 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16.0.6' libllvm16: '>=16.0.6,<16.1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h7151d67_6.conda - hash: - md5: 7eaad118ab797d1427f8745c861d1925 - sha256: 8d77bf8bb12e4dff0bdc0d6dbc9ec674a46470c4e51a1fc8ffec16ed7da3365f - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.4.0' - libstdcxx-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - hash: - md5: c965a5aa0d5c1c37ffc62dff36e28400 - sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5 - category: main - optional: false -- name: libcrc32c - version: 1.1.2 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=11.1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcrc32c-1.1.2-he49afe7_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp16-16.0.6-default_h0c94c6a_9.conda hash: - md5: 23d6d5a69918a438355d7cbc4c3d54c9 - sha256: 3043869ac1ee84554f177695e92f2f3c2c507b260edad38a0bf3981fce1632ff + md5: 1d2344f627433a89f189b8aeb503eaa6 + sha256: fec5b4a971bfa09348d1cf0f7adfa00015aea31ea12027dc38b36b2eeda16dde category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libdeflate @@ -2940,16 +2337,16 @@ package: category: main optional: false - name: libdrm - version: 2.4.120 + version: 2.4.122 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libpciaccess: '>=0.18,<0.19.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda hash: - md5: 7c3071bdf1d28b331a06bda6e85ab607 - sha256: 8622f52e517418ae7234081fac14a3caa8aec5d1ee5f881ca1f3b194d81c3150 + md5: bbfc4dbe5e97b385ef088f354d65e563 + sha256: 74c59a29b76bafbb022389c7cfa9b33b8becd7879b2c6b25a1a99735bf4e9c81 category: main optional: false - name: libedit @@ -3050,129 +2447,107 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: e12ce6b051085b8f27e239f5e5f5bce5 - sha256: ed2dfc6d959dc27e7668439e1ad31b127b43e99f9a7e77a2d34b958fa797316b + md5: 7fc690ec9db2902e5ee90cebfdab31e7 + sha256: 60c21686f4a715106fba21b1c22401710fd9f288a6402d6fdc65aa14e66e0ec7 category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' libuuid: '>=2.38.1,<3.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda hash: - md5: bbc8dad387da810666640cb8609964df - sha256: 2434c6d51515805f8177210e5f183c5881332378b575beeb43afda5a0b3ae3bd + md5: 85fcff96b59d3e3a812601d713931d4f + sha256: 62296ded701499cf64c72c7bb1ab690754a50464cc3cd8124d57f9012c6b2d34 category: main optional: false -- name: libgdal - version: 3.8.5 +- name: libgdal-core + version: 3.9.1 manager: conda platform: osx-64 dependencies: - blosc: '>=1.21.5,<2.0a0' - cfitsio: '>=4.4.0,<4.4.1.0a0' - freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' - geotiff: '>=1.7.1,<1.8.0a0' - giflib: '>=5.2.1,<5.3.0a0' - hdf4: '>=4.2.15,<4.2.16.0a0' - hdf5: '>=1.14.3,<1.14.4.0a0' + __osx: '>=10.13' + blosc: '>=1.21.6,<2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' + geotiff: '>=1.7.3,<1.8.0a0' + giflib: '>=5.2.2,<5.3.0a0' json-c: '>=0.17,<0.18.0a0' - kealib: '>=1.5.3,<1.6.0a0' lerc: '>=4.0.0,<5.0a0' - libaec: '>=1.1.3,<2.0a0' - libarchive: '>=3.7.2,<3.8.0a0' - libcurl: '>=8.7.1,<9.0a0' + libarchive: '>=3.7.4,<3.8.0a0' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' libdeflate: '>=1.20,<1.21.0a0' libexpat: '>=2.6.2,<3.0a0' libiconv: '>=1.17,<2.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libkml: '>=1.3.0,<1.4.0a0' - libnetcdf: '>=4.9.2,<4.9.3.0a0' libpng: '>=1.6.43,<1.7.0a0' - libpq: '>=16.2,<17.0a0' libspatialite: '>=5.1.0,<5.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libwebp-base: '>=1.3.2,<2.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.4.0,<2.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - openjpeg: '>=2.5.2,<3.0a0' - openssl: '>=3.2.1,<4.0a0' - pcre2: '>=10.43,<10.44.0a0' - poppler: '>=24.3.0,<24.4.0a0' - postgresql: '' - proj: '>=9.4.0,<9.4.1.0a0' - tiledb: '>=2.21.1,<2.22.0a0' + openssl: '>=3.3.1,<4.0a0' + pcre2: '>=10.44,<10.45.0a0' + proj: '>=9.4.1,<9.5.0a0' xerces-c: '>=3.2.5,<3.3.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-3.8.5-h4f2ca4b_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libgdal-core-3.9.1-hb16c948_7.conda hash: - md5: 2a9e484d2523dd69dd0eb5045e0d69a0 - sha256: b7626d21c15b247df862632c4329e4946baedcb56e7d2d8bc1e7f65918501a2d + md5: 1b131ccbc9918802ada8468de898f235 + sha256: f9127a7bf525925fe4378f5aeb4fd95a53f2ba6fd7ae262574c71b09141fe7d1 category: main optional: false - name: libgettextpo @@ -3251,27 +2626,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -3287,35 +2662,36 @@ package: category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: linux-64 dependencies: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda hash: - md5: 0269d2b7fa89f4a37cdee5ad6161f6cc - sha256: 99983c2514dd99da1bab50e9a25ed16cfc1d46aca0385c3be177c8e299731b51 + md5: 6ea440297aacee4893f02ad759e6ffbc + sha256: 5f5854a7cee117d115009d8f22a70d5f9e28f09cb6e453e8f1dd712e354ecec9 category: main optional: false - name: libglib - version: 2.80.0 + version: 2.80.3 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libffi: '>=3.4,<4.0a0' libiconv: '>=1.17,<2.0a0' libintl: '>=0.22.5,<1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.43,<10.44.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.0-h81c1438_3.conda + libzlib: '>=1.3.1,<2.0a0' + pcre2: '>=10.44,<10.45.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.80.3-h736d271_1.conda hash: - md5: de78445096d2846df7f4f5fa5c252560 - sha256: 0da6453549cc49d7258f3db76adc7ffb8e5fec524fb3c3af14a2ba1842bee0f7 + md5: 0919d467624606fbc05c38c458f3f42a + sha256: bfd5a28140d31f9310efcdfd1136f36d7ca718a297690a1a8869b3a1966675ae category: main optional: false - name: libglu @@ -3325,167 +2701,55 @@ package: dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.6,<2.0a0' + libxcb: '>=1.16,<1.17.0a0' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-xextproto: '>=7.3.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda hash: - md5: 50c389a09b6b7babaef531eb7cb5e0ca - sha256: 8368435c41105dc3e1c02896a02ecaa21b77d0b0d67fc8b06a16ba885c86f917 + md5: df069bea331c8486ac21814969301c1f + sha256: c4a14878c2be8c18b7e89a19917f0f6c964dd962c91a079fe5e0c6e8b8b1bbd4 category: main optional: false - name: libgomp - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda - hash: - md5: d211c42b9ce49aee3734fdc828731689 - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libstdcxx-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda - hash: - md5: 4b4e36a91e7dabf7345b82d85767a7c3 - sha256: b9980209438b22113f4352df2b260bf43b2eb63a7b6325192ec5ae3a562872ed - category: main - optional: false -- name: libgoogle-cloud - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libgrpc: '>=1.62.0,<1.63.0a0' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-2.22.0-h651e89d_1.conda - hash: - md5: 3f2faf53ecb3b51b92b3eee155b50233 - sha256: 39f2f50202e50e41ee8581c99a0b3023c2c21cab80ba597f8c5be7c8c8c6a059 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: linux-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libgcc-ng: '>=12' - libgoogle-cloud: 2.22.0 - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda - hash: - md5: 7811f043944e010e54640918ea82cecd - sha256: 0e00e1ca2a981db1c96071edf266bc29fd6f13ac484225de1736fc4dac5c64a8 - category: main - optional: false -- name: libgoogle-cloud-storage - version: 2.22.0 - manager: conda - platform: osx-64 - dependencies: - libabseil: '' - libcrc32c: '>=1.1.2,<1.2.0a0' - libcurl: '' - libcxx: '>=16' - libgoogle-cloud: 2.22.0 - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgoogle-cloud-storage-2.22.0-ha67e85c_1.conda - hash: - md5: 0c25180c34b1a58d309b28386698fb6e - sha256: e4f351e55fe7c0656cb608eba8690063e3b407d25a855c9d1fd832486d4a1244 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: linux-64 - dependencies: - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda - hash: - md5: 564517a8cbd095cff75eb996d33d2b7e - sha256: 1d4ece94dfef73d904dcba0fd9d56098796f5fdc62ea5f9edff60c71be7a3d63 - category: main - optional: false -- name: libgrpc - version: 1.62.1 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - c-ares: '>=1.27.0,<2.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - libprotobuf: '>=4.25.3,<4.25.4.0a0' - libre2-11: '>=2023.9.1,<2024.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - re2: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libgrpc-1.62.1-h384b2fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda hash: - md5: 2ac05daca7276a4d6ca4465707670380 - sha256: 8c9898d259e2343df52259b599ec342c386679e1c420df603cba6f06078fcdd6 + md5: ae061a5ed5f05818acdf9adab72c146d + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda hash: - md5: f36ddc11ca46958197a45effdd286e45 - sha256: 6950fee24766d03406e0f6f965262a5d98829c71eed8d1004f313892423b559b + md5: f54aeebefb5c5ff84eca4fb05ca8aa3a + sha256: 8473a300e10b79557ce0ac81602506b47146aff3df4cc3568147a7dd07f480a2 category: main optional: false - name: libhwloc - version: 2.9.3 + version: 2.11.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' - libxml2: '>=2.11.5,<3.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.9.3-default_h24e0189_1009.conda + __osx: '>=10.13' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.1-default_h456cccd_1000.conda hash: - md5: 22fcbfd2a4cdf941b074a00b773b43dd - sha256: a9fc54b481d0477cdf5700d702d44fc04fe00ffe63fc253aa0c6d2944abe8f3f + md5: a14989f6bbea46e6ec4521a403f63ff2 + sha256: 0b5294c8e8fc5f9faab7e54786c5f3c4395ee64b5577a1f2ae687a960e089624 category: main optional: false - name: libiconv @@ -3591,16 +2855,16 @@ package: manager: conda platform: linux-64 dependencies: - libboost-headers: '' - libexpat: '>=2.5.0,<3.0a0' + __glibc: '>=2.17,<3.0.a0' + libexpat: '>=2.6.2,<3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda hash: - md5: 3eb5f16bcc8a02892199aa63555c731f - sha256: f67fc0be886c7eac14dbce858bfcffbc90a55b598e897e513f0979dd2caad750 + md5: 6d76c5822cb38bc1ab5a06565c6cf626 + sha256: 5bd19933cb3790ec8632c11fa67c25d82654bea6c2bc4f51f8bcd8b122ae96c8 category: main optional: false - name: libkml @@ -3608,15 +2872,15 @@ package: manager: conda platform: osx-64 dependencies: - libboost-headers: '' - libcxx: '>=15.0.7' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - uriparser: '>=0.9.7,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hab3ca0e_1018.conda + __osx: '>=10.13' + libcxx: '>=16' + libexpat: '>=2.6.2,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + uriparser: '>=0.9.8,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libkml-1.3.0-hfcbc525_1020.conda hash: - md5: 535b1bb4896b113c14dfa64141370a12 - sha256: f546750a59b85a4b721f69e34e797ceddb93c438ee384db285e3344490d6a9b5 + md5: 055d429f351b79c0a7b7d7e39ff45b28 + sha256: 20dec455f668ab2527d6a20204599253ac0b2d4d0325e4a1ce2316850128cc3e category: main optional: false - name: liblapack @@ -3650,7 +2914,7 @@ package: dependencies: libcxx: '>=16' libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libllvm16-16.0.6-hbedff68_3.conda hash: @@ -3667,20 +2931,20 @@ package: bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda hash: - md5: b2414908e43c442ddc68e6148774a304 - sha256: 0b4d984c7be21531e9254ce742e04101f7f7e77c0bbb7074855c0806c28323b0 + md5: a908e463c710bd6b10a9eaa89fdf003c + sha256: 055572a4c8a1c3f9ac60071ee678f5ea49cfd7ac60a636d817988a6f9d6de6ae category: main optional: false - name: libnetcdf @@ -3688,24 +2952,24 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7760872_113.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-nompi_h7334405_114.conda hash: - md5: bce76ace6497221c2a2a02840aaceac5 - sha256: 3d6a950d82a8dfb9fa51c263e543cfa9c113703add20646ec85401e7b557da49 + md5: 32ffbe5b0b0134e49f6347f4de8c5dcc + sha256: a4af96274a6c72d97e84dfc728ecc765af300de805d962a835c0841bb6a8f331 category: main optional: false - name: libnghttp2 @@ -3717,7 +2981,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -3734,7 +2998,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -3762,10 +3026,10 @@ package: libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda hash: - md5: a356024784da6dfd4683dc5ecf45b155 - sha256: 2ae7559aed0705deb3f716c7b247c74fd1b5e35b64e39834ce8b95f7564d4a3e + md5: ae05ece66d3924ac3d48b4aa3fa96cec + sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39 category: main optional: false - name: libopenblas @@ -3773,354 +3037,390 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libgfortran: 5.* libgfortran5: '>=12.3.0' llvm-openmp: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_h8869122_1.conda hash: - md5: 00237c9c7f2cb6725fe2960680a6e225 - sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 + md5: c0798ad76ddd730dade6ff4dff66e0b5 + sha256: 83b0b9d3d09889b3648a81d2c18a2d78c405b03b115107941f0496a8b358ce6d category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda hash: - md5: 126a2a61d276c4268f71adeef25bfc33 - sha256: 901d6a974cf86c96f5ec29e7ef0e3a3bcf128ad9f48ee65d244d796512c2c8f5 + md5: 9511859bf5221238a2d3fb5322af01d5 + sha256: 32ce474983e78acb8636e580764e3d28899a7b0a2a61a538677e9bca09e95415 category: main optional: false - name: libopenvino - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-2024.2.0-h3d2f4b3_1.conda hash: - md5: 9d8a53bb2dbc55cee97d7c5093164e5b - sha256: 18359d9a5d343a89fd9fb8d0dc7890b290c52fbfc51fc2fdc7e639246ddccc60 + md5: 0ee799269d5b7c9c8b61f9e6de123eea + sha256: 87aade1bf653042543ae5f32f854f131e8b44ff236edf9d74797a4e1d2e3728d category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda hash: - md5: de9c380fea8634540db5fc8422888df1 - sha256: 7997f2e1e24d79dbecbc7a275a0aef495cdb25018b19ab982b23147cfe80f659 + md5: 70d82a64e6d07f4d6e07cae6b0bd4bd1 + sha256: 083e72464866b857ff272242f887b46a5527e20e41d292db55a4fa10aa0808c6 category: main optional: false - name: libopenvino-auto-batch-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: bc0a89ad1ab1fdc0ac29434109086c86 - sha256: 735797a48790d2317ca18d081ae3fa96cede63bd7c1d749d95aabebd946e4b1b + md5: 23f03915c4359149231458da782f2ffb + sha256: dd22f7789ccfbd1a54fb31b7d737f2c623d5bc52dcebbabeba6bec71e4a77ec5 category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda hash: - md5: de1cbf145ecdc1d29af18e14eb267bca - sha256: 1ec1dc0cf9aa4e1879145f0d8645d6132d19e7f8ea0a678b500ee96a110527e7 + md5: f1e2a8ded23cef03804c4edb2edfb986 + sha256: db945b8a8d716d0c6f80cc5f07fd79692c8a941a9ee653aab6f7d2496f6f163b category: main optional: false - name: libopenvino-auto-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.0.0-h9adb129_4.conda + libopenvino: 2024.2.0 + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-auto-plugin-2024.2.0-h7b87a6e_1.conda hash: - md5: 99efdc8defbec695d3b5c02359dc2c92 - sha256: d417139fa5501b8765085443e811e91c90c4a45350378f34dc0fa2121edc4f3b + md5: 922ba14bf1052b849a0abc90b3042437 + sha256: 6273fa16c6023b5cc1df146195f23279be054267eab11045a805b7422ca52c93 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda hash: - md5: 016b763e4776b4c2c536420a7e6a2349 - sha256: 6b530d036bf3a608c6cae2de4ab8f7e9471b53603c63b10d0a04c211e3325b1f + md5: 95d2d3baaa1e456ef65c713a5d99b815 + sha256: 6924426d9f88a54bfcc8aa2f5d9d7aeb69c839f308cd3b37aedc667157fc90f1 category: main optional: false - name: libopenvino-hetero-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-hetero-plugin-2024.2.0-h280e65d_1.conda hash: - md5: cece1c44db441905aa3caaa79b1c8a86 - sha256: 37bc25f92b6803d7d4a1e5424c780a75ad1eda4974ca6dbcc4cbb573e240a377 + md5: 8f7279cbec42f59497e174f62405e2f7 + sha256: 94f025bdbc1147e8470b80b9cc69f0ee2f5f9dab5dee7c5d45b769c76832a88a category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda hash: - md5: d866cc8dc37f101505e65a4372794631 - sha256: 2daa2f6fc584674adee84b036a9a267a6bcae731c912326efda155f2328586d8 + md5: 9e49f87d8f99dc9724f52b3fac904106 + sha256: f2a4f0705e56ad8e25e4b20929e74ab0c7d5867cd52f315510dff37ea6508c38 category: main optional: false - name: libopenvino-intel-cpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.0.0-h113ac47_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.2.0-h3d2f4b3_1.conda hash: - md5: 0714af035978be750d5e1f9adc8ee4cb - sha256: eb5985f740ee97b8a30efd7ff6a48c36e3eb33678bf7a3f6fb53d5fc4bcc9cc7 + md5: cb7b9d64ca63eb70c579f7af4169f2d3 + sha256: 8fe13c8c576bfac296971539418e096ce3aa58c3c27790121c62a64c35fe0781 category: main optional: false - name: libopenvino-intel-gpu-plugin - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' ocl-icd: '>=2.3.2,<3.0a0' pugixml: '>=1.14,<1.15.0a0' - tbb: '>=2021.11.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda + tbb: '>=2021.12.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda + hash: + md5: a9712fae44d01d906e228c49235e3b89 + sha256: c15a90baed7c3ad46c51d2ec70087cc3fb947dbeaea7e4bc93f785e9d12af092 + category: main + optional: false +- name: libopenvino-intel-npu-plugin + version: 2024.2.0 + manager: conda + platform: linux-64 + dependencies: + __glibc: '>=2.17,<3.0.a0' + libgcc-ng: '>=12' + libopenvino: 2024.2.0 + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda hash: - md5: 6ebefdc74cb700ec82cd6702125cc422 - sha256: 15f0ad9ea10829d8964253b08667af015dfa4befa0afd2e6f3a44110f6efcb96 + md5: 5c2d064181e686cf5cfac6f1a1ee4e91 + sha256: c2f4f1685b3662b0f18f6647fe7a46a0c061f78e017e3d9815e326171f342ba6 category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda hash: - md5: 6397395a4677d59bbd32c4f05bb8fa63 - sha256: 09c91b8701764154b41a2c82d0412939e5625c712edfe965496930cdad6c822e + md5: 89addf0fc0f489fa0c076f1c8c0d62bf + sha256: eb183fa65b43cc944ad3d1528cdb5c533d3b4ccdd8ed44612e2c89f962a020ce category: main optional: false - name: libopenvino-ir-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 pugixml: '>=1.14,<1.15.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.0.0-hfe2fe54_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-ir-frontend-2024.2.0-h280e65d_1.conda hash: - md5: c3f40e2622af41f0e597733266a0ec09 - sha256: 64b45b4df151b80988d13f72cec3145ab3773f255e089d21cdb6a7ab7b2dc852 + md5: 2fb0fc2d2f2583682d70847ac23b56b0 + sha256: 8354b19cdb6551ae38e12b82cc352b6e5d288235cd114d4f80d3b63d3d16eb5c category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 24c9cf1dd8f6d6189102a136a731758c - sha256: c29f5bead57bfb14cca7bd89e20f13eb18ec9a4624dcff1d56834454deb3be9c + md5: 9b0a13989b35302e47da13842683804d + sha256: 3f7ea37f5d8f052a1a162d864c01b4ba477c05734351847e9136a5ebe84ac827 category: main optional: false - name: libopenvino-onnx-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-onnx-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: 543a343c411d307d3076e021f4eec355 - sha256: 16da5c3b4526a340145e074b32253221059f60389bc6c048cec8dc2767ad357e + md5: 0f0ec68c3d7feac549eae4cd1a7e6542 + sha256: 54b187853047ba743fa570d794858cf4a451bee9db86a2129831b7c81ce4ffae category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda hash: - md5: 259bd0c788f447fe78aab69895365528 - sha256: cc16cf9103d57d14a4f65b0148ae6197ced75063bebb07533744a1f0675ef294 + md5: 7b3680d3fd00e1f91d5faf9c97c7ae78 + sha256: da2fcf5e9962d5c5e1d47d52f84635648952354c30205c5908332af5999625bc category: main optional: false - name: libopenvino-paddle-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.0.0-h1a3ed6a_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-paddle-frontend-2024.2.0-he1e86a1_1.conda hash: - md5: f52039a0882dad166cbc55e1d41c05a4 - sha256: 37de5299f8f9c790f073bf7b5dd2d1c21ee148302fc8087a31291e72f49c0c52 + md5: b420755d98724dc040723df5c0447e5b + sha256: 75efc13d43147bc7e9e02a27e7ab3d050d37d60f7ccc34f902f35bfe91c45200 category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda hash: - md5: ec121a4195acadad086f84719cc91430 - sha256: 2f032e4cec7d24f80ea932c99b0fea896fbf1e4a202453b71b50bc6980d0cfae + md5: ac43b516c128411f84f1e19c875998f1 + sha256: 077470fd8a48b4aafbb46a6ceccd9697a82ec16cce5dcb56282711ec04852e1d category: main optional: false - name: libopenvino-pytorch-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.2.0-hf036a51_1.conda hash: - md5: 7489363c2aa4d7a29c2b6f2c505099a4 - sha256: a78255491cc455d1b8ac8436996e8112d59f49e6994013a3184f93cf55c6cd0d + md5: a34b2a4c23b4c7867ddba1ad92fadf57 + sha256: 4064f1c92da47c3ce6f8dafcbac80452b49251e09cf244d1c35c34b0df158bcf category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: - libabseil: '>=20240116.1,<20240117.0a0' + __glibc: '>=2.17,<3.0.a0' + libabseil: '>=20240116.2,<20240117.0a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' libstdcxx-ng: '>=12' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda hash: - md5: bdbf11f760f1a3b35d766e03cebd9c42 - sha256: 3037418cbf5e14964e4c4909ac4f15729db29e990b57d3b2d0b7cf6b0186a3d7 + md5: 11acf52cac790edcf087b89e83834f7d + sha256: 0558659f340bc22a918750e1142a9215bac66fb8cde62279559f4a22d7d11be1 category: main optional: false - name: libopenvino-tensorflow-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' + libabseil: '>=20240116.2,<20240117.0a0' libcxx: '>=16' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libprotobuf: '>=4.25.3,<4.25.4.0a0' - snappy: '>=1.1.10,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.0.0-h7d3639a_4.conda + snappy: '>=1.2.0,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.2.0-haca2b7f_1.conda hash: - md5: 426d2097dd8f8c129351ab6d0158dde6 - sha256: 077a86295e5b30c8c9f9a140486f6d3b2eff32a9ff7e1c462a28f4e95bd60c66 + md5: 50310e9b533ff331a5a09c90e0c7a2f2 + sha256: fc5bb9c32e8e7eaf432edf9cbc1fe7576373ee36fc6e3f7a8b645aeb56ded965 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libopenvino: 2024.0.0 + libopenvino: 2024.2.0 libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda hash: - md5: 4354ea9f30a8c5111403fa4b24a2ad66 - sha256: 792f3a7de81b92a85339082008281dc03359c64ab10d9a93c71856fbefac8333 + md5: e7f91b35e3aa7abe880fc9192a761fc0 + sha256: 896b19b23e0649cdadf972c7380f74b766012feaea1417ab2fc4efb4de049cd4 category: main optional: false - name: libopenvino-tensorflow-lite-frontend - version: 2024.0.0 + version: 2024.2.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - libopenvino: 2024.0.0 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.0.0-hd427752_4.conda + libopenvino: 2024.2.0 + url: https://conda.anaconda.org/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.2.0-hf036a51_1.conda hash: - md5: ab2a53b0b8a50397a71b58ad4792c615 - sha256: 7458435a72afd7648cdce5da233407750f14c11e78cb4219b6d30a4a57a7a741 + md5: 01aa2d69ece7efe5270646c5ca774011 + sha256: 11ae1886e8e2535aaff0da48d1f5e8ff176489553c24c0f645331e29c9ccb839 category: main optional: false - name: libopus @@ -4164,7 +3464,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda hash: md5: 009981dd9cfcaa4dbfa25ffaed86bcae @@ -4176,40 +3476,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.43-h92b6c6a_0.conda hash: md5: 65dcddb15965c9de2c0365cb14910532 sha256: 13e646d24b5179e6b0a5ece4451a587d759f55d9a360b7015f8f96eff4524b8f category: main optional: false -- name: libpq - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda - hash: - md5: 9e49ec2a61d02623b379dc332eb6889d - sha256: e03a8439b79e013840c44c957d37dbce10316888b2b5dc7dcfcfc0cfe3a3b128 - category: main - optional: false -- name: libpq - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpq-16.2-ha925e61_1.conda - hash: - md5: a10ef466bbc68a8e74112a8e26028d66 - sha256: bfb252cb14b88a75ba4af930c16dccae265dce0afdf5abde7de1718181aa2cea - category: main - optional: false - name: libprotobuf version: 4.25.3 manager: conda @@ -4218,7 +3491,7 @@ package: libabseil: '>=20240116.1,<20240117.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda hash: md5: 6945825cebd2aeb16af4c69d97c32c13 @@ -4233,7 +3506,7 @@ package: __osx: '>=10.13' libabseil: '>=20240116.1,<20240117.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-4.25.3-h4e4d658_0.conda hash: md5: 57b7ee4f1fd8573781cfdabaec4a7782 @@ -4250,7 +3523,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda hash: md5: 63ab3e0cf149917a08af38b2786320c0 @@ -4265,53 +3538,26 @@ package: lcms2: '>=2.15,<3.0a0' libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libraw-0.21.1-h8138101_2.conda hash: md5: 099b1112ffc520a8d40b16d3ca9d47d0 sha256: e69f7fa11709b96be6d99c3c55768996a61c4c0a675bb57f433b3b712126410e category: main optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libabseil: '>=20240116.1,<20240117.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - hash: - md5: 41c69fba59d495e8cf5ffda48a607e35 - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - category: main - optional: false -- name: libre2-11 - version: 2023.09.01 - manager: conda - platform: osx-64 - dependencies: - __osx: '>=10.13' - libabseil: '>=20240116.1,<20240117.0a0' - libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libre2-11-2023.09.01-h81f5012_2.conda - hash: - md5: c5c36ec64e3c86504728c38b79011d08 - sha256: 384b72a09bd4bb29c1aa085110b2f940dba431587ffb4e2c1a28f605887a1867 - category: main - optional: false - name: librttopo version: 1.1.0 manager: conda platform: linux-64 dependencies: - geos: '>=3.12.1,<3.12.2.0a0' + __glibc: '>=2.17,<3.0.a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda + url: https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda hash: - md5: 20c3c14bc491f30daecaa6f73e2223ae - sha256: 03e248787162a1804683c614c0681c2488fa6d9f353cb32e2f8c1158157165ea + md5: 3d9f3a2e5d7213c34997e4464d2f938c + sha256: 65bfd9f8915b1fc2523c58bf556dc2b9ed6127b7c6877ed2841c67b717f6f924 category: main optional: false - name: librttopo @@ -4319,13 +3565,13 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - geos: '>=3.12.1,<3.12.2.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-hf05f67e_15.conda + __osx: '>=10.13' + geos: '>=3.12.2,<3.12.3.0a0' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/librttopo-1.1.0-he2ba7a0_16.conda hash: - md5: e65bedc9d9779a161cf26b6d12305246 - sha256: 10c46efefda5cc77143832a186f517e401098907cf9c3ec7406a5c242bb34e33 + md5: 80cc407788999eb3cd5a3651981e55fd + sha256: 907f602ad39172a98e3062c0d6616535075f5227435753fe2c843eb10891403c category: main optional: false - name: libsanitizer @@ -4334,10 +3580,11 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda + libstdcxx-ng: '>=12.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda hash: - md5: 11d1ceacff40054d5a74b12975d76f20 - sha256: 70329cb8b0604273521cdae63520cb364a8d5477e156e65cdbd810984caeabee + md5: 448dc960d50a75e8286b8427028ec56e + sha256: 78e8578e875fddcd96d626f7ceebe1cda167c2435a87bacf15c2f02ae966ffcf category: main optional: false - name: libspatialite @@ -4345,21 +3592,22 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libgcc-ng: '>=12' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda hash: - md5: f2e2bdd5fd10493a525503b2f40c59eb - sha256: 4181564a6e7bc0fa854cf8f2ed55e25c166c52da501dd21b39cf5c7567e999cb + md5: 48502f34f5ba86c1ce192cb30f959dc9 + sha256: ba7a298eb6e101ad4c3769c84f0d635c34e677a1879064f41e82598f0a0f5696 category: main optional: false - name: libspatialite @@ -4367,46 +3615,48 @@ package: manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' freexl: '>=2.0.0,<3.0a0' - geos: '>=3.12.1,<3.12.2.0a0' + geos: '>=3.12.2,<3.12.3.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' librttopo: '>=1.1.0,<1.2.0a0' - libsqlite: '>=3.45.2,<4.0a0' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - proj: '>=9.4.0,<9.4.1.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libxml2: '>=2.12.7,<3.0a0' + libzlib: '>=1.3.1,<2.0a0' + proj: '>=9.4.1,<9.5.0a0' sqlite: '' zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-h487bbac_5.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libspatialite-5.1.0-hdc25a2c_8.conda hash: - md5: e295a6cf66039ca5ce3dfdbd850a4145 - sha256: 49de77260f5946f8a023309c11f9dabd9c070745afd5f1ba7343342ac6285306 + md5: 51fd57e4f726cea701188184c036c341 + sha256: 860aa6eae736e7f280fcded14541512a98def5f49e9206042b452428d9913509 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda hash: - md5: 866983a220e27a80cb75e85cb30466a1 - sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 18aa975d2094c34aef978060ae7da7d8 + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + __osx: '>=10.13' + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda hash: - md5: 086f56e13a96a6cfb1bf640505ae6b70 - sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 5dadfbc1a567fe6e475df4ce3148be09 + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 category: main optional: false - name: libssh2 @@ -4415,7 +3665,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -4428,7 +3678,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -4440,22 +3690,24 @@ package: version: 12.3.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda + dependencies: + __unix: '' + url: https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda hash: - md5: b3c6062c84a8e172555ee104ea6a01ab - sha256: efcd4b4cba79cd0fb5a87757c7ca63171cf3b7b06446192364bae7defb50b94c + md5: 3706e34877bd82d04cb1e9e9baeb2739 + sha256: d1993225de21943f76a3cc5cb7d55f88be225001a988068e673171bed130d180 category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libtasn1 @@ -4492,7 +3744,7 @@ package: libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda @@ -4511,7 +3763,7 @@ package: libdeflate: '>=1.20,<1.21.0a0' libjpeg-turbo: '>=3.0.0,<4.0a0' libwebp-base: '>=1.3.2,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' xz: '>=5.2.6,<6.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.6.0-h129831d_3.conda @@ -4556,95 +3808,100 @@ package: category: main optional: false - name: libva - version: 2.21.0 + version: 2.22.0 manager: conda platform: linux-64 dependencies: - libdrm: '>=2.4.120,<2.5.0a0' - xorg-libx11: '>=1.8.7,<2.0a0' + libdrm: '>=2.4.121,<2.5.0a0' + libgcc-ng: '>=12' + libxcb: '>=1.16,<1.17.0a0' + wayland: '>=1.23.0,<2.0a0' + wayland-protocols: '' + xorg-libx11: '>=1.8.9,<2.0a0' xorg-libxext: '>=1.3.4,<2.0a0' xorg-libxfixes: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda hash: - md5: e50a2609159a3e336fe4092738c00687 - sha256: b4e3a3fa523a5ddd1eca7981c9d6a9b831a182950116cc5bda18c94a040b63bc + md5: d12f659072132c9d16e497073fc1f68b + sha256: 8a67bda4308a939b2b25337cac1bc7950a1ee755d009c020ab739c4e0607fc2d category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda hash: - md5: 01c76c6d71097a0f3bd8683a8f255123 - sha256: b0e0500fc92f626baaa2cf926dece5ce7571c42a2db2d993a250d4c5da4d68ca + md5: cde393f461e0c169d9ffb2fc70f81c33 + sha256: e7d2daf409c807be48310fcc8924e481b62988143f582eb3a58c5523a6763b13 category: main optional: false - name: libvpx - version: 1.14.0 + version: 1.14.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.14.1-hf036a51_0.conda hash: - md5: 2c087711228029c8eab3301ddff1c386 - sha256: d3980ecf1e65bfbf7e1c57d6f41a66ab4f33c4fe6b71bf9414bb823e2db186fb + md5: 9b8744a702ffb1738191e094e6eb67dc + sha256: 47e70e76988c11de97d539794fd4b03db69b75289ac02cdc35ae5a595ffcd973 category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda hash: - md5: 30de3fd9b3b602f7473f30e684eeea8c - sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0 + md5: b26e8aa824079e1be0294e7152ca4559 + sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f category: main optional: false - name: libwebp-base - version: 1.3.2 + version: 1.4.0 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.2-h0dc2134_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.4.0-h10d778d_0.conda hash: - md5: 4e7e9d244e87d66c18d36894fd6a8ae5 - sha256: fa7580f26fec4c28321ec2ece1257f3293e0c646c635e9904679f4a8369be401 + md5: b2c0047ea73819d992484faacbbe1c24 + sha256: 7bafd8f4c637778cd0aa390bf3a894feef0e1fcf6ea6000c7ffc25c4c5a65538 category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda hash: - md5: 33277193f5b92bad9fdd230eb700929c - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 + md5: 151cba22b85a989c2d6ef9633ffee1e4 + sha256: 7180375f37fd264bb50672a63da94536d4abd81ccec059e932728ae056324b3a category: main optional: false - name: libxcb - version: '1.15' + version: '1.16' manager: conda platform: osx-64 dependencies: pthread-stubs: '' - xorg-libxau: '' + xorg-libxau: '>=1.0.11,<2.0a0' xorg-libxdmcp: '' - url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.15-hb7f2c08_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxcb-1.16-h0dc2134_0.conda hash: - md5: 5513f57e0238c87c12dffedbcc9c1a4a - sha256: f41904f466acc8b3197f37f2dd3a08da75720c7f7464d9267635debc4ac1902b + md5: 07e80289d4ba724f37b4b6f001f88fbe + sha256: c64277f586b716d5c34947e7f2783ef0d24f239a136bc6a024e854bede0389a9 category: main optional: false - name: libxcrypt @@ -4660,34 +3917,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' icu: '>=73.2,<74.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 0ac9aff6010a7751961c8e4b863a40e7 + sha256: 11a346aed187405a7d3710a79b815fd66ff80fec3b9b7f840a24531324742acf category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' icu: '>=73.2,<74.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-hc603aa4_3.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: c188d96aea8eaa16efec573fe36a9a13 + sha256: b0cf4a1d3e628876613665ea957a4c0adc30460be859fa859a1eed7eac87330b category: main optional: false - name: libzip @@ -4697,7 +3956,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -4711,7 +3970,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -4720,37 +3979,39 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: llvm-tools @@ -4760,7 +4021,7 @@ package: dependencies: libllvm16: 16.0.6 libxml2: '>=2.12.1,<3.0.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' zstd: '>=1.5.5,<1.6.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-16.0.6-hbedff68_3.conda hash: @@ -4798,11 +4059,11 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda hash: - md5: bb14fcb13341b81d5eb386423b9d2bac - sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6 + md5: ec7398d21e2651e0dcb0044d03b9a339 + sha256: 88433b98a9dd9da315400e7fb9cd5f70804cb17dca8b1c85163a64f90f584126 category: main optional: false - name: lzo @@ -4810,14 +4071,14 @@ package: manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-haf1e3a3_1000.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/lzo-2.10-h10d778d_1001.conda hash: - md5: 0b6bca372a95d6c602c7a922e928ce79 - sha256: c8a9401eff2efbbcc6da03d0066ee85d72402f7658c240e7968c64052a0d0493 + md5: bfecd73e4a2dc18ffd5288acf8a212ab + sha256: 4006c57f805ca6aec72ee0eb7166b2fd648dd1bf3721b9de4b909cd374196643 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: linux-64 dependencies: @@ -4825,32 +4086,33 @@ package: libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda hash: - md5: 557396140c71eba588e96d597e0c61aa - sha256: 1a56549751f4c4a7998e0a8bcff367c3992cb832c0b211d775cfd644e1ef5e6b + md5: 4474532a312b2245c5c77f1176989b46 + sha256: 6315ea87d094418e744deb79a22331718b36a0e6e107cd7fc3c52c7922bc8133 category: main optional: false - name: minizip - version: 4.0.5 + version: 4.0.7 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libcxx: '>=16' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + openssl: '>=3.3.1,<4.0a0' xz: '>=5.2.6,<6.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.5-h37d7099_0.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/minizip-4.0.7-h62b0c8d_0.conda hash: - md5: 2203b2e83c20305b3d669556c345c8e9 - sha256: 426f4db1d56cdefa478a5ece35ed7624860548ace87d6ad927c4c9c6a7a20fec + md5: 9cb19284d7d835918241acf8180099db + sha256: e02a6e1a43b0ff44bb9460d46d3f7687a1876d435fb3c2c6cf9e19bab60901f6 category: main optional: false - name: mpc @@ -4879,26 +4141,26 @@ package: category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: nettle @@ -4924,65 +4186,8 @@ package: sha256: 62de51fc44f1595a06c5b24bb717b949b4b9fb4c4acaf127b92ce99ddb546ca7 category: main optional: false -- name: nspr - version: '4.35' - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda - hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c - category: main - optional: false -- name: nspr - version: '4.35' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/nspr-4.35-hea0b92c_0.conda - hash: - md5: a9e56c98d13d8b7ce72bf4357317c29b - sha256: da6e19bd0ff31e219760e647cfe1cc499a8cdfaff305f06c56d495ca062b86de - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - libsqlite: '>=3.45.1,<4.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda - hash: - md5: 54b56c2fdf973656b748e0378900ec13 - sha256: a9bc94d03df48014011cf6caaf447f2ef86a5edf7c70d70002ec4b59f5a4e198 - category: main - optional: false -- name: nss - version: '3.98' - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=16' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/nss-3.98-ha05da47_0.conda - hash: - md5: 79d062716d8e1f77cf806c6fe0f4405c - sha256: 3d99dd976aeb8678e4ac5fcbd574e1de50cdc57b742e22855f294c8047d5c68e - category: main - optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: linux-64 dependencies: @@ -4993,27 +4198,28 @@ package: libstdcxx-ng: '>=12' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py39h474f0d3_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py39ha0965c0_0.conda hash: - md5: aa265f5697237aa13cc10f53fa8acc4f - sha256: fa792c330e1d18854e4ca1ea8bf90ffae6787c133ebdc331f1ba6f565d28b599 + md5: b411be2728ba5711fc9bcdb0efa2db71 + sha256: 2dc55ac4074f99ff2ca040f460e98189398548dc2148ab895c5b8d417641a715 category: main optional: false - name: numpy - version: 1.26.4 + version: 2.0.0 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libblas: '>=3.9.0,<4.0a0' libcblas: '>=3.9.0,<4.0a0' libcxx: '>=16' liblapack: '>=3.9.0,<4.0a0' python: '>=3.9,<3.10.0a0' python_abi: 3.9.* - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.26.4-py39h28c39a1_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-2.0.0-py39h3fadf17_0.conda hash: - md5: 1b07000dc6aed4a69e91107dac4464d3 - sha256: 47f75135f6f85225709d5a8f05a0ac2c6a437c8a4cc53ce0f70e9b8766f23b1b + md5: c53be1a84e67ce8572e1e83f601068eb + sha256: a127611a1e0aedf7488b954bc26134ce165d9328fc096ef9ee08b482eca7a712 category: main optional: false - name: occt @@ -5072,7 +4278,7 @@ package: imath: '>=3.1.11,<3.1.12.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda hash: md5: 34e58e21fc28e404207d6ce4287da264 @@ -5086,7 +4292,7 @@ package: dependencies: imath: '>=3.1.11,<3.1.12.0a0' libcxx: '>=16' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openexr-3.2.2-h3f0570e_1.conda hash: md5: 95bd8b6b83801d99b064c785585bd15d @@ -5127,7 +4333,7 @@ package: libpng: '>=1.6.43,<1.7.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda hash: md5: 7f2e286780f072ed750df46dc2631138 @@ -5142,7 +4348,7 @@ package: libcxx: '>=16' libpng: '>=1.6.43,<1.7.0a0' libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/openjpeg-2.5.2-h7310d3a_0.conda hash: md5: 05a14cc9d725dd74995927968d6547e3 @@ -5150,28 +4356,29 @@ package: category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: p11-kit @@ -5202,30 +4409,31 @@ package: category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda hash: - md5: 8292dea9e022d9610a11fce5e0896ed8 - sha256: 766dd986a7ed6197676c14699000bba2625fd26c8a890fcb7a810e5cf56155bc + md5: 3914f7ac1761dce57102c72ca7c35d01 + sha256: 90646ad0d8f9d0fd896170c4f3d754e88c4ba0eaf856c24d00842016f644baab category: main optional: false - name: pcre2 - version: '10.43' + version: '10.44' manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda + libzlib: '>=1.3.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.44-h7634a1b_0.conda hash: - md5: 9c8651803886ce9d5983e107a0df4ea8 - sha256: 226714bbf89d45bf7da4c7551e21b8a833f51d33379fe3dfbfe31b72832d4dba + md5: b8f63aec37f31ffddac6dfdc0b31a73e + sha256: b397f92ef7d561f817c5336295d6696c72d2576328baceb9dc51bfc772bcb48e category: main optional: false - name: pip @@ -5281,156 +4489,38 @@ package: sha256: 3ab44e12e566c67a6e9fd831f557ab195456aa996b8dd9af19787ca80caa5cd1 category: main optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: linux-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libgcc-ng: '>=12' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libstdcxx-ng: '>=12' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda - hash: - md5: c688853df9dcfed47200d0e28e5dfe11 - sha256: 0ea3e63ae3ba07bcae8cc541647c647c68aeec32dfbe3bbaeecc845833b27a6f - category: main - optional: false -- name: poppler - version: 24.03.0 - manager: conda - platform: osx-64 - dependencies: - cairo: '>=1.18.0,<2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '' - freetype: '>=2.12.1,<3.0a0' - gettext: '>=0.21.1,<1.0a0' - lcms2: '>=2.16,<3.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16' - libglib: '>=2.78.4,<3.0a0' - libiconv: '>=1.17,<2.0a0' - libjpeg-turbo: '>=3.0.0,<4.0a0' - libpng: '>=1.6.43,<1.7.0a0' - libtiff: '>=4.6.0,<4.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - nspr: '>=4.35,<5.0a0' - nss: '>=3.98,<4.0a0' - openjpeg: '>=2.5.2,<3.0a0' - poppler-data: '' - url: https://conda.anaconda.org/conda-forge/osx-64/poppler-24.03.0-h0c752f9_0.conda - hash: - md5: 6b55d989edec2e1ea71236ca4cdd4960 - sha256: 05c0e43fda42be7745a68681511125ee244f465a9515fe6d4b564a224ca3b46b - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: poppler-data - version: 0.4.12 - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda - hash: - md5: d8d7293c5b37f39b2ac32940621c6592 - sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libgcc-ng: '>=12' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda - hash: - md5: 7a5806219d0f77ce8393375d040df065 - sha256: 7fc52e69478973f173f055ade6c4087564362be9172c294b493a79671fef9a7e - category: main - optional: false -- name: postgresql - version: '16.2' - manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.21.2,<1.22.0a0' - libpq: '16.2' - libxml2: '>=2.12.6,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - readline: '>=8.2,<9.0a0' - tzcode: '' - tzdata: '' - url: https://conda.anaconda.org/conda-forge/osx-64/postgresql-16.2-h06f2bd8_1.conda - hash: - md5: fe36c4a9254176dde4ca696016c50aa8 - sha256: 2a96af8385c51e97950ed00d802186069bf4933b3be111956508ab6be158d463 - category: main - optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: linux-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libstdcxx-ng: '>=12' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda hash: - md5: c97818016ebf8710a0f0cd6c29806493 - sha256: a8fa28987cc1d613dbebf6440af77ef2adaf030f0ca83133872835d3df1faa1c + md5: c38c5246d064ef16eba065d93c46f1c6 + sha256: ec9d16725925c62a7974faa396ca61878cb4cc7398c6c0e76d3ae28cffafc7db category: main optional: false - name: proj - version: 9.4.0 + version: 9.4.1 manager: conda platform: osx-64 dependencies: - libcurl: '>=8.6.0,<9.0a0' + __osx: '>=10.13' + libcurl: '>=8.8.0,<9.0a0' libcxx: '>=16' - libsqlite: '>=3.45.2,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libtiff: '>=4.6.0,<4.7.0a0' sqlite: '' - url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.0-h23b96cc_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/proj-9.4.1-hf92c781_0.conda hash: - md5: 290e72714216cf50217e8d0160374356 - sha256: 95ec19f40c92ed4c0a5f20ec0a4db11bf70cc8e891cd031c4ac1b77639d45290 + md5: b128ccdae180135720ab963c68bc2f1a + sha256: c047c55cb2e239d35d7f28fc50225d5798be37af1e84d9036966447c82b373f5 category: main optional: false - name: pthread-stubs @@ -5494,7 +4584,7 @@ package: libsqlite: '>=3.45.2,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' @@ -5515,7 +4605,7 @@ package: bzip2: '>=1.0.8,<2.0a0' libffi: '>=3.4,<4.0a0' libsqlite: '>=3.45.2,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' @@ -5551,52 +4641,29 @@ package: category: main optional: false - name: rapidjson - version: 1.1.0 + version: 1.1.0.post20240409 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.3.0' - libstdcxx-ng: '>=7.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda hash: - md5: 37d4fdbb92d573c7d6ab6de74a666dc4 - sha256: 73b74a21dcaafc4a9f43e7f4295ead29d0f3ef13790bad69351942b77294aad8 + md5: d6e98530772fc26c112640461110d127 + sha256: 645e408a91d3c3bea6cbb24e0c208222eb45694978b48e0224424369271ca0ef category: main optional: false - name: rapidjson - version: 1.1.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0-hb1e8313_1002.tar.bz2 - hash: - md5: 6393fe5c6c2d496ab76853628bcf10d9 - sha256: ab46afaae30bf186fb389658bf7e1176508a9a0a93d9ab621f65bd1cbe1faafa - category: main - optional: false -- name: re2 - version: 2023.09.01 - manager: conda - platform: linux-64 - dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - hash: - md5: 8f70e36268dea8eb666ef14c29bd3cda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - category: main - optional: false -- name: re2 - version: 2023.09.01 + version: 1.1.0.post20240409 manager: conda platform: osx-64 dependencies: - libre2-11: 2023.09.01 - url: https://conda.anaconda.org/conda-forge/osx-64/re2-2023.09.01-hb168e87_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/rapidjson-1.1.0.post20240409-hf036a51_1.conda hash: - md5: 266f8ca8528fc7e0fa31066c309ad864 - sha256: 5739ed2cfa62ed7f828eb4b9e6e69ff1df56cb9a9aacdc296451a3cb647034eb + md5: 7b32c6b26b7c3a0d97ad484ab6f207c9 + sha256: 07f88271bc5a73fc5a910895bf83bb6046b2b84a3935015c448667aef41abf9e category: main optional: false - name: readline @@ -5624,41 +4691,28 @@ package: sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 category: main optional: false -- name: s2n - version: 1.4.8 - manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - openssl: '>=3.2.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda - hash: - md5: 0240a49dffea6daea27aa388663edcab - sha256: 1068495f0f8f8b999dda339429dfaf5a8bd2e7a25bb386b6c39fd33ba01753fd - category: main - optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: linux-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: setuptools - version: 69.2.0 + version: 70.3.0 manager: conda platform: osx-64 dependencies: python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda hash: - md5: da214ecd521a720a9d521c68047682dc - sha256: 78a75c75a5dacda6de5f4056c9c990141bdaf4f64245673a590594d00bc63713 + md5: 693bb57e8f92120caa956898065f3627 + sha256: 869ea7688c040911ac1050d5765fa1f3d8ea1858c9f9cecb0df136a2f5e44f46 category: main optional: false - name: sigtool @@ -5674,124 +4728,101 @@ package: category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda - hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b - category: main - optional: false -- name: spdlog - version: 1.12.0 - manager: conda - platform: linux-64 - dependencies: - fmt: '>=10.1.1,<11.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda - hash: - md5: f37afc6ce10d45b9fae2f55ddc635b9f - sha256: 34c2ac3ecafc109ea659087f2a429b8fd7c557eb75d072e723a9954472726e62 - category: main - optional: false -- name: spdlog - version: 1.12.0 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - fmt: '>=10.1.1,<11.0a0' - libcxx: '>=16.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/spdlog-1.12.0-h8dd852c_2.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 1be852e792cca50421504cee933e3063 - sha256: 3bce42d94b4cd5672bde68ec47374e558b2bc481621f759f70b56bf3da12c31f + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda hash: - md5: 1423efca06ed343c1da0fc429bae0779 - sha256: 22d2692c82b73480c9adc80472bfb241262586edaf1dac1a7504434e47185d3c + md5: 77ea8dff5cf8550cc8f5629a6af56323 + sha256: e849d576e52bf3e6fc5786f89b7d76978f2e2438587826c95570324cb572e52b category: main optional: false - name: sqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libsqlite: 3.45.2 - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + __osx: '>=10.13' + libsqlite: 3.46.0 + libzlib: '>=1.2.13,<2.0a0' + ncurses: '>=6.5,<7.0a0' readline: '>=8.2,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.45.2-h7461747_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/sqlite-3.46.0-h28673e1_0.conda hash: - md5: fc4dae09f6b38084f3bfc87c77032584 - sha256: c9c1b7d6025d5efa74f4ddbda1ae72a721f041ad3d4a6ec3dda600befe9dffaa + md5: b76e50276ebb3131cb84aac8123ca75d + sha256: 7d868d34348615450c43cb4737b44987a0e45fdf4759502b323494dc8c931409 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda hash: - md5: 207e01ffa0eb2d2efb83fb6f46365a21 - sha256: eee484177184c7876d258917ab3f209396e6fc59e9bf3603a3ebf1ce8b39df80 + md5: 06c5dec4ebb47213b648a6c4dc8400d6 + sha256: 3077a32687c6ccf853c978ad97b77a08fc518c94e73eb449f5a312f1d77d33f0 category: main optional: false - name: svt-av1 - version: 2.0.0 + version: 2.1.2 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.0.0-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-2.1.2-hf036a51_0.conda hash: - md5: 5eaa877d08099311d615c23a4549482d - sha256: 51414c2e9b9f26b71a94037e3969dbfa9f65a2feaf31b7fb0d9905b5fef0e56e + md5: 89a3e90b3433159eec5e9a7db235e419 + sha256: 2eafa66a8ecf0ae24e255771668ad42d3163466bb482c26dc7e4d128b8b9aa69 category: main optional: false - name: sysroot_linux-64 - version: '2.12' + version: '2.17' manager: conda platform: linux-64 dependencies: - kernel-headers_linux-64: 2.6.32 - url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda + _sysroot_linux-64_curr_repodata_hack: 3.* + kernel-headers_linux-64: 3.10.0 + tzdata: '' + url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda hash: - md5: 595db67e32b276298ff3d94d07d47fbf - sha256: b4e4d685e41cb36cfb16f0cb15d2c61f8f94f56fab38987a44eff95d8a673fb5 + md5: 223fe8a3ff6d5e78484a9d58eb34d055 + sha256: b892b0b9c6dc8efe8b9b5442597d1ab8d65c0dc7e4e5a80f822cbdf0a639bd77 category: main optional: false - name: tapi @@ -5807,88 +4838,32 @@ package: category: main optional: false - name: tbb - version: 2021.11.0 + version: 2021.12.0 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - libhwloc: '>=2.9.3,<2.9.4.0a0' + libhwloc: '>=2.11.1,<2.11.2.0a0' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda hash: - md5: 4531d2927578e7e254ff3bcf6457518c - sha256: ded4de0d5a3eb7b47ed829f0ed0e3c61ccd428308bde52d8d22ced228038223b + md5: c667c11d1e488a38220ede8a34441bff + sha256: e901e1887205a3f90d6a77e1302ccc5ffe48fd30de16907dfdbdbf1dbef0a177 category: main optional: false - name: tbb - version: 2021.11.0 - manager: conda - platform: osx-64 - dependencies: - libcxx: '>=15' - libhwloc: '>=2.9.3,<2.9.4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.11.0-h7728843_1.conda - hash: - md5: 29e29beba9deb0ef66bee015c5bf3c14 - sha256: 6d531daba5ccf150b58d434fa72b1da0da04e8f14ab71bdad289a90d355f47e8 - category: main - optional: false -- name: tiledb - version: 2.21.2 - manager: conda - platform: linux-64 - dependencies: - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' - libgcc-ng: '>=12' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda - hash: - md5: 04fcd8b5da3c8c8cf17f6ba7e8f839f9 - sha256: 414b441a41b40f509721d145f946b5e59c5d390b53ee04cf993302a73e6b5920 - category: main - optional: false -- name: tiledb - version: 2.21.2 + version: 2021.12.0 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - aws-crt-cpp: '>=0.26.4,<0.26.5.0a0' - aws-sdk-cpp: '>=1.11.267,<1.11.268.0a0' - azure-core-cpp: '>=1.11.1,<1.11.2.0a0' - azure-storage-blobs-cpp: '>=12.10.0,<12.10.1.0a0' - azure-storage-common-cpp: '>=12.5.0,<12.5.1.0a0' - bzip2: '>=1.0.8,<2.0a0' - fmt: '>=10.2.1,<11.0a0' - libabseil: '>=20240116.1,<20240117.0a0' - libcurl: '>=8.7.1,<9.0a0' libcxx: '>=16' - libgoogle-cloud: '>=2.22.0,<2.23.0a0' - libgoogle-cloud-storage: '>=2.22.0,<2.23.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - lz4-c: '>=1.9.3,<1.10.0a0' - openssl: '>=3.2.1,<4.0a0' - spdlog: '>=1.12.0,<1.13.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tiledb-2.21.2-h0d80af6_0.conda + libhwloc: '>=2.11.1,<2.11.2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h3c5361c_3.conda hash: - md5: 7b0a0b85bf1cea8aa81e273dfb4fc815 - sha256: 5ea975c68f855a5cf617fb2c7a70c0814e57c3a84f6108a13b9fda89a5446a86 + md5: b0cada4d5a4cf1cbf8598b86231b5958 + sha256: e6ce25cb425251f74394f75c908a7a635c4469e95e0acc8f1106f29248156f5b category: main optional: false - name: tk @@ -5897,7 +4872,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc @@ -5909,37 +4884,13 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda hash: md5: bf830ba5afc507c6232d4ef0fb1a882d sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 category: main optional: false -- name: tzcode - version: 2024a - manager: conda - platform: linux-64 - dependencies: - __glibc: '>=2.17,<3.0.a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda - hash: - md5: 32146e34aaec3745a08b6f49af3f41b0 - sha256: d3ea2927cabd6c9f27ee0cb498f893ac0133687d6a9e65e0bce4861c732a18df - category: main - optional: false -- name: tzcode - version: 2024a - manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/tzcode-2024a-h10d778d_0.conda - hash: - md5: 8d50ba6668dbd193cd42ccd9099fa2ae - sha256: e3ee34b2711500f3b1d38309d47cfd7e4d05c0144f0b2b2bdfbc271a28cfdd76 - category: main - optional: false - name: tzdata version: 2024a manager: conda @@ -5963,28 +4914,56 @@ package: category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda hash: - md5: c5edf07141147789784f89d5b4e4a9ad - sha256: ec997599b6dcfef34242c67b695c4704d9ba6cb0b9de8f390defa475a95cdb3f + md5: d71d3a66528853c0a1ac2c02d79a0284 + sha256: 2aad2aeff7c69a2d7eecd7b662eef756b27d6a6b96f3e2c2a7071340ce14543e category: main optional: false - name: uriparser - version: 0.9.7 + version: 0.9.8 manager: conda platform: osx-64 dependencies: - libcxx: '>=14' - url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.7-he965462_1.conda + __osx: '>=10.9' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/uriparser-0.9.8-h6aefe2f_0.conda + hash: + md5: 649890a63cc818b24fbbf0572db221a5 + sha256: fec8e52955fc314580a93dee665349bf430ce6df19019cea3fae7ec60f732bdd + category: main + optional: false +- name: wayland + version: 1.23.0 + manager: conda + platform: linux-64 + dependencies: + libexpat: '>=2.6.2,<3.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda + hash: + md5: c13ca0abd5d1d31d0eebcf86d51da8a4 + sha256: 5f2572290dd09d5480abe6e0d9635c17031a12fd4e68578680e9f49444d6dd8b + category: main + optional: false +- name: wayland-protocols + version: '1.36' + manager: conda + platform: linux-64 + dependencies: + wayland: '' + url: https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda hash: - md5: a342f2d5573ebdb1cba60ef2947c1b7f - sha256: 1f3563325ce2f9b28b6dfbc703f3cac4d36095d2103c40648338533f4cb80b63 + md5: c6f690e7d4abf562161477f14533cfd8 + sha256: ee18ec691d0c80b9493ba064930c1fedb8e7c369285ca78f7a39ecc4af908410 category: main optional: false - name: wheel @@ -6204,14 +5183,14 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda hash: - md5: 077b6e8ad6a3ddb741fce2496dd01bec - sha256: 3e53ba247f1ad68353f18aceba5bf8ce87e3dea930de85d36946844a7658c9fb + md5: 4a6d410296d7e39f00bacdee7df046e9 + sha256: 66eabe62b66c1597c4a755dcd3f4ce2c78adaf7b32e25dfee45504d67d7735c1 category: main optional: false - name: xorg-libx11 @@ -6219,14 +5198,15 @@ package: manager: conda platform: osx-64 dependencies: - libxcb: '>=1.15,<1.16.0a0' + __osx: '>=10.13' + libxcb: '>=1.16,<1.17.0a0' xorg-kbproto: '' xorg-xextproto: '>=7.3.0,<8.0a0' xorg-xproto: '' - url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-hc955faf_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/xorg-libx11-1.8.9-h7022169_1.conda hash: - md5: e13813931395ae85d3bbf7122d25e7c3 - sha256: eddb6d3f9c7bc105d9eff4b5c6093a8888e0988d0b448e680ed662bec7e0466e + md5: f09e69ee27a9aaf14a1698600f8e7f55 + sha256: eab0b85b6bf75724979bbf13f8b060efb7b159b5b5ce03c649f1ffad9f282bf1 category: main optional: false - name: xorg-libxau @@ -6350,14 +5330,14 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - xorg-libx11: '>=1.7.0,<2.0a0' - xorg-libxext: 1.3.* - xorg-libxt: '>=1.2.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2 + libgcc-ng: '>=12' + xorg-libx11: '>=1.8.9,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + xorg-libxt: '>=1.3.0,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda hash: - md5: 3cdb89236358326adfce12be820a8af3 - sha256: 3a9f9f8bbf3a6934dada98a7a224dd264c533a251d2a92be604a4b23e772e79b + md5: 4d6c9925cdcda27e9d022e40eb3eac05 + sha256: a34986d71949ba714b27080c8ebb4932857f6e2ebd6383fbb1639415b30f4fd0 category: main optional: false - name: xorg-libxrender @@ -6497,53 +5477,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/conda-macos-latest-delft3d_mpich.lock b/locks/conda-macos-latest-delft3d_mpich.lock index f4680885..1524e49f 100644 --- a/locks/conda-macos-latest-delft3d_mpich.lock +++ b/locks/conda-macos-latest-delft3d_mpich.lock @@ -1,43 +1,43 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: b82f40beb77e59119f37956589fa4602e19e0c78c7c4f4ea65854362c082439c +# input_hash: 1c504486d6bfae743acbb5842f980eb85582e9e8650f930ce1e29563a9d7dd56 @EXPLICIT -https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda#6097a6ca9ada32699b5fc4312dd6ef18 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda#d5eb7992227254c0e9a0ce71151f0079 -https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda#f2eacee8c33c43692f1ccfd33d0f50b1 -https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda#5cc301d759ec03f28328428e28f65591 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda#7d6972792161077908b62971802f289a +https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda#7df874a4b05b2d2b82826190170eaa0f https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902 https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d1d51c8f716d97c864d12f7af329526 https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 https://conda.anaconda.org/conda-forge/osx-64/libuuid-2.38.1-hb7f2c08_0.conda#f33adb6462e96fdbde16cfff2466c010 -https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda#4a3ad23f6e16f99c04e166767193d700 -https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda#e7f7e91cfabd8c7172c9ae405214dd68 https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-mpich.tar.bz2#7316a634ed27146b42d28433ec3bc227 -https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda#50f28c512e9ad78589e3eab34833f762 +https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900 https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 +https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211 +https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda#be4a9b58fcf1374aeb79e873c1166e19 https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.2-h73e2aa4_0.conda#dc0882915da2ec74696ad87aa2350f27 +https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966 +https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda#4101cde4241c92aeac310d65e6791579 +https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b +https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda#b7575b5aa92108dcc9aaab0f05f2dbce +https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda#2c3c6c8aaf8728f87326964a82fdc7d8 +https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda#d838ffe9ec3c6d971f110e04487466ff https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 +https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb -https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec -https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda#bd85e0ca9e1ffaadc3b56079fd956035 -https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda#570a6f04802df580be529f3a72d2bbf7 -https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73 -https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda#75a8a98b1c4671c5d2897975731da42d -https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda#80abc41d0c48b82fe0f04e7f42f5cb7e -https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda#3003fa6dd18769db1a616982dcee5b40 -https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda#80505a68783f01dc8d7308c075261b2f -https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda#faecc55c2a8155d9ff1c0ff9a0fef64f https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda#ca3a72efba692c59a90d4b9fc0dfe774 +https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda#ea1be6ecfe814da889e882c8b6ead79d https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda#6112b3173f3aa2f12a8f40d07a77cc35 -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda#fa58e5eaa12006bc3289a71357bef167 -https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.0-hd33e60e_100.conda#83ef938eb262292fbf7c7a9eebec4d3c -https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_h859952d_0.conda#5d08d7ab5092bf13e8cdb05260231134 -https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_mpich_hb9078ee_101.conda#856f41af084f15f5f791884cf5fb6cbd -https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_h5394c81_13.conda#5600e95d56823b3a9b8c161ed01d6d2c -https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hb8007a8_3.conda#2706593eaf5f8a162a131041d60403bc +https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 +https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda#ddceef5df973c8ff7d6b32353c0cb358 +https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda#3ac9ef8975965f9698dbedd2a4cc5894 +https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e +https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda#3e5669e51737d04f4806dd3e8c424663 +https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda#11711bab5306a6534797a68b3c4c2bed +https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 +https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_100.conda#6dad777cb5b2278bb1189dacbfb26e13 +https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_hcca1a62_5.conda#1160f92c68a719ac3783f57615e8396b +https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_mpich_hb9122ec_101.conda#4c23c5bb89b37dc0b93ba2702df2909f +https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_hc555b6a_14.conda#cbe0cd0343bb0b4fff298f5bb279edfd +https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hf8ca7cb_4.conda#ba4f5eebb8e10a35409a1fb9e6a01fac https://conda.anaconda.org/gbrey/osx-64/delft3d4-65936-mpi_mpich_ha046ecc_9.tar.bz2#9da831a20aa0da792343f63d27c10a63 diff --git a/locks/conda-macos-latest-delft3d_openmpi.lock b/locks/conda-macos-latest-delft3d_openmpi.lock index 21d92d7c..f6b5b44c 100644 --- a/locks/conda-macos-latest-delft3d_openmpi.lock +++ b/locks/conda-macos-latest-delft3d_openmpi.lock @@ -1,42 +1,42 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 997efc1e834ce9bcbf702927d24cf7c7c5c5eddd6321689b9b75a66af8aeeaae +# input_hash: 040fc88fa10ef67a9764c338d453926387a11cb5721885221f511475e05f68aa @EXPLICIT -https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda#6097a6ca9ada32699b5fc4312dd6ef18 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda#d5eb7992227254c0e9a0ce71151f0079 -https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda#f2eacee8c33c43692f1ccfd33d0f50b1 -https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda#5cc301d759ec03f28328428e28f65591 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda#7d6972792161077908b62971802f289a +https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda#7df874a4b05b2d2b82826190170eaa0f https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902 https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d1d51c8f716d97c864d12f7af329526 https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 https://conda.anaconda.org/conda-forge/osx-64/libuuid-2.38.1-hb7f2c08_0.conda#f33adb6462e96fdbde16cfff2466c010 -https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda#4a3ad23f6e16f99c04e166767193d700 -https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda#e7f7e91cfabd8c7172c9ae405214dd68 https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-openmpi.tar.bz2#8c3bc725bf4d10fc6e56031f7543771f -https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda#50f28c512e9ad78589e3eab34833f762 +https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900 https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 +https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211 +https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda#be4a9b58fcf1374aeb79e873c1166e19 https://conda.anaconda.org/conda-forge/osx-64/expat-2.6.2-h73e2aa4_0.conda#dc0882915da2ec74696ad87aa2350f27 +https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966 +https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda#4101cde4241c92aeac310d65e6791579 +https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b +https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda#b7575b5aa92108dcc9aaab0f05f2dbce +https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda#2c3c6c8aaf8728f87326964a82fdc7d8 +https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda#d838ffe9ec3c6d971f110e04487466ff https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 +https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb -https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec -https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda#bd85e0ca9e1ffaadc3b56079fd956035 -https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda#570a6f04802df580be529f3a72d2bbf7 -https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73 -https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda#75a8a98b1c4671c5d2897975731da42d -https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda#80abc41d0c48b82fe0f04e7f42f5cb7e -https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda#3003fa6dd18769db1a616982dcee5b40 -https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda#80505a68783f01dc8d7308c075261b2f -https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda#faecc55c2a8155d9ff1c0ff9a0fef64f https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda#ca3a72efba692c59a90d4b9fc0dfe774 +https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda#ea1be6ecfe814da889e882c8b6ead79d https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda#6112b3173f3aa2f12a8f40d07a77cc35 -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda#fa58e5eaa12006bc3289a71357bef167 +https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 +https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda#ddceef5df973c8ff7d6b32353c0cb358 +https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda#3ac9ef8975965f9698dbedd2a4cc5894 +https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e +https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda#3e5669e51737d04f4806dd3e8c424663 +https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda#11711bab5306a6534797a68b3c4c2bed +https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.6-h7406208_101.conda#ed5a66d291ed28e1e1f9153ab24c3132 -https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_h85372f7_0.conda#d48fe7358f08110326878ffc83864c3d +https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_3.conda#44653dc9db58a814697299150d2fde51 https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_openmpi_h6058191_1.conda#d959c586b99ada8cb9c66c34d47c66e4 https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_openmpi_h00c184e_13.conda#a9ef2d69043aaa8d3e38342ef2c71cbc https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_openmpi_hd7c84bb_3.conda#2c98c55f1d823b9dc1dc6d47cf9f928c diff --git a/locks/conda-macos-latest-schism_mpich.lock b/locks/conda-macos-latest-schism_mpich.lock index 0190881a..7c4c7e05 100644 --- a/locks/conda-macos-latest-schism_mpich.lock +++ b/locks/conda-macos-latest-schism_mpich.lock @@ -1,50 +1,50 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 0fd1ba28bf855a79e52f86fb2c92a21ebe98d1c935274f57e50b96bbd4c492cd +# input_hash: 54746a047f64f0edf6c82a5f6ca0b9ff42b50f9f82d42bc6069abd21964abca2 @EXPLICIT -https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda#6097a6ca9ada32699b5fc4312dd6ef18 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda#d5eb7992227254c0e9a0ce71151f0079 -https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda#f2eacee8c33c43692f1ccfd33d0f50b1 -https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda#5cc301d759ec03f28328428e28f65591 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda#7d6972792161077908b62971802f289a +https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda#7df874a4b05b2d2b82826190170eaa0f https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902 https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d1d51c8f716d97c864d12f7af329526 https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9 https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 -https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda#4a3ad23f6e16f99c04e166767193d700 -https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda#e7f7e91cfabd8c7172c9ae405214dd68 https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda#f3a60f050e50631cc20a51c47d70d1b1 https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-mpich.tar.bz2#7316a634ed27146b42d28433ec3bc227 -https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda#50f28c512e9ad78589e3eab34833f762 +https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900 https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda#fef7a52f0eca6bae9e8e2e255bc86394 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 +https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211 +https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda#be4a9b58fcf1374aeb79e873c1166e19 +https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966 +https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda#4101cde4241c92aeac310d65e6791579 +https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b +https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda#b7575b5aa92108dcc9aaab0f05f2dbce +https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda#2c3c6c8aaf8728f87326964a82fdc7d8 +https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda#d838ffe9ec3c6d971f110e04487466ff +https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 +https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb -https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec -https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda#086f56e13a96a6cfb1bf640505ae6b70 -https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda#bd85e0ca9e1ffaadc3b56079fd956035 -https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda#570a6f04802df580be529f3a72d2bbf7 -https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e -https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73 -https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba5afc507c6232d4ef0fb1a882d -https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda#75a8a98b1c4671c5d2897975731da42d -https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda#80abc41d0c48b82fe0f04e7f42f5cb7e -https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda#3003fa6dd18769db1a616982dcee5b40 -https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda#80505a68783f01dc8d7308c075261b2f -https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda#faecc55c2a8155d9ff1c0ff9a0fef64f +https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda#5dadfbc1a567fe6e475df4ce3148be09 https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda#ca3a72efba692c59a90d4b9fc0dfe774 +https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda#ea1be6ecfe814da889e882c8b6ead79d https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda#6112b3173f3aa2f12a8f40d07a77cc35 -https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda#22bda10a0f425564a538aed9a0e8a9df -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda#fa58e5eaa12006bc3289a71357bef167 -https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.0-hd33e60e_100.conda#83ef938eb262292fbf7c7a9eebec4d3c -https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_h859952d_0.conda#5d08d7ab5092bf13e8cdb05260231134 -https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_mpich_hb9078ee_101.conda#856f41af084f15f5f791884cf5fb6cbd -https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hb7fa8f8_1005.tar.bz2#93c34a9e24211ed262743444fd187f4d -https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_h5394c81_13.conda#5600e95d56823b3a9b8c161ed01d6d2c -https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hb8007a8_3.conda#2706593eaf5f8a162a131041d60403bc +https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 +https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda#ddceef5df973c8ff7d6b32353c0cb358 +https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba5afc507c6232d4ef0fb1a882d +https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda#3ac9ef8975965f9698dbedd2a4cc5894 +https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e +https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda#3e5669e51737d04f4806dd3e8c424663 +https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda#11711bab5306a6534797a68b3c4c2bed +https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 +https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda#612763bc5ede9552e4233ec518b9c9fb +https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_100.conda#6dad777cb5b2278bb1189dacbfb26e13 +https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_hcca1a62_5.conda#1160f92c68a719ac3783f57615e8396b +https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_mpich_hb9122ec_101.conda#4c23c5bb89b37dc0b93ba2702df2909f +https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hf3db91c_1006.conda#ddddedd3236007f63ae8d95f11e1379a +https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_hc555b6a_14.conda#cbe0cd0343bb0b4fff298f5bb279edfd +https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hf8ca7cb_4.conda#ba4f5eebb8e10a35409a1fb9e6a01fac https://conda.anaconda.org/gbrey/osx-64/pschism-5.9-mpi_mpich_py3.11_h13bdba7_0.tar.bz2#78dcd6c6f9e4e50493b55ea69f162a55 diff --git a/locks/conda-macos-latest-schism_openmpi.lock b/locks/conda-macos-latest-schism_openmpi.lock index 6b27701a..77f443c3 100644 --- a/locks/conda-macos-latest-schism_openmpi.lock +++ b/locks/conda-macos-latest-schism_openmpi.lock @@ -1,48 +1,48 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: ab8cce0da6c4b1606696d16bf797ce1590842e7b99455f130415f0ed06983877 +# input_hash: b3934b25e0dca20664536e385a2cb1583c1cbcb39555b67614e589025e35e3dc @EXPLICIT -https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda#6097a6ca9ada32699b5fc4312dd6ef18 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda#d5eb7992227254c0e9a0ce71151f0079 -https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda#f2eacee8c33c43692f1ccfd33d0f50b1 -https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda#5cc301d759ec03f28328428e28f65591 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda#7d6972792161077908b62971802f289a +https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda#7df874a4b05b2d2b82826190170eaa0f https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902 https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d1d51c8f716d97c864d12f7af329526 https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9 https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 -https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda#4a3ad23f6e16f99c04e166767193d700 -https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda#e7f7e91cfabd8c7172c9ae405214dd68 https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda#f3a60f050e50631cc20a51c47d70d1b1 https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-openmpi.tar.bz2#8c3bc725bf4d10fc6e56031f7543771f -https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda#50f28c512e9ad78589e3eab34833f762 +https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900 https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda#fef7a52f0eca6bae9e8e2e255bc86394 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 +https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211 +https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda#be4a9b58fcf1374aeb79e873c1166e19 +https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966 +https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda#4101cde4241c92aeac310d65e6791579 +https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b +https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda#b7575b5aa92108dcc9aaab0f05f2dbce +https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda#2c3c6c8aaf8728f87326964a82fdc7d8 +https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda#d838ffe9ec3c6d971f110e04487466ff +https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 +https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb -https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec -https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda#086f56e13a96a6cfb1bf640505ae6b70 -https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda#bd85e0ca9e1ffaadc3b56079fd956035 -https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda#570a6f04802df580be529f3a72d2bbf7 -https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e -https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda#4320a8781f14cd959689b86e349f3b73 -https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba5afc507c6232d4ef0fb1a882d -https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda#75a8a98b1c4671c5d2897975731da42d -https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda#80abc41d0c48b82fe0f04e7f42f5cb7e -https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda#3003fa6dd18769db1a616982dcee5b40 -https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda#80505a68783f01dc8d7308c075261b2f -https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda#faecc55c2a8155d9ff1c0ff9a0fef64f +https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda#5dadfbc1a567fe6e475df4ce3148be09 https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda#ca3a72efba692c59a90d4b9fc0dfe774 +https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda#ea1be6ecfe814da889e882c8b6ead79d https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda#6112b3173f3aa2f12a8f40d07a77cc35 -https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda#22bda10a0f425564a538aed9a0e8a9df -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda#fa58e5eaa12006bc3289a71357bef167 +https://conda.anaconda.org/conda-forge/osx-64/lz4-c-1.9.4-hf0c8a7f_0.conda#aa04f7143228308662696ac24023f991 +https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda#ddceef5df973c8ff7d6b32353c0cb358 +https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba5afc507c6232d4ef0fb1a882d +https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda#3ac9ef8975965f9698dbedd2a4cc5894 +https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e +https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda#3e5669e51737d04f4806dd3e8c424663 +https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda#11711bab5306a6534797a68b3c4c2bed +https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 +https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda#612763bc5ede9552e4233ec518b9c9fb https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.6-h7406208_101.conda#ed5a66d291ed28e1e1f9153ab24c3132 -https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_h85372f7_0.conda#d48fe7358f08110326878ffc83864c3d +https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_3.conda#44653dc9db58a814697299150d2fde51 https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_openmpi_h6058191_1.conda#d959c586b99ada8cb9c66c34d47c66e4 https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-h7eda126_1005.tar.bz2#85ac202630b1ff6eccb4c738ee786911 https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_openmpi_h00c184e_13.conda#a9ef2d69043aaa8d3e38342ef2c71cbc diff --git a/locks/conda-ubuntu-latest-binary-p3.10.lock b/locks/conda-ubuntu-latest-binary-p3.10.lock index bb494af5..88ccc3df 100644 --- a/locks/conda-ubuntu-latest-binary-p3.10.lock +++ b/locks/conda-ubuntu-latest-binary-p3.10.lock @@ -1,91 +1,64 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: b0127cb9c2ffab09d1a7c98ec3e59ae33912981bb5657b96571e88d2a70be142 +# input_hash: 717612daa9721767cf18bb9a092fad23d9e1520efd79908bca038ac89a12efc5 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef +https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda#1c005af0c6ff22814b7c52ee448d4bea +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda#6185f640c43843e5ad6fd1c5372c3f80 -https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda#d731b543793afc0433c4fd593e693fce -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda#85d30a3fcc0f1cfc252776208af546a1 -https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda#e12ce6b051085b8f27e239f5e5f5bce5 -https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda#b3c6062c84a8e172555ee104ea6a01ab -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 +https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f +https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-4_cp310.conda#26322ec5d7712c3ded99dd656142b8ce https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda#d211c42b9ce49aee3734fdc828731689 -https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda#595db67e32b276298ff3d94d07d47fbf +https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda#ff7f38675b226cfb855aebfc32a13e31 +https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda#7fc690ec9db2902e5ee90cebfdab31e7 +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda#ae061a5ed5f05818acdf9adab72c146d +https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda#3706e34877bd82d04cb1e9e9baeb2739 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda#33084421a8c0af6aef1b439707f7662a https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda#ccc940fddbc3fcd3d79cd4c654c4b5c4 -https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda#2d9a60578bc28469d9aeef9aea5520c3 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda#625e1fed28a5139aed71b3a76117ef84 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda#d44fe0d9a6971a4fb245be0055775d9d -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f +https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda#223fe8a3ff6d5e78484a9d58eb34d055 +https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda#3f840c7ed70a96b5ebde8044b2f36f32 +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda#df53aa8418f8c289ae9b9665986034f8 +https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda#bb3fb8553a669828501e80d13b6bd744 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda#418c6ca5929a611cbd69204907a83995 -https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda#35ef8bc24bd34074ebae3c943d551728 https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8 -https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda#8c0f4f71f5a59ceb0c6fa9f51501066d https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda#985f2f453fb72408d6b6f1be0f324033 -https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f -https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda#e358c7c5f6824c272b5034b3816438a7 -https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff -https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 -https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda#9961b1f100c3b6852bd97c9233d06979 +https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda#3bf7b9fd5a7136126e0234db4b87c8b6 +https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda#f8f0f0c4338bad5c34a4e9e11460481d https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda#5aeabe88534ea4169d4c49998f293d6c https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2#a8832b479f93521a9e7b5b743803be51 -https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f -https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda#75648bc5dd3b8eab22406876c24d81ec -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede -https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400 https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.20-hd590300_0.conda#8e88f9389f1165d7c0936fe40d9a9a79 https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda#172bcc51059416e7ce99e7b528cede83 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2#15345e56d527b330e1cacbdf58676e8f https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda#48f4330bfcd959c3cfb704d424903c82 -https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda#11d1ceacff40054d5a74b12975d76f20 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2#93840744a8552e9ebf6bb1a5dffc125a https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2#7245a044b4a1980ed83196176b78b73a https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda#01c76c6d71097a0f3bd8683a8f255123 -https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda#30de3fd9b3b602f7473f30e684eeea8c +https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda#b26e8aa824079e1be0294e7152ca4559 https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2#bb14fcb13341b81d5eb386423b9d2bac -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 +https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda#ec7398d21e2651e0dcb0044d03b9a339 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda#2bf1915cc107738811368afcb0993a59 -https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1 https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda#c66f837ac65e4d1cdeb80e2a1d5fcc3d -https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036 -https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab -https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2#37d4fdbb92d573c7d6ab6de74a666dc4 -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 -https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda#207e01ffa0eb2d2efb83fb6f46365a21 -https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda#32146e34aaec3745a08b6f49af3f41b0 -https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda#c5edf07141147789784f89d5b4e4a9ad https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2#6c99772d483f566d59e25037fea2c4b1 -https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2#bcd1b3396ec6960cbc1d2855a9e60b2b https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda#b462a33c0be1421532f28bfe8f4a7514 @@ -95,140 +68,135 @@ https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852 https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87 https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda#ce2471034f5459a39636aacc292c96b6 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda#b0d9153fc7cfa8dc36b8703e1a59f5f3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda#258194cedccd33fd8a7b95a8aa105015 -https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda#8a04fc5a5ecaba31f66904b47dcc7797 +https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda#346722a0be40f6edc53f12640d301338 https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61 -https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda#e89827619e73df59496c708b94f6f3d5 +https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda#621d814955342209dc8e7f87c41f1ba0 +https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda#c94a5994ef49749880a8139cf9afcbe1 +https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda#07268e57799c7ad50809cadc297a515e -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 -https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda#7c3071bdf1d28b331a06bda6e85ab607 +https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 +https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f +https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda#c48fc56ec03229f294176923c3265c05 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede +https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda#bbfc4dbe5e97b385ef088f354d65e563 https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda#b63d9b6da3653179a278077f0de20014 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 -https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda#3eb5f16bcc8a02892199aa63555c731f +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda#009981dd9cfcaa4dbfa25ffaed86bcae -https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 -https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda#41c69fba59d495e8cf5ffda48a607e35 -https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda#20c3c14bc491f30daecaa6f73e2223ae -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda#866983a220e27a80cb75e85cb30466a1 +https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda#448dc960d50a75e8286b8427028ec56e +https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda#18aa975d2094c34aef978060ae7da7d8 https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda#33277193f5b92bad9fdd230eb700929c -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 +https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda#cde393f461e0c169d9ffb2fc70f81c33 +https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda#151cba22b85a989c2d6ef9633ffee1e4 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2#56ee94e34b71742bbdfa832c974e47a8 -https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda#8292dea9e022d9610a11fce5e0896ed8 +https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda#3914f7ac1761dce57102c72ca7c35d01 +https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab +https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda#d6e98530772fc26c112640461110d127 https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 -https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda#0240a49dffea6daea27aa388663edcab -https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda#f37afc6ce10d45b9fae2f55ddc635b9f +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f +https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda#06c5dec4ebb47213b648a6c4dc8400d6 https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc +https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda#d71d3a66528853c0a1ac2c02d79a0284 +https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda#c13ca0abd5d1d31d0eebcf86d51da8a4 +https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2#65ad6e1eb4aed2b0611855aff05e04f6 https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda#93ee23f12bc2e684548181256edd2cf6 -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda#cbf8138080ea12e9d9d66cf7c8bee325 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda#9ae35c3d96db2c94ce0cef86efdfa2cb -https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda#413e326f8a01d041ffbfbb51cea46a93 -https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda#7a53f84c45bdf4656ba27b9e9ed68b3d -https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda#4d72ee7c82f8a9b2ecef4fcefa9acd19 -https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda#cddba8fd94e52012abea1caad722b9c2 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda#3bf887827d1968275978361a6e405e4f -https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda#0269d2b7fa89f4a37cdee5ad6161f6cc -https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda#f36ddc11ca46958197a45effdd286e45 -https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda#a356024784da6dfd4683dc5ecf45b155 +https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda#93325fff774c4cc8dcc8c65039cb4646 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 +https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda#6ea440297aacee4893f02ad759e6ffbc +https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda#6d76c5822cb38bc1ab5a06565c6cf626 +https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda#ae05ece66d3924ac3d48b4aa3fa96cec +https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 +https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda#3d9f3a2e5d7213c34997e4464d2f938c https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda#66f03896ffbe1a110ffda05c7a856504 -https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda#557396140c71eba588e96d597e0c61aa -https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda#54b56c2fdf973656b748e0378900ec13 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda#0ac9aff6010a7751961c8e4b863a40e7 +https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda#4474532a312b2245c5c77f1176989b46 https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda#34e58e21fc28e404207d6ce4287da264 https://conda.anaconda.org/conda-forge/linux-64/python-3.10.14-hd12c33a_0_cpython.conda#2b4ba962994e8bd4be9ff5b64b75aff2 -https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda#8f70e36268dea8eb666ef14c29bd3cda -https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda#1423efca06ed343c1da0fc429bae0779 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda#077b6e8ad6a3ddb741fce2496dd01bec -https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda#58fc78e523e35a08423c913751a51fde -https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda#8476ec099649e9a6de52f7f4d916cd2a -https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda#fad1d0a651bf929c6c16fbf1f6ccfa7c +https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda#77ea8dff5cf8550cc8f5629a6af56323 +https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda#c6f690e7d4abf562161477f14533cfd8 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda#4a6d410296d7e39f00bacdee7df046e9 https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda#12e6988845706b2cfbc3bc35c9a61a95 -https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda#6b0b27394cf439d0540f949190556860 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda#3a9e5b8a6f651ff14e74d896d8f04ab6 -https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda#8c50a4d15a8d4812af563a684d598910 -https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda#9ec22c7c544f4a4f6d660f0a3b0fd15c +https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda#e42d156a1e3dd5651c89d7606b5a4a45 +https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda#954881ce9897d01c7c2031fb93ed366b +https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda#96471c6bcf708822422bd9f78dbecc3b +https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda#bb4fe41bc0584a3f6d3026634170c330 https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda#51bb7010fc86f70eee639b4bb7a894f5 +https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda#32ddb97f897740641d8d46a829ce1704 https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda#1a2a0cd3153464fee6646f3dd6dad9b8 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 -https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda#564517a8cbd095cff75eb996d33d2b7e -https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 -https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda#9e49ec2a61d02623b379dc332eb6889d +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda#f54aeebefb5c5ff84eca4fb05ca8aa3a https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda#7f2e286780f072ed750df46dc2631138 -https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda#da214ecd521a720a9d521c68047682dc -https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda#4531d2927578e7e254ff3bcf6457518c +https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda#693bb57e8f92120caa956898065f3627 https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda#0b5293a157c2b5cd513dd1b03d8d3aae https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2#e9a21aa4d5e3e5f1aed71e8cefd46b6a https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda#ed67c36f215b310412b2af935bf3e530 https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda#ae92aab42726eb29d16488924f7312cb -https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda#ce96c083829ab2727c942243ac93ffe0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda#14ad8defb307e1edb293c3fc9da8648f -https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda#2dbab1d281b7e1da05eee544cbdc8af6 -https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda#f907bb958910dc404647326ca80c263e -https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda#446ac3db6cb017e3dd067cc35cf51442 -https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda#b4537c98cb59f8725b0e1e65816b4a28 -https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda#7ef7c0f111dad1c8006504a0f1ccd820 -https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda#d471a5c3abc984b662d9bae3bb7fd8a5 +https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda#e9dffe1056994133616378309f932d77 +https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda#b6d90276c5aee9b4407dd94eb0cd40a8 +https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda#da3ce6140908b41fb8fb205104b54ae6 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda#d77e515e624f3edb33ac89997322b5a8 +https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda#c3a3cf9cf544bd621a18add719056529 +https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda#26155c2e3afafee809654f86f434c234 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda#7e1729554e209627636a0f6fabcdd115 https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda#4b31699e0ec5de64d5896e580389c9a1 -https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda#50c389a09b6b7babaef531eb7cb5e0ca -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda#4b4e36a91e7dabf7345b82d85767a7c3 +https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda#df069bea331c8486ac21814969301c1f +https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda#b083767b6c877e24ee597d93b87ab838 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda#126a2a61d276c4268f71adeef25bfc33 https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda#63ab3e0cf149917a08af38b2786320c0 -https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda#e50a2609159a3e336fe4092738c00687 +https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda#d12f659072132c9d16e497073fc1f68b https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda#f586ac1e56c8638b64f9c8122a7b8a67 -https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda#7a5806219d0f77ce8393375d040df065 -https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda#c97818016ebf8710a0f0cd6c29806493 +https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda#c38c5246d064ef16eba065d93c46f1c6 +https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda#c667c11d1e488a38220ede8a34441bff https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.5-hac6953d_0.conda#63b80ca78d29380fe69e69412dcbe4ac https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2#e77615e5141cad5a2acaa043d1cf0ca5 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2#3cdb89236358326adfce12be820a8af3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda#0086628487f8888df34f024a0a0d0289 -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda#f364272cb4c2f4ce2341067107b82865 -https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda#81458b3aed8ab8711951ec3c0c04e097 -https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda#ddcdbcc4fb8918767d6145239c1965bd -https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda#6e553df297f6e64668efb54302e0f139 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda#4d6c9925cdcda27e9d022e40eb3eac05 +https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda#28de2e073db9ca9b72858bee9fb6f571 +https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda#c82be18188e73e00064101a46e46e785 +https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda#cf4b0e7c4c78bb0662aed9b27c414a3c +https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda#84ec3f5b46f3076be49f2cf3f1cfbf02 https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda#41069afbb9fb02e6e19dd80b4a2c46e7 -https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda#aadc00cd5e330b5f7fb289446c23ab23 -https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda#5a6f6c00ef982a9bc83558d9ac8f64a0 -https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda#f7e7077802927590efc8bf7328208f12 -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda#7811f043944e010e54640918ea82cecd -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda#b2414908e43c442ddc68e6148774a304 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda#de9c380fea8634540db5fc8422888df1 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda#de1cbf145ecdc1d29af18e14eb267bca -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda#016b763e4776b4c2c536420a7e6a2349 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda#d866cc8dc37f101505e65a4372794631 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda#6ebefdc74cb700ec82cd6702125cc422 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda#6397395a4677d59bbd32c4f05bb8fa63 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda#24c9cf1dd8f6d6189102a136a731758c -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda#259bd0c788f447fe78aab69895365528 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda#ec121a4195acadad086f84719cc91430 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda#bdbf11f760f1a3b35d766e03cebd9c42 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda#4354ea9f30a8c5111403fa4b24a2ad66 -https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda#f2e2bdd5fd10493a525503b2f40c59eb -https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py310hb13e2d6_0.conda#6593de64c935768b6bad3e19b3e978be -https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda#c688853df9dcfed47200d0e28e5dfe11 -https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda#44b522426a11ab2afbd09b0746b0e4cd -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda#1e63d3866554a4d2e3d1cba5f21a2841 -https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda#05c1609de571f7a9a40e6d7d4116c21a -https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda#c306fd9cc90c0585171167d09135a827 +https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda#8ff4fa3ab0b63dc5b214a68839499e41 +https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 +https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda#c7b47c64af53e8ecee01d101eeab2342 +https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda#a908e463c710bd6b10a9eaa89fdf003c +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda#9511859bf5221238a2d3fb5322af01d5 +https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda#48502f34f5ba86c1ce192cb30f959dc9 +https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py310h515e003_0.conda#baab5ef1064a13d3567d90133b799a03 +https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda#d8d07866ac3b5b6937213c89a1874f08 +https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda#9518ab7016cf4564778aef08b6bd8792 +https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda#25db2ea6b8fefce451369e2cc826f6f4 +https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda#85fcff96b59d3e3a812601d713931d4f +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda#70d82a64e6d07f4d6e07cae6b0bd4bd1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda#f1e2a8ded23cef03804c4edb2edfb986 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda#95d2d3baaa1e456ef65c713a5d99b815 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda#9e49f87d8f99dc9724f52b3fac904106 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda#a9712fae44d01d906e228c49235e3b89 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda#5c2d064181e686cf5cfac6f1a1ee4e91 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda#89addf0fc0f489fa0c076f1c8c0d62bf +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda#9b0a13989b35302e47da13842683804d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda#7b3680d3fd00e1f91d5faf9c97c7ae78 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda#ac43b516c128411f84f1e19c875998f1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda#11acf52cac790edcf087b89e83834f7d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda#e7f91b35e3aa7abe880fc9192a761fc0 https://conda.anaconda.org/conda-forge/linux-64/occt-7.7.2-novtk_h130ccc2_101.conda#4a7df4c1d4f8e053e232a08a674f5c9f -https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda#3e735ae06073894080acd78365e78936 -https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda#f12ca97c38833a5a179adc172155d15d -https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda#a9865c001fa2e03272895e23b10bc55f +https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda#6d8c86d0368625b6503d696db70ea041 +https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda#107fd9222d9f628608b07b69abba9420 +https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py310ha8fd22c_7.conda#8658f1c4dcbba9563dd05cb91d5dd01c https://conda.anaconda.org/conda-forge/linux-64/gmsh-4.12.2-h6b98cf8_0.conda#fe4f54ab589df77b84fecc3b7991fed6 -https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda#04fcd8b5da3c8c8cf17f6ba7e8f839f9 -https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda#bbc8dad387da810666640cb8609964df -https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py310he073c5f_0.conda#371454cc7895f070274ed12505cc6a62 diff --git a/locks/conda-ubuntu-latest-binary-p3.11.lock b/locks/conda-ubuntu-latest-binary-p3.11.lock index 41dfcb54..ab36c1d8 100644 --- a/locks/conda-ubuntu-latest-binary-p3.11.lock +++ b/locks/conda-ubuntu-latest-binary-p3.11.lock @@ -1,91 +1,64 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 2ce551995e53e538a9ab0c13a373612b1fbd36cd039c92bb1ee197eca53a3059 +# input_hash: 4d9c552d1ce2b61d4e443f11acc2783e84a20c5742b36018b24a11c01d5e1bdc @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef +https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda#1c005af0c6ff22814b7c52ee448d4bea +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda#6185f640c43843e5ad6fd1c5372c3f80 -https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda#d731b543793afc0433c4fd593e693fce -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda#85d30a3fcc0f1cfc252776208af546a1 -https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda#e12ce6b051085b8f27e239f5e5f5bce5 -https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda#b3c6062c84a8e172555ee104ea6a01ab -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 +https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f +https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda#d211c42b9ce49aee3734fdc828731689 -https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda#595db67e32b276298ff3d94d07d47fbf +https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda#ff7f38675b226cfb855aebfc32a13e31 +https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda#7fc690ec9db2902e5ee90cebfdab31e7 +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda#ae061a5ed5f05818acdf9adab72c146d +https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda#3706e34877bd82d04cb1e9e9baeb2739 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda#33084421a8c0af6aef1b439707f7662a https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda#ccc940fddbc3fcd3d79cd4c654c4b5c4 -https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda#2d9a60578bc28469d9aeef9aea5520c3 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda#625e1fed28a5139aed71b3a76117ef84 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda#d44fe0d9a6971a4fb245be0055775d9d -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f +https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda#223fe8a3ff6d5e78484a9d58eb34d055 +https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda#3f840c7ed70a96b5ebde8044b2f36f32 +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda#df53aa8418f8c289ae9b9665986034f8 +https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda#bb3fb8553a669828501e80d13b6bd744 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda#418c6ca5929a611cbd69204907a83995 -https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda#35ef8bc24bd34074ebae3c943d551728 https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8 -https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda#8c0f4f71f5a59ceb0c6fa9f51501066d https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda#985f2f453fb72408d6b6f1be0f324033 -https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f -https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda#e358c7c5f6824c272b5034b3816438a7 -https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff -https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 -https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda#9961b1f100c3b6852bd97c9233d06979 +https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda#3bf7b9fd5a7136126e0234db4b87c8b6 +https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda#f8f0f0c4338bad5c34a4e9e11460481d https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda#5aeabe88534ea4169d4c49998f293d6c https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2#a8832b479f93521a9e7b5b743803be51 -https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f -https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda#75648bc5dd3b8eab22406876c24d81ec -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede -https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400 https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.20-hd590300_0.conda#8e88f9389f1165d7c0936fe40d9a9a79 https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda#172bcc51059416e7ce99e7b528cede83 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2#15345e56d527b330e1cacbdf58676e8f https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda#48f4330bfcd959c3cfb704d424903c82 -https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda#11d1ceacff40054d5a74b12975d76f20 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2#93840744a8552e9ebf6bb1a5dffc125a https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2#7245a044b4a1980ed83196176b78b73a https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda#01c76c6d71097a0f3bd8683a8f255123 -https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda#30de3fd9b3b602f7473f30e684eeea8c +https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda#b26e8aa824079e1be0294e7152ca4559 https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2#bb14fcb13341b81d5eb386423b9d2bac -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 +https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda#ec7398d21e2651e0dcb0044d03b9a339 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda#2bf1915cc107738811368afcb0993a59 -https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1 https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda#c66f837ac65e4d1cdeb80e2a1d5fcc3d -https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036 -https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab -https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2#37d4fdbb92d573c7d6ab6de74a666dc4 -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 -https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda#207e01ffa0eb2d2efb83fb6f46365a21 -https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda#32146e34aaec3745a08b6f49af3f41b0 -https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda#c5edf07141147789784f89d5b4e4a9ad https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2#6c99772d483f566d59e25037fea2c4b1 -https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2#bcd1b3396ec6960cbc1d2855a9e60b2b https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda#b462a33c0be1421532f28bfe8f4a7514 @@ -95,140 +68,135 @@ https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852 https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87 https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda#ce2471034f5459a39636aacc292c96b6 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda#b0d9153fc7cfa8dc36b8703e1a59f5f3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda#258194cedccd33fd8a7b95a8aa105015 -https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda#8a04fc5a5ecaba31f66904b47dcc7797 +https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda#346722a0be40f6edc53f12640d301338 https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61 -https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda#e89827619e73df59496c708b94f6f3d5 +https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda#621d814955342209dc8e7f87c41f1ba0 +https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda#c94a5994ef49749880a8139cf9afcbe1 +https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda#07268e57799c7ad50809cadc297a515e -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 -https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda#7c3071bdf1d28b331a06bda6e85ab607 +https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 +https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f +https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda#c48fc56ec03229f294176923c3265c05 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede +https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda#bbfc4dbe5e97b385ef088f354d65e563 https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda#b63d9b6da3653179a278077f0de20014 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 -https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda#3eb5f16bcc8a02892199aa63555c731f +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda#009981dd9cfcaa4dbfa25ffaed86bcae -https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 -https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda#41c69fba59d495e8cf5ffda48a607e35 -https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda#20c3c14bc491f30daecaa6f73e2223ae -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda#866983a220e27a80cb75e85cb30466a1 +https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda#448dc960d50a75e8286b8427028ec56e +https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda#18aa975d2094c34aef978060ae7da7d8 https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda#33277193f5b92bad9fdd230eb700929c -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 +https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda#cde393f461e0c169d9ffb2fc70f81c33 +https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda#151cba22b85a989c2d6ef9633ffee1e4 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2#56ee94e34b71742bbdfa832c974e47a8 -https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda#8292dea9e022d9610a11fce5e0896ed8 +https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda#3914f7ac1761dce57102c72ca7c35d01 +https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab +https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda#d6e98530772fc26c112640461110d127 https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 -https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda#0240a49dffea6daea27aa388663edcab -https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda#f37afc6ce10d45b9fae2f55ddc635b9f +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f +https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda#06c5dec4ebb47213b648a6c4dc8400d6 https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc +https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda#d71d3a66528853c0a1ac2c02d79a0284 +https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda#c13ca0abd5d1d31d0eebcf86d51da8a4 +https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2#65ad6e1eb4aed2b0611855aff05e04f6 https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda#93ee23f12bc2e684548181256edd2cf6 -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda#cbf8138080ea12e9d9d66cf7c8bee325 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda#9ae35c3d96db2c94ce0cef86efdfa2cb -https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda#413e326f8a01d041ffbfbb51cea46a93 -https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda#7a53f84c45bdf4656ba27b9e9ed68b3d -https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda#4d72ee7c82f8a9b2ecef4fcefa9acd19 -https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda#cddba8fd94e52012abea1caad722b9c2 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda#3bf887827d1968275978361a6e405e4f -https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda#0269d2b7fa89f4a37cdee5ad6161f6cc -https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda#f36ddc11ca46958197a45effdd286e45 -https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda#a356024784da6dfd4683dc5ecf45b155 +https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda#93325fff774c4cc8dcc8c65039cb4646 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 +https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda#6ea440297aacee4893f02ad759e6ffbc +https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda#6d76c5822cb38bc1ab5a06565c6cf626 +https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda#ae05ece66d3924ac3d48b4aa3fa96cec +https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 +https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda#3d9f3a2e5d7213c34997e4464d2f938c https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda#66f03896ffbe1a110ffda05c7a856504 -https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda#557396140c71eba588e96d597e0c61aa -https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda#54b56c2fdf973656b748e0378900ec13 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda#0ac9aff6010a7751961c8e4b863a40e7 +https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda#4474532a312b2245c5c77f1176989b46 https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda#34e58e21fc28e404207d6ce4287da264 -https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda#2fdc314ee058eda0114738a9309d3683 -https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda#8f70e36268dea8eb666ef14c29bd3cda -https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda#1423efca06ed343c1da0fc429bae0779 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda#077b6e8ad6a3ddb741fce2496dd01bec -https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda#58fc78e523e35a08423c913751a51fde -https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda#8476ec099649e9a6de52f7f4d916cd2a -https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda#fad1d0a651bf929c6c16fbf1f6ccfa7c +https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda#ac68acfa8b558ed406c75e98d3428d7b +https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda#77ea8dff5cf8550cc8f5629a6af56323 +https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda#c6f690e7d4abf562161477f14533cfd8 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda#4a6d410296d7e39f00bacdee7df046e9 https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda#12e6988845706b2cfbc3bc35c9a61a95 -https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda#6b0b27394cf439d0540f949190556860 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda#3a9e5b8a6f651ff14e74d896d8f04ab6 -https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda#8c50a4d15a8d4812af563a684d598910 -https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda#9ec22c7c544f4a4f6d660f0a3b0fd15c +https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda#e42d156a1e3dd5651c89d7606b5a4a45 +https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda#954881ce9897d01c7c2031fb93ed366b +https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda#96471c6bcf708822422bd9f78dbecc3b +https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda#bb4fe41bc0584a3f6d3026634170c330 https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda#51bb7010fc86f70eee639b4bb7a894f5 +https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda#32ddb97f897740641d8d46a829ce1704 https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda#1a2a0cd3153464fee6646f3dd6dad9b8 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 -https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda#564517a8cbd095cff75eb996d33d2b7e -https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 -https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda#9e49ec2a61d02623b379dc332eb6889d +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda#f54aeebefb5c5ff84eca4fb05ca8aa3a https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda#7f2e286780f072ed750df46dc2631138 -https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda#da214ecd521a720a9d521c68047682dc -https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda#4531d2927578e7e254ff3bcf6457518c +https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda#693bb57e8f92120caa956898065f3627 https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda#0b5293a157c2b5cd513dd1b03d8d3aae https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2#e9a21aa4d5e3e5f1aed71e8cefd46b6a https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda#ed67c36f215b310412b2af935bf3e530 https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda#ae92aab42726eb29d16488924f7312cb -https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda#ce96c083829ab2727c942243ac93ffe0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda#14ad8defb307e1edb293c3fc9da8648f -https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda#2dbab1d281b7e1da05eee544cbdc8af6 -https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda#f907bb958910dc404647326ca80c263e -https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda#446ac3db6cb017e3dd067cc35cf51442 -https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda#b4537c98cb59f8725b0e1e65816b4a28 -https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda#7ef7c0f111dad1c8006504a0f1ccd820 -https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda#d471a5c3abc984b662d9bae3bb7fd8a5 +https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda#e9dffe1056994133616378309f932d77 +https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda#b6d90276c5aee9b4407dd94eb0cd40a8 +https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda#da3ce6140908b41fb8fb205104b54ae6 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda#d77e515e624f3edb33ac89997322b5a8 +https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda#c3a3cf9cf544bd621a18add719056529 +https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda#26155c2e3afafee809654f86f434c234 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda#7e1729554e209627636a0f6fabcdd115 https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda#4b31699e0ec5de64d5896e580389c9a1 -https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda#50c389a09b6b7babaef531eb7cb5e0ca -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda#4b4e36a91e7dabf7345b82d85767a7c3 +https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda#df069bea331c8486ac21814969301c1f +https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda#b083767b6c877e24ee597d93b87ab838 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda#126a2a61d276c4268f71adeef25bfc33 https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda#63ab3e0cf149917a08af38b2786320c0 -https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda#e50a2609159a3e336fe4092738c00687 +https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda#d12f659072132c9d16e497073fc1f68b https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda#f586ac1e56c8638b64f9c8122a7b8a67 -https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda#7a5806219d0f77ce8393375d040df065 -https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda#c97818016ebf8710a0f0cd6c29806493 +https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda#c38c5246d064ef16eba065d93c46f1c6 +https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda#c667c11d1e488a38220ede8a34441bff https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.5-hac6953d_0.conda#63b80ca78d29380fe69e69412dcbe4ac https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2#e77615e5141cad5a2acaa043d1cf0ca5 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2#3cdb89236358326adfce12be820a8af3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda#0086628487f8888df34f024a0a0d0289 -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda#f364272cb4c2f4ce2341067107b82865 -https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda#81458b3aed8ab8711951ec3c0c04e097 -https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda#ddcdbcc4fb8918767d6145239c1965bd -https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda#6e553df297f6e64668efb54302e0f139 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda#4d6c9925cdcda27e9d022e40eb3eac05 +https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda#28de2e073db9ca9b72858bee9fb6f571 +https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda#c82be18188e73e00064101a46e46e785 +https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda#cf4b0e7c4c78bb0662aed9b27c414a3c +https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda#84ec3f5b46f3076be49f2cf3f1cfbf02 https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda#41069afbb9fb02e6e19dd80b4a2c46e7 -https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda#aadc00cd5e330b5f7fb289446c23ab23 -https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda#5a6f6c00ef982a9bc83558d9ac8f64a0 -https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda#f7e7077802927590efc8bf7328208f12 -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda#7811f043944e010e54640918ea82cecd -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda#b2414908e43c442ddc68e6148774a304 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda#de9c380fea8634540db5fc8422888df1 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda#de1cbf145ecdc1d29af18e14eb267bca -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda#016b763e4776b4c2c536420a7e6a2349 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda#d866cc8dc37f101505e65a4372794631 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda#6ebefdc74cb700ec82cd6702125cc422 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda#6397395a4677d59bbd32c4f05bb8fa63 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda#24c9cf1dd8f6d6189102a136a731758c -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda#259bd0c788f447fe78aab69895365528 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda#ec121a4195acadad086f84719cc91430 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda#bdbf11f760f1a3b35d766e03cebd9c42 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda#4354ea9f30a8c5111403fa4b24a2ad66 -https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda#f2e2bdd5fd10493a525503b2f40c59eb -https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda#a502d7aad449a1206efb366d6a12c52d -https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda#c688853df9dcfed47200d0e28e5dfe11 -https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda#44b522426a11ab2afbd09b0746b0e4cd -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda#1e63d3866554a4d2e3d1cba5f21a2841 -https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda#05c1609de571f7a9a40e6d7d4116c21a -https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda#c306fd9cc90c0585171167d09135a827 +https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda#8ff4fa3ab0b63dc5b214a68839499e41 +https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 +https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda#c7b47c64af53e8ecee01d101eeab2342 +https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda#a908e463c710bd6b10a9eaa89fdf003c +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda#9511859bf5221238a2d3fb5322af01d5 +https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda#48502f34f5ba86c1ce192cb30f959dc9 +https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py311h1461c94_0.conda#4998996a22ef05d2f486216075a3037f +https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda#d8d07866ac3b5b6937213c89a1874f08 +https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda#9518ab7016cf4564778aef08b6bd8792 +https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda#25db2ea6b8fefce451369e2cc826f6f4 +https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda#85fcff96b59d3e3a812601d713931d4f +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda#70d82a64e6d07f4d6e07cae6b0bd4bd1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda#f1e2a8ded23cef03804c4edb2edfb986 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda#95d2d3baaa1e456ef65c713a5d99b815 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda#9e49f87d8f99dc9724f52b3fac904106 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda#a9712fae44d01d906e228c49235e3b89 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda#5c2d064181e686cf5cfac6f1a1ee4e91 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda#89addf0fc0f489fa0c076f1c8c0d62bf +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda#9b0a13989b35302e47da13842683804d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda#7b3680d3fd00e1f91d5faf9c97c7ae78 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda#ac43b516c128411f84f1e19c875998f1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda#11acf52cac790edcf087b89e83834f7d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda#e7f91b35e3aa7abe880fc9192a761fc0 https://conda.anaconda.org/conda-forge/linux-64/occt-7.7.2-novtk_h130ccc2_101.conda#4a7df4c1d4f8e053e232a08a674f5c9f -https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda#3e735ae06073894080acd78365e78936 -https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda#f12ca97c38833a5a179adc172155d15d -https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda#a9865c001fa2e03272895e23b10bc55f +https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda#6d8c86d0368625b6503d696db70ea041 +https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda#107fd9222d9f628608b07b69abba9420 +https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py311h4a2bcd2_7.conda#7d19ea8cc5af0c87610762aaba932e3a https://conda.anaconda.org/conda-forge/linux-64/gmsh-4.12.2-h6b98cf8_0.conda#fe4f54ab589df77b84fecc3b7991fed6 -https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda#04fcd8b5da3c8c8cf17f6ba7e8f839f9 -https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda#bbc8dad387da810666640cb8609964df -https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py311h8be719e_0.conda#d3bc7957b9c0c51dc95de7c41fadd877 diff --git a/locks/conda-ubuntu-latest-binary-p3.12.lock b/locks/conda-ubuntu-latest-binary-p3.12.lock index 60a9030b..1df6a2ff 100644 --- a/locks/conda-ubuntu-latest-binary-p3.12.lock +++ b/locks/conda-ubuntu-latest-binary-p3.12.lock @@ -1,91 +1,64 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 1adaad59fd871fe1ba9c4ac6e713f376dff0aff91993991f4b5026446a4ff24e +# input_hash: e490117e0a12cf3d4e9a6bf8c65e52f35eab8a87c865d1c356cb62d10377df87 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef +https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda#1c005af0c6ff22814b7c52ee448d4bea +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda#6185f640c43843e5ad6fd1c5372c3f80 -https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda#d731b543793afc0433c4fd593e693fce -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda#85d30a3fcc0f1cfc252776208af546a1 -https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda#e12ce6b051085b8f27e239f5e5f5bce5 -https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda#b3c6062c84a8e172555ee104ea6a01ab -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 +https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f +https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda#dccc2d142812964fcc6abdc97b672dff https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda#d211c42b9ce49aee3734fdc828731689 -https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda#595db67e32b276298ff3d94d07d47fbf +https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda#ff7f38675b226cfb855aebfc32a13e31 +https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda#7fc690ec9db2902e5ee90cebfdab31e7 +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda#ae061a5ed5f05818acdf9adab72c146d +https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda#3706e34877bd82d04cb1e9e9baeb2739 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda#33084421a8c0af6aef1b439707f7662a https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda#ccc940fddbc3fcd3d79cd4c654c4b5c4 -https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda#2d9a60578bc28469d9aeef9aea5520c3 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda#625e1fed28a5139aed71b3a76117ef84 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda#d44fe0d9a6971a4fb245be0055775d9d -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f +https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda#223fe8a3ff6d5e78484a9d58eb34d055 +https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda#3f840c7ed70a96b5ebde8044b2f36f32 +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda#df53aa8418f8c289ae9b9665986034f8 +https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda#bb3fb8553a669828501e80d13b6bd744 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda#418c6ca5929a611cbd69204907a83995 -https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda#35ef8bc24bd34074ebae3c943d551728 https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8 -https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda#8c0f4f71f5a59ceb0c6fa9f51501066d https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda#985f2f453fb72408d6b6f1be0f324033 -https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f -https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda#e358c7c5f6824c272b5034b3816438a7 -https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff -https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 -https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda#9961b1f100c3b6852bd97c9233d06979 +https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda#3bf7b9fd5a7136126e0234db4b87c8b6 +https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda#f8f0f0c4338bad5c34a4e9e11460481d https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda#5aeabe88534ea4169d4c49998f293d6c https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2#a8832b479f93521a9e7b5b743803be51 -https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f -https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda#75648bc5dd3b8eab22406876c24d81ec -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede -https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400 https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.20-hd590300_0.conda#8e88f9389f1165d7c0936fe40d9a9a79 https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda#172bcc51059416e7ce99e7b528cede83 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2#15345e56d527b330e1cacbdf58676e8f https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda#48f4330bfcd959c3cfb704d424903c82 -https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda#11d1ceacff40054d5a74b12975d76f20 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2#93840744a8552e9ebf6bb1a5dffc125a https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2#7245a044b4a1980ed83196176b78b73a https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda#01c76c6d71097a0f3bd8683a8f255123 -https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda#30de3fd9b3b602f7473f30e684eeea8c +https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda#b26e8aa824079e1be0294e7152ca4559 https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2#bb14fcb13341b81d5eb386423b9d2bac -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 +https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda#ec7398d21e2651e0dcb0044d03b9a339 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda#2bf1915cc107738811368afcb0993a59 -https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1 https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda#c66f837ac65e4d1cdeb80e2a1d5fcc3d -https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036 -https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab -https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2#37d4fdbb92d573c7d6ab6de74a666dc4 -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 -https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda#207e01ffa0eb2d2efb83fb6f46365a21 -https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda#32146e34aaec3745a08b6f49af3f41b0 -https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda#c5edf07141147789784f89d5b4e4a9ad https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2#6c99772d483f566d59e25037fea2c4b1 -https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2#bcd1b3396ec6960cbc1d2855a9e60b2b https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda#b462a33c0be1421532f28bfe8f4a7514 @@ -95,140 +68,135 @@ https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852 https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87 https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda#ce2471034f5459a39636aacc292c96b6 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda#b0d9153fc7cfa8dc36b8703e1a59f5f3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda#258194cedccd33fd8a7b95a8aa105015 -https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda#8a04fc5a5ecaba31f66904b47dcc7797 +https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda#346722a0be40f6edc53f12640d301338 https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61 -https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda#e89827619e73df59496c708b94f6f3d5 +https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda#621d814955342209dc8e7f87c41f1ba0 +https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda#c94a5994ef49749880a8139cf9afcbe1 +https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda#07268e57799c7ad50809cadc297a515e -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 -https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda#7c3071bdf1d28b331a06bda6e85ab607 +https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 +https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f +https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda#c48fc56ec03229f294176923c3265c05 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede +https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda#bbfc4dbe5e97b385ef088f354d65e563 https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda#b63d9b6da3653179a278077f0de20014 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 -https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda#3eb5f16bcc8a02892199aa63555c731f +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda#009981dd9cfcaa4dbfa25ffaed86bcae -https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 -https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda#41c69fba59d495e8cf5ffda48a607e35 -https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda#20c3c14bc491f30daecaa6f73e2223ae -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda#866983a220e27a80cb75e85cb30466a1 +https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda#448dc960d50a75e8286b8427028ec56e +https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda#18aa975d2094c34aef978060ae7da7d8 https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda#33277193f5b92bad9fdd230eb700929c -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 +https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda#cde393f461e0c169d9ffb2fc70f81c33 +https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda#151cba22b85a989c2d6ef9633ffee1e4 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2#56ee94e34b71742bbdfa832c974e47a8 -https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda#8292dea9e022d9610a11fce5e0896ed8 +https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda#3914f7ac1761dce57102c72ca7c35d01 +https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab +https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda#d6e98530772fc26c112640461110d127 https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 -https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda#0240a49dffea6daea27aa388663edcab -https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda#f37afc6ce10d45b9fae2f55ddc635b9f +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f +https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda#06c5dec4ebb47213b648a6c4dc8400d6 https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc +https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda#d71d3a66528853c0a1ac2c02d79a0284 +https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda#c13ca0abd5d1d31d0eebcf86d51da8a4 +https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2#65ad6e1eb4aed2b0611855aff05e04f6 https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda#93ee23f12bc2e684548181256edd2cf6 -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda#cbf8138080ea12e9d9d66cf7c8bee325 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda#9ae35c3d96db2c94ce0cef86efdfa2cb -https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda#413e326f8a01d041ffbfbb51cea46a93 -https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda#7a53f84c45bdf4656ba27b9e9ed68b3d -https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda#4d72ee7c82f8a9b2ecef4fcefa9acd19 -https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda#cddba8fd94e52012abea1caad722b9c2 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda#3bf887827d1968275978361a6e405e4f -https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda#0269d2b7fa89f4a37cdee5ad6161f6cc -https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda#f36ddc11ca46958197a45effdd286e45 -https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda#a356024784da6dfd4683dc5ecf45b155 +https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda#93325fff774c4cc8dcc8c65039cb4646 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 +https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda#6ea440297aacee4893f02ad759e6ffbc +https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda#6d76c5822cb38bc1ab5a06565c6cf626 +https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda#ae05ece66d3924ac3d48b4aa3fa96cec +https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 +https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda#3d9f3a2e5d7213c34997e4464d2f938c https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda#66f03896ffbe1a110ffda05c7a856504 -https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda#557396140c71eba588e96d597e0c61aa -https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda#54b56c2fdf973656b748e0378900ec13 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda#0ac9aff6010a7751961c8e4b863a40e7 +https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda#4474532a312b2245c5c77f1176989b46 https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda#34e58e21fc28e404207d6ce4287da264 -https://conda.anaconda.org/conda-forge/linux-64/python-3.12.2-hab00c5b_0_cpython.conda#ad7b68400f3a6ebe72b00be093c7f301 -https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda#8f70e36268dea8eb666ef14c29bd3cda -https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda#1423efca06ed343c1da0fc429bae0779 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda#077b6e8ad6a3ddb741fce2496dd01bec -https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda#58fc78e523e35a08423c913751a51fde -https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda#8476ec099649e9a6de52f7f4d916cd2a -https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda#fad1d0a651bf929c6c16fbf1f6ccfa7c +https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda#d73490214f536cccb5819e9873048c92 +https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda#77ea8dff5cf8550cc8f5629a6af56323 +https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda#c6f690e7d4abf562161477f14533cfd8 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda#4a6d410296d7e39f00bacdee7df046e9 https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda#12e6988845706b2cfbc3bc35c9a61a95 -https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda#6b0b27394cf439d0540f949190556860 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda#3a9e5b8a6f651ff14e74d896d8f04ab6 -https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda#8c50a4d15a8d4812af563a684d598910 -https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda#9ec22c7c544f4a4f6d660f0a3b0fd15c +https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda#e42d156a1e3dd5651c89d7606b5a4a45 +https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda#954881ce9897d01c7c2031fb93ed366b +https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda#96471c6bcf708822422bd9f78dbecc3b +https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda#bb4fe41bc0584a3f6d3026634170c330 https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda#51bb7010fc86f70eee639b4bb7a894f5 +https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda#32ddb97f897740641d8d46a829ce1704 https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda#1a2a0cd3153464fee6646f3dd6dad9b8 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 -https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda#564517a8cbd095cff75eb996d33d2b7e -https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 -https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda#9e49ec2a61d02623b379dc332eb6889d +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda#f54aeebefb5c5ff84eca4fb05ca8aa3a https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda#7f2e286780f072ed750df46dc2631138 -https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda#da214ecd521a720a9d521c68047682dc -https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda#4531d2927578e7e254ff3bcf6457518c +https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda#693bb57e8f92120caa956898065f3627 https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda#0b5293a157c2b5cd513dd1b03d8d3aae https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2#e9a21aa4d5e3e5f1aed71e8cefd46b6a https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda#ed67c36f215b310412b2af935bf3e530 https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda#ae92aab42726eb29d16488924f7312cb -https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda#ce96c083829ab2727c942243ac93ffe0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda#14ad8defb307e1edb293c3fc9da8648f -https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda#2dbab1d281b7e1da05eee544cbdc8af6 -https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda#f907bb958910dc404647326ca80c263e -https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda#446ac3db6cb017e3dd067cc35cf51442 -https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda#b4537c98cb59f8725b0e1e65816b4a28 -https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda#7ef7c0f111dad1c8006504a0f1ccd820 -https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda#d471a5c3abc984b662d9bae3bb7fd8a5 +https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda#e9dffe1056994133616378309f932d77 +https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda#b6d90276c5aee9b4407dd94eb0cd40a8 +https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda#da3ce6140908b41fb8fb205104b54ae6 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda#d77e515e624f3edb33ac89997322b5a8 +https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda#c3a3cf9cf544bd621a18add719056529 +https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda#26155c2e3afafee809654f86f434c234 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda#7e1729554e209627636a0f6fabcdd115 https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda#4b31699e0ec5de64d5896e580389c9a1 -https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda#50c389a09b6b7babaef531eb7cb5e0ca -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda#4b4e36a91e7dabf7345b82d85767a7c3 +https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda#df069bea331c8486ac21814969301c1f +https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda#b083767b6c877e24ee597d93b87ab838 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda#126a2a61d276c4268f71adeef25bfc33 https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda#63ab3e0cf149917a08af38b2786320c0 -https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda#e50a2609159a3e336fe4092738c00687 +https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda#d12f659072132c9d16e497073fc1f68b https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda#f586ac1e56c8638b64f9c8122a7b8a67 -https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda#7a5806219d0f77ce8393375d040df065 -https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda#c97818016ebf8710a0f0cd6c29806493 +https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda#c38c5246d064ef16eba065d93c46f1c6 +https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda#c667c11d1e488a38220ede8a34441bff https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.5-hac6953d_0.conda#63b80ca78d29380fe69e69412dcbe4ac https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2#e77615e5141cad5a2acaa043d1cf0ca5 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2#3cdb89236358326adfce12be820a8af3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda#0086628487f8888df34f024a0a0d0289 -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda#f364272cb4c2f4ce2341067107b82865 -https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda#81458b3aed8ab8711951ec3c0c04e097 -https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda#ddcdbcc4fb8918767d6145239c1965bd -https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda#6e553df297f6e64668efb54302e0f139 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda#4d6c9925cdcda27e9d022e40eb3eac05 +https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda#28de2e073db9ca9b72858bee9fb6f571 +https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda#c82be18188e73e00064101a46e46e785 +https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda#cf4b0e7c4c78bb0662aed9b27c414a3c +https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda#84ec3f5b46f3076be49f2cf3f1cfbf02 https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda#41069afbb9fb02e6e19dd80b4a2c46e7 -https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda#aadc00cd5e330b5f7fb289446c23ab23 -https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda#5a6f6c00ef982a9bc83558d9ac8f64a0 -https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda#f7e7077802927590efc8bf7328208f12 -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda#7811f043944e010e54640918ea82cecd -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda#b2414908e43c442ddc68e6148774a304 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda#de9c380fea8634540db5fc8422888df1 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda#de1cbf145ecdc1d29af18e14eb267bca -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda#016b763e4776b4c2c536420a7e6a2349 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda#d866cc8dc37f101505e65a4372794631 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda#6ebefdc74cb700ec82cd6702125cc422 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda#6397395a4677d59bbd32c4f05bb8fa63 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda#24c9cf1dd8f6d6189102a136a731758c -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda#259bd0c788f447fe78aab69895365528 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda#ec121a4195acadad086f84719cc91430 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda#bdbf11f760f1a3b35d766e03cebd9c42 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda#4354ea9f30a8c5111403fa4b24a2ad66 -https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda#f2e2bdd5fd10493a525503b2f40c59eb -https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda#d8285bea2a350f63fab23bf460221f3f -https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda#c688853df9dcfed47200d0e28e5dfe11 -https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda#44b522426a11ab2afbd09b0746b0e4cd -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda#1e63d3866554a4d2e3d1cba5f21a2841 -https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda#05c1609de571f7a9a40e6d7d4116c21a -https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda#c306fd9cc90c0585171167d09135a827 +https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda#8ff4fa3ab0b63dc5b214a68839499e41 +https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 +https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda#c7b47c64af53e8ecee01d101eeab2342 +https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda#a908e463c710bd6b10a9eaa89fdf003c +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda#9511859bf5221238a2d3fb5322af01d5 +https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda#48502f34f5ba86c1ce192cb30f959dc9 +https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py312h22e1c76_0.conda#7956c7d65f87aecaba720af6088e72c3 +https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda#d8d07866ac3b5b6937213c89a1874f08 +https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda#9518ab7016cf4564778aef08b6bd8792 +https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda#25db2ea6b8fefce451369e2cc826f6f4 +https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda#85fcff96b59d3e3a812601d713931d4f +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda#70d82a64e6d07f4d6e07cae6b0bd4bd1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda#f1e2a8ded23cef03804c4edb2edfb986 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda#95d2d3baaa1e456ef65c713a5d99b815 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda#9e49f87d8f99dc9724f52b3fac904106 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda#a9712fae44d01d906e228c49235e3b89 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda#5c2d064181e686cf5cfac6f1a1ee4e91 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda#89addf0fc0f489fa0c076f1c8c0d62bf +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda#9b0a13989b35302e47da13842683804d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda#7b3680d3fd00e1f91d5faf9c97c7ae78 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda#ac43b516c128411f84f1e19c875998f1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda#11acf52cac790edcf087b89e83834f7d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda#e7f91b35e3aa7abe880fc9192a761fc0 https://conda.anaconda.org/conda-forge/linux-64/occt-7.7.2-novtk_h130ccc2_101.conda#4a7df4c1d4f8e053e232a08a674f5c9f -https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda#3e735ae06073894080acd78365e78936 -https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda#f12ca97c38833a5a179adc172155d15d -https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda#a9865c001fa2e03272895e23b10bc55f +https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda#6d8c86d0368625b6503d696db70ea041 +https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda#107fd9222d9f628608b07b69abba9420 +https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py312h3d1e6dc_7.conda#2a6b88dad299a75916628cc8ffef5019 https://conda.anaconda.org/conda-forge/linux-64/gmsh-4.12.2-h6b98cf8_0.conda#fe4f54ab589df77b84fecc3b7991fed6 -https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda#04fcd8b5da3c8c8cf17f6ba7e8f839f9 -https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda#bbc8dad387da810666640cb8609964df -https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py312h257dd4b_0.conda#3af74f7e6e3cc2c601451edb6922d839 diff --git a/locks/conda-ubuntu-latest-binary-p3.9.lock b/locks/conda-ubuntu-latest-binary-p3.9.lock index c71d0132..0c71116e 100644 --- a/locks/conda-ubuntu-latest-binary-p3.9.lock +++ b/locks/conda-ubuntu-latest-binary-p3.9.lock @@ -1,91 +1,64 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: ba55ac76de851f52993149a1cb636afc8ad1a951653fb405580a7bb42220ff8a +# input_hash: 3e58101bff1eb83e8bd8432d345f8a42de67caf96d1a08147806b56addda7831 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef +https://conda.anaconda.org/conda-forge/noarch/_sysroot_linux-64_curr_repodata_hack-3-h69a702a_16.conda#1c005af0c6ff22814b7c52ee448d4bea +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2#0c96522c6bdaed4b1566d11387caaf45 https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2#34893075a5c9e55cdafac56607368fc6 https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2#4d59c254e01d9cde7957100457e2d5fb -https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_1.conda#6185f640c43843e5ad6fd1c5372c3f80 -https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_17.conda#d731b543793afc0433c4fd593e693fce -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.84.0-ha770c72_2.conda#85d30a3fcc0f1cfc252776208af546a1 -https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h8bca6fd_105.conda#e12ce6b051085b8f27e239f5e5f5bce5 -https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_105.conda#b3c6062c84a8e172555ee104ea6a01ab -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a -https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda#d8d7293c5b37f39b2ac32940621c6592 +https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_2.conda#cbbe59391138ea5ad3658c76912e147f +https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-4_cp39.conda#bfe4b3259a8ac6cdf0037752904da6a7 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2#f766549260d6815b0c52253f1fb1bb29 -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda#d211c42b9ce49aee3734fdc828731689 -https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_17.conda#595db67e32b276298ff3d94d07d47fbf +https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-h4a8ded7_16.conda#ff7f38675b226cfb855aebfc32a13e31 +https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-12.3.0-h6b66f73_113.conda#7fc690ec9db2902e5ee90cebfdab31e7 +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda#ae061a5ed5f05818acdf9adab72c146d +https://conda.anaconda.org/conda-forge/noarch/libstdcxx-devel_linux-64-12.3.0-h6b66f73_113.conda#3706e34877bd82d04cb1e9e9baeb2739 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda#33084421a8c0af6aef1b439707f7662a https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2#fee5683a3f04bd15cbd8318b096a27ab -https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda#ccc940fddbc3fcd3d79cd4c654c4b5c4 -https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hdade7a5_3.conda#2d9a60578bc28469d9aeef9aea5520c3 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/aom-3.8.2-h59595ed_0.conda#625e1fed28a5139aed71b3a76117ef84 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.14-hd590300_0.conda#d44fe0d9a6971a4fb245be0055775d9d -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f +https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_16.conda#223fe8a3ff6d5e78484a9d58eb34d055 +https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-ha1999f0_7.conda#3f840c7ed70a96b5ebde8044b2f36f32 +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-h4852527_7.conda#df53aa8418f8c289ae9b9665986034f8 +https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hb3c18ed_9.conda#bb3fb8553a669828501e80d13b6bd744 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda#418c6ca5929a611cbd69204907a83995 -https://conda.anaconda.org/conda-forge/linux-64/fmt-10.2.1-h00ab1b0_0.conda#35ef8bc24bd34074ebae3c943d551728 https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2#ac7bc6a654f8f41b352b38f4051135f8 -https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.1-h59595ed_0.conda#8c0f4f71f5a59ceb0c6fa9f51501066d https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-h59595ed_2.conda#985f2f453fb72408d6b6f1be0f324033 -https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda#96f3b11872ef6fad973eac856cd2624f -https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda#e358c7c5f6824c272b5034b3816438a7 -https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff -https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 -https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda#9961b1f100c3b6852bd97c9233d06979 +https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.2-hd590300_0.conda#3bf7b9fd5a7136126e0234db4b87c8b6 +https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h1220068_1.conda#f8f0f0c4338bad5c34a4e9e11460481d https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-hd590300_3.conda#5aeabe88534ea4169d4c49998f293d6c https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2#a8832b479f93521a9e7b5b743803be51 -https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f -https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.1-cxx17_h59595ed_2.conda#75648bc5dd3b8eab22406876c24d81ec -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede -https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2#c965a5aa0d5c1c37ffc62dff36e28400 https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.20-hd590300_0.conda#8e88f9389f1165d7c0936fe40d9a9a79 https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-h59595ed_2.conda#172bcc51059416e7ce99e7b528cede83 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2#15345e56d527b330e1cacbdf58676e8f https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda#48f4330bfcd959c3cfb704d424903c82 -https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_5.conda#11d1ceacff40054d5a74b12975d76f20 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2#93840744a8552e9ebf6bb1a5dffc125a https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2#7245a044b4a1980ed83196176b78b73a https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.0-h59595ed_0.conda#01c76c6d71097a0f3bd8683a8f255123 -https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda#30de3fd9b3b602f7473f30e684eeea8c +https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda#b26e8aa824079e1be0294e7152ca4559 https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2#bb14fcb13341b81d5eb386423b9d2bac -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 +https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-hd590300_1001.conda#ec7398d21e2651e0dcb0044d03b9a339 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 https://conda.anaconda.org/conda-forge/linux-64/nettle-3.9.1-h7ab15ed_0.conda#2bf1915cc107738811368afcb0993a59 -https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda#da0ec11a6454ae19bff5b02ed881a2b1 https://conda.anaconda.org/conda-forge/linux-64/ocl-icd-2.3.2-hd590300_1.conda#c66f837ac65e4d1cdeb80e2a1d5fcc3d -https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2#22dad4df6e8630e8dff2428f6f6a7036 -https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab -https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2#37d4fdbb92d573c7d6ab6de74a666dc4 -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 -https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.0.0-h59595ed_0.conda#207e01ffa0eb2d2efb83fb6f46365a21 -https://conda.anaconda.org/conda-forge/linux-64/tzcode-2024a-h3f72095_0.conda#32146e34aaec3745a08b6f49af3f41b0 -https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-h59595ed_1.conda#c5edf07141147789784f89d5b4e4a9ad https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2#6c99772d483f566d59e25037fea2c4b1 -https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2#bcd1b3396ec6960cbc1d2855a9e60b2b https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2#4b230e8381279d76131116660f5a241a https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda#b462a33c0be1421532f28bfe8f4a7514 @@ -95,140 +68,135 @@ https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852 https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda#bce9f945da8ad2ae9b1d7165a64d0f87 https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2#b4a4381d54784606820704f7b5f05a15 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.10-ha9bf9b1_2.conda#ce2471034f5459a39636aacc292c96b6 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h4466546_2.conda#b0d9153fc7cfa8dc36b8703e1a59f5f3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.15-h4466546_2.conda#258194cedccd33fd8a7b95a8aa105015 -https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.18-h4466546_2.conda#8a04fc5a5ecaba31f66904b47dcc7797 +https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda#346722a0be40f6edc53f12640d301338 https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61 -https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_5.conda#e89827619e73df59496c708b94f6f3d5 +https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.2-hac33072_0.conda#621d814955342209dc8e7f87c41f1ba0 +https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda#c94a5994ef49749880a8139cf9afcbe1 +https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h59595ed_1003.conda#f87c7b7c2cb45f323ffbce941c78ab7c https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff https://conda.anaconda.org/conda-forge/linux-64/imath-3.1.11-hfc55251_0.conda#07268e57799c7ad50809cadc297a515e -https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 -https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.120-hd590300_0.conda#7c3071bdf1d28b331a06bda6e85ab607 +https://conda.anaconda.org/conda-forge/linux-64/jigsaw-0.9.14-hcb278e6_1.conda#8340e38597e909831c03aac47c88d754 +https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2#76bbff344f0134279f225174e9064c8f +https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda#c48fc56ec03229f294176923c3265c05 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-h661eb56_2.conda#dd197c968bf9760bba0031888d431ede +https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.122-h4ab18f5_0.conda#bbfc4dbe5e97b385ef088f354d65e563 https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-h59595ed_2.conda#b63d9b6da3653179a278077f0de20014 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 -https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-h01aab08_1018.conda#3eb5f16bcc8a02892199aa63555c731f +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.43-h2797004_0.conda#009981dd9cfcaa4dbfa25ffaed86bcae -https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 -https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda#41c69fba59d495e8cf5ffda48a607e35 -https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-h8917695_15.conda#20c3c14bc491f30daecaa6f73e2223ae -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda#866983a220e27a80cb75e85cb30466a1 +https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-hb8811af_13.conda#448dc960d50a75e8286b8427028ec56e +https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda#18aa975d2094c34aef978060ae7da7d8 https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda#33277193f5b92bad9fdd230eb700929c -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 +https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.14.1-hac33072_0.conda#cde393f461e0c169d9ffb2fc70f81c33 +https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.16-hd590300_0.conda#151cba22b85a989c2d6ef9633ffee1e4 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/openh264-2.4.1-h59595ed_0.conda#3dfcf61b8e78af08110f5229f79580af https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2#56ee94e34b71742bbdfa832c974e47a8 -https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda#8292dea9e022d9610a11fce5e0896ed8 +https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-h0f59acf_0.conda#3914f7ac1761dce57102c72ca7c35d01 +https://conda.anaconda.org/conda-forge/linux-64/pixman-0.43.2-h59595ed_0.conda#71004cbf7924e19c02746ccde9fd7123 +https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda#2c97dd90633508b422c11bd3018206ab +https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0.post20240409-hac33072_1.conda#d6e98530772fc26c112640461110d127 https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 -https://conda.anaconda.org/conda-forge/linux-64/s2n-1.4.8-h06160fa_0.conda#0240a49dffea6daea27aa388663edcab -https://conda.anaconda.org/conda-forge/linux-64/spdlog-1.12.0-hd2e6256_2.conda#f37afc6ce10d45b9fae2f55ddc635b9f +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f +https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.1.2-hac33072_0.conda#06c5dec4ebb47213b648a6c4dc8400d6 https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc +https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.8-hac33072_0.conda#d71d3a66528853c0a1ac2c02d79a0284 +https://conda.anaconda.org/conda-forge/linux-64/wayland-1.23.0-h5291e77_0.conda#c13ca0abd5d1d31d0eebcf86d51da8a4 +https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2#e7f6ed84d4623d52ee581325c1587a6b https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2#65ad6e1eb4aed2b0611855aff05e04f6 https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda#93ee23f12bc2e684548181256edd2cf6 -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.6-h96cd748_2.conda#cbf8138080ea12e9d9d66cf7c8bee325 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda#9ae35c3d96db2c94ce0cef86efdfa2cb -https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h95e488c_3.conda#413e326f8a01d041ffbfbb51cea46a93 -https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h6477408_3.conda#7a53f84c45bdf4656ba27b9e9ed68b3d -https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_5.conda#4d72ee7c82f8a9b2ecef4fcefa9acd19 -https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_5.conda#cddba8fd94e52012abea1caad722b9c2 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.2-h2aa1ff5_1.conda#3bf887827d1968275978361a6e405e4f -https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.0-hf2295e7_4.conda#0269d2b7fa89f4a37cdee5ad6161f6cc -https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.9.3-default_h554bfaf_1009.conda#f36ddc11ca46958197a45effdd286e45 -https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda#a356024784da6dfd4683dc5ecf45b155 +https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-h58ffeeb_13.conda#93325fff774c4cc8dcc8c65039cb4646 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-h661eb56_2.conda#02e41ab5834dcdcc8590cf29d9526f50 +https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda#6ea440297aacee4893f02ad759e6ffbc +https://conda.anaconda.org/conda-forge/linux-64/libkml-1.3.0-hbbc8833_1020.conda#6d76c5822cb38bc1ab5a06565c6cf626 +https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda#ae05ece66d3924ac3d48b4aa3fa96cec +https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-h08a7969_0.conda#6945825cebd2aeb16af4c69d97c32c13 +https://conda.anaconda.org/conda-forge/linux-64/librttopo-1.1.0-hc670b87_16.conda#3d9f3a2e5d7213c34997e4464d2f938c https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.6.0-h1dd3fc0_3.conda#66f03896ffbe1a110ffda05c7a856504 -https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.5-h0ab5242_0.conda#557396140c71eba588e96d597e0c61aa -https://conda.anaconda.org/conda-forge/linux-64/nss-3.98-h1d7d5a4_0.conda#54b56c2fdf973656b748e0378900ec13 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda#0ac9aff6010a7751961c8e4b863a40e7 +https://conda.anaconda.org/conda-forge/linux-64/minizip-4.0.7-h401b404_0.conda#4474532a312b2245c5c77f1176989b46 https://conda.anaconda.org/conda-forge/linux-64/openexr-3.2.2-haf962dd_1.conda#34e58e21fc28e404207d6ce4287da264 https://conda.anaconda.org/conda-forge/linux-64/python-3.9.19-h0755675_0_cpython.conda#d9ee3647fbd9e8595b8df759b2bbefb8 -https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda#8f70e36268dea8eb666ef14c29bd3cda -https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.45.2-h2c6b66d_0.conda#1423efca06ed343c1da0fc429bae0779 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-h8ee46fc_0.conda#077b6e8ad6a3ddb741fce2496dd01bec -https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-he635cd5_6.conda#58fc78e523e35a08423c913751a51fde -https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.1-hbfc29b2_7.conda#8476ec099649e9a6de52f7f4d916cd2a -https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_0.conda#fad1d0a651bf929c6c16fbf1f6ccfa7c +https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.46.0-h6d4b2fc_0.conda#77ea8dff5cf8550cc8f5629a6af56323 +https://conda.anaconda.org/conda-forge/noarch/wayland-protocols-1.36-hd8ed1ab_0.conda#c6f690e7d4abf562161477f14533cfd8 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.9-hb711507_1.conda#4a6d410296d7e39f00bacdee7df046e9 https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda#0f69b688f52ff6da70bccb7ff7001d1d https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda#12e6988845706b2cfbc3bc35c9a61a95 -https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h7389182_3.conda#6b0b27394cf439d0540f949190556860 -https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h617cb40_3.conda#3a9e5b8a6f651ff14e74d896d8f04ab6 -https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h95e488c_3.conda#8c50a4d15a8d4812af563a684d598910 -https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h4a1b8e8_3.conda#9ec22c7c544f4a4f6d660f0a3b0fd15c +https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h915e2ae_13.conda#e42d156a1e3dd5651c89d7606b5a4a45 +https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h9528a6a_9.conda#954881ce9897d01c7c2031fb93ed366b +https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-h59595ed_2.conda#219ba82e95d7614cf7140d2a4afc0926 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-h8f2110c_13.conda#96471c6bcf708822422bd9f78dbecc3b +https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-h2a574ab_13.conda#bb4fe41bc0584a3f6d3026634170c330 https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda#51bb7010fc86f70eee639b4bb7a894f5 +https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda#32ddb97f897740641d8d46a829ce1704 https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda#1a2a0cd3153464fee6646f3dd6dad9b8 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 -https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.1-h15f2491_0.conda#564517a8cbd095cff75eb996d33d2b7e -https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 -https://conda.anaconda.org/conda-forge/linux-64/libpq-16.2-h33b98f1_1.conda#9e49ec2a61d02623b379dc332eb6889d +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda#f54aeebefb5c5ff84eca4fb05ca8aa3a https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.2-h488ebb8_0.conda#7f2e286780f072ed750df46dc2631138 -https://conda.anaconda.org/conda-forge/noarch/setuptools-69.2.0-pyhd8ed1ab_0.conda#da214ecd521a720a9d521c68047682dc -https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.11.0-h00ab1b0_1.conda#4531d2927578e7e254ff3bcf6457518c +https://conda.anaconda.org/conda-forge/noarch/setuptools-70.3.0-pyhd8ed1ab_0.conda#693bb57e8f92120caa956898065f3627 https://conda.anaconda.org/conda-forge/noarch/wheel-0.43.0-pyhd8ed1ab_1.conda#0b5293a157c2b5cd513dd1b03d8d3aae https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda#82b6df12252e6f32402b96dacc656fec https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2#e9a21aa4d5e3e5f1aed71e8cefd46b6a https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.11-hd590300_0.conda#ed67c36f215b310412b2af935bf3e530 https://conda.anaconda.org/conda-forge/linux-64/xorg-libxt-1.3.0-hd590300_1.conda#ae92aab42726eb29d16488924f7312cb -https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.16-haed3651_8.conda#ce96c083829ab2727c942243ac93ffe0 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.3-hffff1cc_2.conda#14ad8defb307e1edb293c3fc9da8648f -https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.11.1-h91d86a7_1.conda#2dbab1d281b7e1da05eee544cbdc8af6 -https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-h3faef2a_0.conda#f907bb958910dc404647326ca80c263e -https://conda.anaconda.org/conda-forge/linux-64/cfitsio-4.4.0-hbdc6101_0.conda#446ac3db6cb017e3dd067cc35cf51442 -https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_0.conda#b4537c98cb59f8725b0e1e65816b4a28 -https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_0.conda#7ef7c0f111dad1c8006504a0f1ccd820 -https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_h4f84152_100.conda#d471a5c3abc984b662d9bae3bb7fd8a5 +https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.7.0-hd590300_1.conda#e9dffe1056994133616378309f932d77 +https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.0-hbb29018_2.conda#b6d90276c5aee9b4407dd94eb0cd40a8 +https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h915e2ae_13.conda#da3ce6140908b41fb8fb205104b54ae6 +https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h5877db1_9.conda#d77e515e624f3edb33ac89997322b5a8 +https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h915e2ae_13.conda#c3a3cf9cf544bd621a18add719056529 +https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-ha28b414_9.conda#26155c2e3afafee809654f86f434c234 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-nompi_hdf9ad27_105.conda#7e1729554e209627636a0f6fabcdd115 https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda#4b31699e0ec5de64d5896e580389c9a1 -https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1003.conda#50c389a09b6b7babaef531eb7cb5e0ca -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.22.0-h9be4e54_1.conda#4b4e36a91e7dabf7345b82d85767a7c3 +https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-ha6d2627_1004.conda#df069bea331c8486ac21814969301c1f +https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda#2b7b0d827c6447cc1d85dc06d5b5de46 https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda#b083767b6c877e24ee597d93b87ab838 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.0.0-h2e90f83_4.conda#126a2a61d276c4268f71adeef25bfc33 https://conda.anaconda.org/conda-forge/linux-64/libraw-0.21.1-h2a13503_2.conda#63ab3e0cf149917a08af38b2786320c0 -https://conda.anaconda.org/conda-forge/linux-64/libva-2.21.0-hd590300_0.conda#e50a2609159a3e336fe4092738c00687 +https://conda.anaconda.org/conda-forge/linux-64/libva-2.22.0-hb711507_0.conda#d12f659072132c9d16e497073fc1f68b https://conda.anaconda.org/conda-forge/noarch/pip-24.0-pyhd8ed1ab_0.conda#f586ac1e56c8638b64f9c8122a7b8a67 -https://conda.anaconda.org/conda-forge/linux-64/postgresql-16.2-h82ecc9d_1.conda#7a5806219d0f77ce8393375d040df065 -https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.0-h1d62c97_0.conda#c97818016ebf8710a0f0cd6c29806493 +https://conda.anaconda.org/conda-forge/linux-64/proj-9.4.1-hb784bbd_0.conda#c38c5246d064ef16eba065d93c46f1c6 +https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h434a139_3.conda#c667c11d1e488a38220ede8a34441bff https://conda.anaconda.org/conda-forge/linux-64/xerces-c-3.2.5-hac6953d_0.conda#63b80ca78d29380fe69e69412dcbe4ac https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2#e77615e5141cad5a2acaa043d1cf0ca5 -https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h7f98852_0.tar.bz2#3cdb89236358326adfce12be820a8af3 -https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.5-h4893938_0.conda#0086628487f8888df34f024a0a0d0289 -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.5.0-h94269e2_4.conda#f364272cb4c2f4ce2341067107b82865 -https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_0.conda#81458b3aed8ab8711951ec3c0c04e097 -https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-hea138e6_0.conda#ddcdbcc4fb8918767d6145239c1965bd -https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda#6e553df297f6e64668efb54302e0f139 +https://conda.anaconda.org/conda-forge/linux-64/xorg-libxmu-1.1.3-h4ab18f5_1.conda#4d6c9925cdcda27e9d022e40eb3eac05 +https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.7.0-h00ab1b0_1.conda#28de2e073db9ca9b72858bee9fb6f571 +https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.9-h9305793_1.conda#c82be18188e73e00064101a46e46e785 +https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.7.0-heb67821_1.conda#cf4b0e7c4c78bb0662aed9b27c414a3c +https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda#84ec3f5b46f3076be49f2cf3f1cfbf02 https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h4b96d29_20.conda#41069afbb9fb02e6e19dd80b4a2c46e7 -https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.1-h6cf1f90_16.conda#aadc00cd5e330b5f7fb289446c23ab23 -https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-8.3.0-h3d44ed6_0.conda#5a6f6c00ef982a9bc83558d9ac8f64a0 -https://conda.anaconda.org/conda-forge/linux-64/kealib-1.5.3-h2f55d51_0.conda#f7e7077802927590efc8bf7328208f12 -https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.22.0-hc7a4891_1.conda#7811f043944e010e54640918ea82cecd -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h9612171_113.conda#b2414908e43c442ddc68e6148774a304 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.0.0-hd5fc58b_4.conda#de9c380fea8634540db5fc8422888df1 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.0.0-hd5fc58b_4.conda#de1cbf145ecdc1d29af18e14eb267bca -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.0.0-h3ecfda7_4.conda#016b763e4776b4c2c536420a7e6a2349 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.0.0-h2e90f83_4.conda#d866cc8dc37f101505e65a4372794631 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.0.0-h2e90f83_4.conda#6ebefdc74cb700ec82cd6702125cc422 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.0.0-h3ecfda7_4.conda#6397395a4677d59bbd32c4f05bb8fa63 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.0.0-h757c851_4.conda#24c9cf1dd8f6d6189102a136a731758c -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.0.0-h757c851_4.conda#259bd0c788f447fe78aab69895365528 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.0.0-h59595ed_4.conda#ec121a4195acadad086f84719cc91430 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.0.0-hca94c1a_4.conda#bdbf11f760f1a3b35d766e03cebd9c42 -https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.0.0-h59595ed_4.conda#4354ea9f30a8c5111403fa4b24a2ad66 -https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h6f065fc_5.conda#f2e2bdd5fd10493a525503b2f40c59eb -https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py39h474f0d3_0.conda#aa265f5697237aa13cc10f53fa8acc4f -https://conda.anaconda.org/conda-forge/linux-64/poppler-24.03.0-h590f24d_0.conda#c688853df9dcfed47200d0e28e5dfe11 -https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.26.4-h58a74b7_3.conda#44b522426a11ab2afbd09b0746b0e4cd -https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.10.0-h00ab1b0_1.conda#1e63d3866554a4d2e3d1cba5f21a2841 -https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.3-he6dfbbe_0.conda#05c1609de571f7a9a40e6d7d4116c21a -https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h8fe9dca_1.conda#c306fd9cc90c0585171167d09135a827 +https://conda.anaconda.org/conda-forge/linux-64/geotiff-1.7.3-hf7fa9e8_1.conda#8ff4fa3ab0b63dc5b214a68839499e41 +https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda#33eded89024f21659b1975886a4acf70 +https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-9.0.0-hfac3d4d_0.conda#c7b47c64af53e8ecee01d101eeab2342 +https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h135f659_114.conda#a908e463c710bd6b10a9eaa89fdf003c +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-2024.2.0-h2da1b83_1.conda#9511859bf5221238a2d3fb5322af01d5 +https://conda.anaconda.org/conda-forge/linux-64/libspatialite-5.1.0-h15fa968_8.conda#48502f34f5ba86c1ce192cb30f959dc9 +https://conda.anaconda.org/conda-forge/linux-64/numpy-2.0.0-py39ha0965c0_0.conda#b411be2728ba5711fc9bcdb0efa2db71 +https://conda.anaconda.org/conda-forge/linux-64/compilers-1.7.0-ha770c72_1.conda#d8d07866ac3b5b6937213c89a1874f08 +https://conda.anaconda.org/conda-forge/linux-64/jasper-4.2.4-h536e39c_0.conda#9518ab7016cf4564778aef08b6bd8792 +https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-h39113c1_2.conda#25db2ea6b8fefce451369e2cc826f6f4 +https://conda.anaconda.org/conda-forge/linux-64/libgdal-core-3.9.1-h1d1841c_7.conda#85fcff96b59d3e3a812601d713931d4f +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.2.0-hb045406_1.conda#70d82a64e6d07f4d6e07cae6b0bd4bd1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-auto-plugin-2024.2.0-hb045406_1.conda#f1e2a8ded23cef03804c4edb2edfb986 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-hetero-plugin-2024.2.0-h5c03a75_1.conda#95d2d3baaa1e456ef65c713a5d99b815 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.2.0-h2da1b83_1.conda#9e49f87d8f99dc9724f52b3fac904106 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.2.0-h2da1b83_1.conda#a9712fae44d01d906e228c49235e3b89 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.2.0-he02047a_1.conda#5c2d064181e686cf5cfac6f1a1ee4e91 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-ir-frontend-2024.2.0-h5c03a75_1.conda#89addf0fc0f489fa0c076f1c8c0d62bf +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-onnx-frontend-2024.2.0-h07e8aee_1.conda#9b0a13989b35302e47da13842683804d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-paddle-frontend-2024.2.0-h07e8aee_1.conda#7b3680d3fd00e1f91d5faf9c97c7ae78 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.2.0-he02047a_1.conda#ac43b516c128411f84f1e19c875998f1 +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.2.0-h39126c6_1.conda#11acf52cac790edcf087b89e83834f7d +https://conda.anaconda.org/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.2.0-he02047a_1.conda#e7f91b35e3aa7abe880fc9192a761fc0 https://conda.anaconda.org/conda-forge/linux-64/occt-7.7.2-novtk_h130ccc2_101.conda#4a7df4c1d4f8e053e232a08a674f5c9f -https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.267-hb1af6a8_4.conda#3e735ae06073894080acd78365e78936 -https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.34.1-he84ddb8_0.conda#f12ca97c38833a5a179adc172155d15d -https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.1.1-gpl_hee4b679_107.conda#a9865c001fa2e03272895e23b10bc55f +https://conda.anaconda.org/conda-forge/linux-64/eccodes-2.36.0-h762793a_0.conda#6d8c86d0368625b6503d696db70ea041 +https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-7.0.1-gpl_h9be9148_104.conda#107fd9222d9f628608b07b69abba9420 +https://conda.anaconda.org/conda-forge/linux-64/gdal-3.9.1-py39h670d7db_7.conda#144d9b8d59f2895ae8f6e10296a4e538 https://conda.anaconda.org/conda-forge/linux-64/gmsh-4.12.2-h6b98cf8_0.conda#fe4f54ab589df77b84fecc3b7991fed6 -https://conda.anaconda.org/conda-forge/linux-64/tiledb-2.21.2-ha9641ad_0.conda#04fcd8b5da3c8c8cf17f6ba7e8f839f9 -https://conda.anaconda.org/conda-forge/linux-64/libgdal-3.8.5-h35436ae_0.conda#bbc8dad387da810666640cb8609964df -https://conda.anaconda.org/conda-forge/linux-64/gdal-3.8.5-py39he9866c7_0.conda#67bde20ef88d2915e3f7419e62e10991 diff --git a/locks/conda-ubuntu-latest-delft3d_mpich.lock b/locks/conda-ubuntu-latest-delft3d_mpich.lock index db203e05..2afde533 100644 --- a/locks/conda-ubuntu-latest-delft3d_mpich.lock +++ b/locks/conda-ubuntu-latest-delft3d_mpich.lock @@ -1,47 +1,47 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: cad8d1f79148f49e78f9988ad0845f02961bfe155e231cb1c4af55871d4945c0 +# input_hash: 9f6ed8d4eb8ba8d417b9951f0854b32315973f987cb44a5b7a64e842665f5c45 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-mpich.tar.bz2#c1fcff3417b5a22bbc4cf6e8c23648cf -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda#d211c42b9ce49aee3734fdc828731689 +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda#ae061a5ed5f05818acdf9adab72c146d https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61 https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.0-h846660c_100.conda#9c9c0749155aff3aa3b26b9fd5474806 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 -https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_mpich_h4ac58e2_101.conda#c5383c05b6ad083e3dae1bc1cecf014a -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_ha2c2bf8_0.conda#12662900b822f215d6f3d86a188824c9 -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h60ccfc9_13.conda#faabb8b346434d9aebdc3f96ee223a6b -https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hdf31df6_3.conda#f45b6b4f354ab994a508f959ca894d30 +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda#08a9265c637230c37cb1be4a6cad4536 +https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_100.conda#57413013e812d1a544e0b4d02ba868be +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.13.0-mpi_mpich_hdf74816_101.conda#530c4090cb7aaf239783e23167cbff80 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_h0f54ddc_5.conda#f55c36b28c66cd668e0974367ec02dc9 +https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h761946e_14.conda#ac6ab66e2aebf2964efe4228e98d4c31 +https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hae0ac1c_4.conda#190375cb969cb9eff866863b2feb17d3 https://conda.anaconda.org/gbrey/linux-64/delft3d4-65936-mpi_mpich_h238f900_9.tar.bz2#43b3d4e336342f7a525926a2b48aca18 diff --git a/locks/conda-ubuntu-latest-delft3d_openmpi.lock b/locks/conda-ubuntu-latest-delft3d_openmpi.lock index 28417486..240261a7 100644 --- a/locks/conda-ubuntu-latest-delft3d_openmpi.lock +++ b/locks/conda-ubuntu-latest-delft3d_openmpi.lock @@ -1,47 +1,47 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: a3f92b95b48b997002a61193541f2bca61994fc30e1a10c2efaa2c5a2c4db65f +# input_hash: 07295ea0299606d4bb76c408d347464374677f692ac921b74739aaf60e870b12 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-openmpi.tar.bz2#1dcc49e16749ff79ba2194fa5d4ca5e7 -https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda#d211c42b9ce49aee3734fdc828731689 +https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda#ae061a5ed5f05818acdf9adab72c146d https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2#73aaf86a425cc6e73fcf236a5a46396d -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda#53fb86322bdb89496d7579fe3f02fd61 https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda#08a9265c637230c37cb1be4a6cad4536 https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.6-hc5af2df_101.conda#f9a2ad0088ee38f396350515fa37d243 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_openmpi_hbcf1124_1.conda#5fbe5f8586dd06acb1804e8f67917020 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_h327c9cf_0.conda#10804f562d0cc3cd24c6ea867ad62ee8 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_hf5a2fd3_4.conda#68a52e59d1c1ffae2be9a578fe1d5f21 https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_openmpi_h958ee74_13.conda#6ed253a989a85fba7c19adf75bcb3769 https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_openmpi_hc1a8302_3.conda#236e1b6f0b67f95fd93b574260270cde https://conda.anaconda.org/gbrey/linux-64/delft3d4-65936-mpi_openmpi_h2ccf34e_9.tar.bz2#0eb7fcd31b942f257d05a67097129f43 diff --git a/locks/conda-ubuntu-latest-schism_mpich.lock b/locks/conda-ubuntu-latest-schism_mpich.lock index f894369c..901ba5de 100644 --- a/locks/conda-ubuntu-latest-schism_mpich.lock +++ b/locks/conda-ubuntu-latest-schism_mpich.lock @@ -1,58 +1,58 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 8a02eac2cafc7ba5330b091ddc893bbf3cb8ffce72cbcdc0059015e31b026617 +# input_hash: e1c15db7b8161416b2e210f261b9bd313a8bf6df8eac6c70bb99962df3cec410 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 +https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-mpich.tar.bz2#c1fcff3417b5a22bbc4cf6e8c23648cf https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2#562b26ba2e19059551a811e72ab7f793 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda#9ba5910c34210e7ad60736d172bbcd4c -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda#866983a220e27a80cb75e85cb30466a1 +https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda#18aa975d2094c34aef978060ae7da7d8 https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.2-h4dfa4b3_0.conda#0118c8a03e3dbbb6b348ef71e94ac7af -https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.0-h846660c_100.conda#9c9c0749155aff3aa3b26b9fd5474806 -https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda#2fdc314ee058eda0114738a9309d3683 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 -https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_mpich_h4ac58e2_101.conda#c5383c05b6ad083e3dae1bc1cecf014a -https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-h2a9763c_1005.tar.bz2#d32150ac4a75576e7d8043379e7f1059 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_ha2c2bf8_0.conda#12662900b822f215d6f3d86a188824c9 -https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h60ccfc9_13.conda#faabb8b346434d9aebdc3f96ee223a6b -https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hdf31df6_3.conda#f45b6b4f354ab994a508f959ca894d30 +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda#08a9265c637230c37cb1be4a6cad4536 +https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.8-hf5423f3_0.conda#322be9d39e030673e105b0abb320514e +https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_100.conda#57413013e812d1a544e0b4d02ba868be +https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda#ac68acfa8b558ed406c75e98d3428d7b +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.13.0-mpi_mpich_hdf74816_101.conda#530c4090cb7aaf239783e23167cbff80 +https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-h583469f_1006.conda#7bf58fa5868ae3cf8895deb430cc0810 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_h0f54ddc_5.conda#f55c36b28c66cd668e0974367ec02dc9 +https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h761946e_14.conda#ac6ab66e2aebf2964efe4228e98d4c31 +https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hae0ac1c_4.conda#190375cb969cb9eff866863b2feb17d3 https://conda.anaconda.org/gbrey/linux-64/pschism-5.9-mpi_mpich_py3.11_h20204e6_0.tar.bz2#3a9b7ca0d10f41a0176638c7f97dbefe diff --git a/locks/conda-ubuntu-latest-schism_openmpi.lock b/locks/conda-ubuntu-latest-schism_openmpi.lock index 23a66ecb..3b540ad1 100644 --- a/locks/conda-ubuntu-latest-schism_openmpi.lock +++ b/locks/conda-ubuntu-latest-schism_openmpi.lock @@ -1,58 +1,58 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 48b5206c3ba3e1a188a33d5e213e13c61eb751d0fd476da8a6e1875c9177d9e1 +# input_hash: 150e6d1481d7e7c34b45933f118e166be28a37011c47d5605f98ad6ad9c0a8e8 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 -https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda#2f4327a1cbe7f022401b236e915a5fef -https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda#7aca3059a1729aa76c597603f10b0dd3 -https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda#f6f6600d18a4047b54f803cf708b868a +https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 +https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-openmpi.tar.bz2#1dcc49e16749ff79ba2194fa5d4ca5e7 https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2#562b26ba2e19059551a811e72ab7f793 -https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda#d4ff227c46917d3b4565302a2bbb276b -https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda#69b8b6202a07720f448be700e300ccf4 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda#dcde58ff9a1f30b0037a2315d1846d1f -https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda#cc47e1facc155f91abd89b11e48e72ff +https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 +https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 -https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2#d645c6d2ac96843a2bfaccd2d62b3ac3 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda#7a6bd7a12a4bd359e2afe6c0fa1acace +https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda#6456c2620c990cd8dde2428a27ba0bc5 https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda#d66573916ffcf376178462f1b61c941e https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda#ea25936bb4080d843790b586850f82b8 https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda#30fd6e37fe21f86f4bd26d6ee73eeec7 +https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda#1cb187a157136398ddbaae90713e2498 https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc -https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda#f36c115f1ee199da648e0597ec2047ad -https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 +https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda#9ba5910c34210e7ad60736d172bbcd4c -https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda#97da8860a0da5413c7c98a3b3838a645 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda#9d731343cff6ee2e5a25c4a091bf8e2a -https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda#843bbb8ace1d64ac50d64639ff38b014 +https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 +https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3 +https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda#5e97e271911b8b2001a8b71860c32faa https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2#4d331e44109e3f0e19b4cb8f9b82f3e1 -https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda#e73e9cfd1191783392131e6238bdb3e9 +https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda#f4ca84fbd6d06b0a052fb2d5b96dde41 https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda#700ac6ea6d53d5510591c4344d5c989a -https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda#866983a220e27a80cb75e85cb30466a1 +https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda#18aa975d2094c34aef978060ae7da7d8 https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda#1f5a58e686b13bcfde88b93f547d23fe -https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda#6853448e9ca1cfd5f15382afd2a6d123 https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda#ac79812548e7e8cf61f7b0abdef01d3b +https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda#318b08df404f9c9be5712aaa5a6f0bb0 https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda#47d31b792659ce70f470b5c82fdfb7a4 +https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda#6b7dcc7349efd123d493d2dbe85a045f https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda#d453b98d9c83e71da0741bb0ff4d76bc -https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda#68c34ec6149623be41a1933ab996a209 -https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda#04b88013080254850d6c01ed54810589 -https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda#009521b7ed97cca25f8f997f9e745976 -https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda#cd95826dbd331ed1be26bdf401432844 -https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.2-h4dfa4b3_0.conda#0118c8a03e3dbbb6b348ef71e94ac7af +https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda#9653f1bf3766164d0e65fa723cabbc54 +https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda#4d056880988120e29d75bfff282e0f45 +https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54fe76ab3d0189acaef95156874db7f9 +https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 +https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda#08a9265c637230c37cb1be4a6cad4536 +https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.8-hf5423f3_0.conda#322be9d39e030673e105b0abb320514e https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.6-hc5af2df_101.conda#f9a2ad0088ee38f396350515fa37d243 -https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda#2fdc314ee058eda0114738a9309d3683 -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda#755c7f876815003337d2c61ff5d047e5 +https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda#ac68acfa8b558ed406c75e98d3428d7b +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_openmpi_hbcf1124_1.conda#5fbe5f8586dd06acb1804e8f67917020 https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-he9a3056_1005.tar.bz2#160999f9228e8aac87dc170f0810bc74 -https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_h327c9cf_0.conda#10804f562d0cc3cd24c6ea867ad62ee8 +https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_hf5a2fd3_4.conda#68a52e59d1c1ffae2be9a578fe1d5f21 https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_openmpi_h958ee74_13.conda#6ed253a989a85fba7c19adf75bcb3769 https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_openmpi_hc1a8302_3.conda#236e1b6f0b67f95fd93b574260270cde https://conda.anaconda.org/gbrey/linux-64/pschism-5.9-mpi_openmpi_py3.11_h76d1ad9_0.tar.bz2#5fa11d2b4eef83ce3dd8e6cc1f0db78f diff --git a/locks/delft3d_mpich.yml b/locks/delft3d_mpich.yml index 6a8bb931..e4a9338e 100644 --- a/locks/delft3d_mpich.yml +++ b/locks/delft3d_mpich.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: cad8d1f79148f49e78f9988ad0845f02961bfe155e231cb1c4af55871d4945c0 - osx-64: b82f40beb77e59119f37956589fa4602e19e0c78c7c4f4ea65854362c082439c + linux-64: 9f6ed8d4eb8ba8d417b9951f0854b32315973f987cb44a5b7a64e842665f5c45 + osx-64: 1c504486d6bfae743acbb5842f980eb85582e9e8650f930ce1e29563a9d7dd56 channels: - url: gbrey used_env_vars: [] @@ -52,36 +52,37 @@ package: category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -89,67 +90,71 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: delft3d4 @@ -220,7 +225,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -234,7 +239,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -246,19 +251,19 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_ha2c2bf8_0.conda + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_h0f54ddc_5.conda hash: - md5: 12662900b822f215d6f3d86a188824c9 - sha256: 9b859e76679b852f565d1a48c85cba3861a414bd96b28abd4d8e335926180657 + md5: f55c36b28c66cd668e0974367ec02dc9 + sha256: 3bb5f74aa83bba2fa2f73bfa42be900314b0b6fb81fc341130d454b9e8737618 category: main optional: false - name: hdf5 @@ -266,43 +271,45 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_h859952d_0.conda + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_hcca1a62_5.conda hash: - md5: 5d08d7ab5092bf13e8cdb05260231134 - sha256: 86fe18b489c284997d8e52e9a067ebd890416b89e33466fb59ffafdfa34324ec + md5: 1160f92c68a719ac3783f57615e8396b + sha256: e8f35be6d2ed65d2abf3b226416fbf578c874db5682dee0b08598eaf055eba42 category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: cc47e1facc155f91abd89b11e48e72ff - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda hash: - md5: 5cc301d759ec03f28328428e28f65591 - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 category: main optional: false - name: keyutils @@ -318,7 +325,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -326,25 +333,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: libaec @@ -373,49 +381,50 @@ package: category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libedit @@ -490,16 +499,16 @@ package: category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false - name: libgfortran @@ -515,27 +524,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -551,15 +560,15 @@ package: category: main optional: false - name: libgomp - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda hash: - md5: d211c42b9ce49aee3734fdc828731689 - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e + md5: ae061a5ed5f05818acdf9adab72c146d + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 category: main optional: false - name: libiconv @@ -617,22 +626,22 @@ package: bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' - libpnetcdf: '>=1.12.3,<1.12.4.0a0' + libpnetcdf: '>=1.13.0,<1.13.1.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h60ccfc9_13.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h761946e_14.conda hash: - md5: faabb8b346434d9aebdc3f96ee223a6b - sha256: 9bc17adcacb3dfab580f17001c4f336ba974b94f85704eae82e2bd79c4a9d204 + md5: ac6ab66e2aebf2964efe4228e98d4c31 + sha256: 715d3631f0f112cdb0f26aca3cb49c56d44056de90d375bd943b2ad6c8e139c4 category: main optional: false - name: libnetcdf @@ -640,26 +649,26 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libpnetcdf: '>=1.12.3,<1.12.4.0a0' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libpnetcdf: '>=1.13.0,<1.13.1.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_h5394c81_13.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_hc555b6a_14.conda hash: - md5: 5600e95d56823b3a9b8c161ed01d6d2c - sha256: a0f505bff2b19668074d3751aae5563c88202cc6db15bf4bb08b3a5a3d832f29 + md5: cbe0cd0343bb0b4fff298f5bb279edfd + sha256: cf4b2998938a1aabd5b6ff23ff530c53c703424a8f9a70090794e659ec016095 category: main optional: false - name: libnghttp2 @@ -671,7 +680,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -688,7 +697,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -697,7 +706,7 @@ package: category: main optional: false - name: libpnetcdf - version: 1.12.3 + version: 1.13.0 manager: conda platform: linux-64 dependencies: @@ -705,26 +714,27 @@ package: libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - mpich: '>=4.1.1,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_mpich_h4ac58e2_101.conda + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.13.0-mpi_mpich_hdf74816_101.conda hash: - md5: c5383c05b6ad083e3dae1bc1cecf014a - sha256: de6ebf584c20f32d2b9ddaa87fbe0c6016e047373a9afd97eb667d2dccd7be21 + md5: 530c4090cb7aaf239783e23167cbff80 + sha256: 89d8fa6ad6a04a3d74eed8e21acf285665e7495ee603050ad74a129dbdcfc18a category: main optional: false - name: libpnetcdf - version: 1.12.3 + version: 1.13.0 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libgfortran: 5.* - libgfortran5: '>=12.2.0' - mpich: '>=4.1.1,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_mpich_hb9078ee_101.conda + libgfortran5: '>=13.2.0' + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_mpich_hb9122ec_101.conda hash: - md5: 856f41af084f15f5f791884cf5fb6cbd - sha256: 1b00db4d3d3b4aa32963afdcc0d5a6d588b283e04839d45d9b2111a3b1a820e5 + md5: 4c23c5bb89b37dc0b93ba2702df2909f + sha256: afe4169b85a886e386c2e02603849e4091674e657058743170619ff8674307b3 category: main optional: false - name: libssh2 @@ -733,7 +743,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -746,7 +756,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -755,14 +765,15 @@ package: category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libuuid @@ -789,34 +800,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: - icu: '>=73.2,<74.0a0' + __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 08a9265c637230c37cb1be4a6cad4536 + sha256: 10e9e0ac52b9a516a17edbc07f8d559e23778e54f1a7721b2e0e8219284fed3b category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: - icu: '>=73.2,<74.0a0' + __osx: '>=10.13' + icu: '>=75.1,<76.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: ea1be6ecfe814da889e882c8b6ead79d + sha256: ed18a2d8d428c0b88d47751ebcc7cc4e6202f99c3948fffd776cba83c4f0dad3 category: main optional: false - name: libzip @@ -826,7 +839,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -840,7 +853,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -849,37 +862,39 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: lz4-c @@ -930,57 +945,59 @@ package: category: main optional: false - name: mpich - version: 4.2.0 + version: 4.2.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' mpi: '1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.0-h846660c_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_100.conda hash: - md5: 9c9c0749155aff3aa3b26b9fd5474806 - sha256: d7384f8d35b540e6353aff65969be18ddfbd66aa5b7354dfdda97b45ce4c9fb6 + md5: 57413013e812d1a544e0b4d02ba868be + sha256: 915e2f3f8ab95256ece47ff7021a9c531632515ba1118f2ab65087c4d9427ab0 category: main optional: false - name: mpich - version: 4.2.0 + version: 4.2.2 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' mpi: '1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.0-hd33e60e_100.conda + url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_100.conda hash: - md5: 83ef938eb262292fbf7c7a9eebec4d3c - sha256: 098f3e210ca7570ca3763dd50180d38ed83200bc61fab838f0afa2a02bfdb9e4 + md5: 6dad777cb5b2278bb1189dacbfb26e13 + sha256: aa9978ca5640cc4287f9b8b1a76ee6c20a07bf162f8c5878140e21a4fbfb0d3d category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: netcdf-fortran @@ -988,16 +1005,16 @@ package: manager: conda platform: linux-64 dependencies: - hdf5: '>=1.14.2,<1.14.4.0a0' + hdf5: '>=1.14.3,<1.14.4.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - mpich: '>=4.1.2,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hdf31df6_3.conda + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hae0ac1c_4.conda hash: - md5: f45b6b4f354ab994a508f959ca894d30 - sha256: 277e8f292f35a58f8bd3fd6c5cb557c643b2163334c3dcd0c80b6f861c64b96c + md5: 190375cb969cb9eff866863b2feb17d3 + sha256: 405106af97b871c082f747580327d29a13c90a2cccec0158e38e6ce0664de943 category: main optional: false - name: netcdf-fortran @@ -1005,65 +1022,68 @@ package: manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.2,<1.14.4.0a0' + __osx: '>=10.13' + hdf5: '>=1.14.3,<1.14.4.0a0' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - mpich: '>=4.1.2,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hb8007a8_3.conda + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hf8ca7cb_4.conda hash: - md5: 2706593eaf5f8a162a131041d60403bc - sha256: 3e7fccc29e64d9f59299467ff75a539da0eb3519fb84f22b46c484511379485b + md5: ba4f5eebb8e10a35409a1fb9e6a01fac + sha256: dd69ad500178eeca57868d98aad99c83f5d229e24d5850d793483ca4267e0e89 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: xz @@ -1090,53 +1110,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/delft3d_openmpi.yml b/locks/delft3d_openmpi.yml index 128fd6c2..c2b28314 100644 --- a/locks/delft3d_openmpi.yml +++ b/locks/delft3d_openmpi.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: a3f92b95b48b997002a61193541f2bca61994fc30e1a10c2efaa2c5a2c4db65f - osx-64: 997efc1e834ce9bcbf702927d24cf7c7c5c5eddd6321689b9b75a66af8aeeaae + linux-64: 07295ea0299606d4bb76c408d347464374677f692ac921b74739aaf60e870b12 + osx-64: 040fc88fa10ef67a9764c338d453926387a11cb5721885221f511475e05f68aa channels: - url: gbrey used_env_vars: [] @@ -52,36 +52,37 @@ package: category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -89,67 +90,71 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: delft3d4 @@ -220,7 +225,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -234,7 +239,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -246,19 +251,19 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0a0' openmpi: '>=4.1.6,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_h327c9cf_0.conda + openssl: '>=3.3.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_hf5a2fd3_4.conda hash: - md5: 10804f562d0cc3cd24c6ea867ad62ee8 - sha256: 6f0c03a315a2e8632149f31f1a541d8249b2fe057bb66555b008e171d744ece2 + md5: 68a52e59d1c1ffae2be9a578fe1d5f21 + sha256: 08e6f2c927a280e7cf01f626c56d100b4a042dfed24e2365d3e83e8c7887f0ea category: main optional: false - name: hdf5 @@ -266,43 +271,45 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0a0' openmpi: '>=4.1.6,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_h85372f7_0.conda + openssl: '>=3.3.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_3.conda hash: - md5: d48fe7358f08110326878ffc83864c3d - sha256: e5e2b165e02270e22ba9014625868904f1a4fb412fba6ac8227aa01a66581b1b + md5: 44653dc9db58a814697299150d2fde51 + sha256: 7ca3a936fb99627a8e054a7837ec5d290b65d854bc0a29f42ce6f040ee15421c category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: cc47e1facc155f91abd89b11e48e72ff - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda hash: - md5: 5cc301d759ec03f28328428e28f65591 - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 category: main optional: false - name: keyutils @@ -318,7 +325,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -326,25 +333,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: libaec @@ -373,49 +381,50 @@ package: category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libedit @@ -490,16 +499,16 @@ package: category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false - name: libgfortran @@ -515,27 +524,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -551,15 +560,15 @@ package: category: main optional: false - name: libgomp - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda hash: - md5: d211c42b9ce49aee3734fdc828731689 - sha256: 0d3d4b1b0134283ea02d58e8eb5accf3655464cf7159abf098cc694002f8d34e + md5: ae061a5ed5f05818acdf9adab72c146d + sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05 category: main optional: false - name: libiconv @@ -624,7 +633,7 @@ package: libstdcxx-ng: '>=12' libxml2: '>=2.12.2,<3.0.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openmpi: '>=4.1.6,<5.0a0' openssl: '>=3.2.0,<4.0a0' zlib: '' @@ -651,7 +660,7 @@ package: libpnetcdf: '>=1.12.3,<1.12.4.0a0' libxml2: '>=2.12.2,<3.0.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openmpi: '>=4.1.6,<5.0a0' openssl: '>=3.2.0,<4.0a0' zlib: '' @@ -671,7 +680,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -688,7 +697,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -733,7 +742,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -746,7 +755,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -755,14 +764,15 @@ package: category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libuuid @@ -789,34 +799,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: - icu: '>=73.2,<74.0a0' + __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 08a9265c637230c37cb1be4a6cad4536 + sha256: 10e9e0ac52b9a516a17edbc07f8d559e23778e54f1a7721b2e0e8219284fed3b category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: - icu: '>=73.2,<74.0a0' + __osx: '>=10.13' + icu: '>=75.1,<76.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: ea1be6ecfe814da889e882c8b6ead79d + sha256: ed18a2d8d428c0b88d47751ebcc7cc4e6202f99c3948fffd776cba83c4f0dad3 category: main optional: false - name: libzip @@ -826,7 +838,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -840,7 +852,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -849,37 +861,39 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: lz4-c @@ -930,26 +944,26 @@ package: category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: netcdf-fortran @@ -994,7 +1008,7 @@ package: libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpi: '1.0' zlib: '' url: https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.6-hc5af2df_101.conda @@ -1012,7 +1026,7 @@ package: libcxx: '>=16.0.6' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpi: '1.0' zlib: '' url: https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.6-h7406208_101.conda @@ -1022,53 +1036,55 @@ package: category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: xz @@ -1095,53 +1111,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/requirements-ci.txt b/locks/requirements-ci.txt index 46c154f4..6feae5a0 100644 --- a/locks/requirements-ci.txt +++ b/locks/requirements-ci.txt @@ -1,18 +1,18 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" -annotated-types==0.6.0 ; python_version >= "3.9" and python_version < "4.0" -anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0" +annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" -black==24.3.0 ; python_version >= "3.9" and python_version < "4" -bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" +black==24.4.2 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" -cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" +cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" -certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4" +certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.11.0 ; python_version >= "3.9" and python_version < "4" -cftime==1.6.3 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" click==8.1.7 ; python_version >= "3.9" and python_version < "4" @@ -22,77 +22,79 @@ colorama==0.4.6 ; python_version >= "3.9" and python_version < "4" and (sys_plat colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" -coverage[toml]==7.4.4 ; python_version >= "3.9" and python_version < "4" +coverage[toml]==7.6.0 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.4.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.6 ; python_version >= "3.9" and python_version < "4.0" +dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" -donfig==0.8.1.post0 ; python_version >= "3.9" and python_version < "4" -eccodes==1.7.0 ; python_version >= "3.9" and python_version < "4" +donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" +eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" erddapy==2.2.0 ; python_version >= "3.9" and python_version < "4.0" -exceptiongroup==1.2.0 ; python_version >= "3.9" and python_version < "3.11" +exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" execnet==2.1.1 ; python_version >= "3.9" and python_version < "4" f90nml==1.4.4 ; python_version >= "3.9" and python_version < "4" fasteners==0.19 ; python_version >= "3.9" and python_version < "4" and sys_platform != "emscripten" findlibs==0.0.5 ; python_version >= "3.9" and python_version < "4" -fiona==1.9.6 ; python_version >= "3.9" and python_version < "4" -fonttools==4.51.0 ; python_version >= "3.9" and python_version < "4" -fsspec==2024.3.1 ; python_version >= "3.9" and python_version < "4" -geopandas==0.14.3 ; python_version >= "3.9" and python_version < "4" -gmsh==4.12.2 ; python_version >= "3.9" and python_version < "4" +fonttools==4.53.1 ; python_version >= "3.9" and python_version < "4" +fsspec==2024.6.1 ; python_version >= "3.9" and python_version < "4" +geopandas==1.0.1 ; python_version >= "3.9" and python_version < "4" +gmsh==4.13.1 ; python_version >= "3.9" and python_version < "4" h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" -idna==3.6 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==7.1.0 ; python_version >= "3.9" and python_version < "3.12" +idna==3.7 ; python_version >= "3.9" and python_version < "4" +importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4" -jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4" -joblib==1.4.0 ; python_version >= "3.9" and python_version < "4" +jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" +joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" -limits==3.10.1 ; python_version >= "3.9" and python_version < "4.0" -llvmlite==0.42.0 ; python_version >= "3.9" and python_version < "4" +limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" +llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml==5.2.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.8.4 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.6.5 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" -packaging==24.0 ; python_version >= "3.9" and python_version < "4" -pandas==2.2.1 ; python_version >= "3.9" and python_version < "4" -partd==1.4.1 ; python_version >= "3.9" and python_version < "4" +packaging==24.1 ; python_version >= "3.9" and python_version < "4" +pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" +partd==1.4.2 ; python_version >= "3.9" and python_version < "4" pathspec==0.12.1 ; python_version >= "3.9" and python_version < "4" -pillow==10.3.0 ; python_version >= "3.9" and python_version < "4" -platformdirs==4.2.0 ; python_version >= "3.9" and python_version < "4" -pluggy==1.4.0 ; python_version >= "3.9" and python_version < "4" -psutil==5.9.8 ; python_version >= "3.9" and python_version < "4" +pillow==10.4.0 ; python_version >= "3.9" and python_version < "4" +platformdirs==4.2.2 ; python_version >= "3.9" and python_version < "4" +pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4" +psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" -pydantic-core==2.16.3 ; python_version >= "3.9" and python_version < "4.0" -pydantic==2.6.4 ; python_version >= "3.9" and python_version < "4.0" +pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" +pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" -pykdtree==1.3.11 ; python_version >= "3.9" and python_version < "4" -pyogrio==0.7.2 ; python_version >= "3.9" and python_version < "4" +pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" +pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" +pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.2 ; python_version >= "3.9" and python_version < "4" +pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4" -pytest-xdist==3.5.0 ; python_version >= "3.9" and python_version < "4" -pytest==8.1.1 ; python_version >= "3.9" and python_version < "4" +pytest-xdist==3.6.1 ; python_version >= "3.9" and python_version < "4" +pytest==8.2.2 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" -rasterio==1.3.9 ; python_version >= "3.9" and python_version < "4" -requests==2.31.0 ; python_version >= "3.9" and python_version < "4" +rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" +requests==2.32.3 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -scipy==1.13.0 ; python_version >= "3.9" and python_version < "4" -searvey==0.3.11 ; python_version >= "3.9" and python_version < "4.0" -setuptools==69.2.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.3 ; python_version >= "3.9" and python_version < "4" +scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" +searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" +setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" @@ -100,13 +102,13 @@ soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" srsly==2.4.8 ; python_version >= "3.9" and python_version < "4" tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.2 ; python_version >= "3.9" and python_version < "4" -typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "4.0" +tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" +typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" -urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4" +urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.3.0 ; python_version >= "3.9" and python_version < "4" -zarr==2.17.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.18.1 ; python_version >= "3.9" and python_version < "3.12" +xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" +zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/locks/requirements-full.txt b/locks/requirements-full.txt index 97bc820c..6c9c2560 100644 --- a/locks/requirements-full.txt +++ b/locks/requirements-full.txt @@ -1,26 +1,26 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" -annotated-types==0.6.0 ; python_version >= "3.9" and python_version < "4.0" -anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0" +annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" appnope==0.1.4 ; python_version >= "3.9" and python_version < "4" and platform_system == "Darwin" -apptools==5.2.1 ; python_version >= "3.9" and python_version < "4" +apptools==5.3.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi-bindings==21.2.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi==23.1.0 ; python_version >= "3.9" and python_version < "4" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" asttokens==2.4.1 ; python_version >= "3.9" and python_version < "4" attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" -babel==2.14.0 ; python_version >= "3.9" and python_version < "4" +babel==2.15.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" -black==24.3.0 ; python_version >= "3.9" and python_version < "4" +black==24.4.2 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" -bokeh==3.4.0 ; python_version >= "3.9" and python_version < "4" -bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" +bokeh==3.4.2 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" -cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" +cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" -certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4" +certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.11.0 ; python_version >= "3.9" and python_version < "4" -cftime==1.6.3 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" click==8.1.7 ; python_version >= "3.9" and python_version < "4" @@ -32,133 +32,136 @@ colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" comm==0.2.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" -coverage[toml]==7.4.4 ; python_version >= "3.9" and python_version < "4" +coverage[toml]==7.6.0 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.4.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.6 ; python_version >= "3.9" and python_version < "4.0" -datashader==0.16.0 ; python_version >= "3.9" and python_version < "4" -debugpy==1.8.1 ; python_version >= "3.9" and python_version < "4" +dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" +datashader==0.16.3 ; python_version >= "3.9" and python_version < "4" +debugpy==1.8.2 ; python_version >= "3.9" and python_version < "4" decorator==5.1.1 ; python_version >= "3.9" and python_version < "4" defusedxml==0.7.1 ; python_version >= "3.9" and python_version < "4" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" -donfig==0.8.1.post0 ; python_version >= "3.9" and python_version < "4" -eccodes==1.7.0 ; python_version >= "3.9" and python_version < "4" +donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" +eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" envisage==7.0.3 ; python_version >= "3.9" and python_version < "4" erddapy==2.2.0 ; python_version >= "3.9" and python_version < "4.0" -exceptiongroup==1.2.0 ; python_version >= "3.9" and python_version < "3.11" +exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" execnet==2.1.1 ; python_version >= "3.9" and python_version < "4" executing==2.0.1 ; python_version >= "3.9" and python_version < "4" f90nml==1.4.4 ; python_version >= "3.9" and python_version < "4" fasteners==0.19 ; python_version >= "3.9" and python_version < "4" and sys_platform != "emscripten" -fastjsonschema==2.19.1 ; python_version >= "3.9" and python_version < "4" +fastjsonschema==2.20.0 ; python_version >= "3.9" and python_version < "4" findlibs==0.0.5 ; python_version >= "3.9" and python_version < "4" -fiona==1.9.6 ; python_version >= "3.9" and python_version < "4" -fonttools==4.51.0 ; python_version >= "3.9" and python_version < "4" -fsspec==2024.3.1 ; python_version >= "3.9" and python_version < "4" -geopandas==0.14.3 ; python_version >= "3.9" and python_version < "4" +fonttools==4.53.1 ; python_version >= "3.9" and python_version < "4" +fsspec==2024.6.1 ; python_version >= "3.9" and python_version < "4" +geopandas==1.0.1 ; python_version >= "3.9" and python_version < "4" geoviews[recommended]==1.12.0 ; python_version >= "3.9" and python_version < "4" ghp-import==2.1.0 ; python_version >= "3.9" and python_version < "4" -gmsh==4.12.2 ; python_version >= "3.9" and python_version < "4" +gmsh==4.13.1 ; python_version >= "3.9" and python_version < "4" h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" -holoviews==1.18.3 ; python_version >= "3.9" and python_version < "4" +holoviews==1.19.1 ; python_version >= "3.9" and python_version < "4" html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" -hvplot==0.9.2 ; python_version >= "3.9" and python_version < "4" -idna==3.6 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==7.1.0 ; python_version >= "3.9" and python_version < "3.12" +hvplot==0.10.0 ; python_version >= "3.9" and python_version < "4" +idna==3.7 ; python_version >= "3.9" and python_version < "4" +importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4" ipydatawidgets==4.3.2 ; python_version >= "3.9" and python_version < "4" -ipykernel==6.29.4 ; python_version >= "3.9" and python_version < "4" -ipympl==0.9.3 ; python_version >= "3.9" and python_version < "4" +ipykernel==6.29.5 ; python_version >= "3.9" and python_version < "4" +ipympl==0.9.4 ; python_version >= "3.9" and python_version < "4" ipython-genutils==0.2.0 ; python_version >= "3.9" and python_version < "4" ipython==8.18.1 ; python_version >= "3.9" and python_version < "4" -ipywidgets==7.8.1 ; python_version >= "3.9" and python_version < "4" -itk-core==5.3.0 ; python_version >= "3.9" and python_version < "4" -itk-filtering==5.3.0 ; python_version >= "3.9" and python_version < "4" -itk-meshtopolydata==0.10.0 ; python_version >= "3.9" and python_version < "4" -itk-numerics==5.3.0 ; python_version >= "3.9" and python_version < "4" +ipywidgets==7.8.2 ; python_version >= "3.9" and python_version < "4" +itk-core==5.4.0 ; python_version >= "3.9" and python_version < "4" +itk-filtering==5.4.0 ; python_version >= "3.9" and python_version < "4" +itk-meshtopolydata==0.11.0 ; python_version >= "3.9" and python_version < "4" +itk-numerics==5.4.0 ; python_version >= "3.9" and python_version < "4" itkwidgets==0.32.6 ; python_version >= "3.9" and python_version < "4" jedi==0.19.1 ; python_version >= "3.9" and python_version < "4" -jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4" -joblib==1.4.0 ; python_version >= "3.9" and python_version < "4" +jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" +joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" jsonschema-specifications==2023.12.1 ; python_version >= "3.9" and python_version < "4" -jsonschema==4.21.1 ; python_version >= "3.9" and python_version < "4" -jupyter-client==8.6.1 ; python_version >= "3.9" and python_version < "4" +jsonschema==4.23.0 ; python_version >= "3.9" and python_version < "4" +jupyter-client==8.6.2 ; python_version >= "3.9" and python_version < "4" jupyter-core==5.7.2 ; python_version >= "3.9" and python_version < "4" jupyterlab-pygments==0.3.0 ; python_version >= "3.9" and python_version < "4" -jupyterlab-widgets==1.1.7 ; python_version >= "3.9" and python_version < "4" +jupyterlab-widgets==1.1.8 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" -limits==3.10.1 ; python_version >= "3.9" and python_version < "4.0" +limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" linkify-it-py==2.0.3 ; python_version >= "3.9" and python_version < "4" -llvmlite==0.42.0 ; python_version >= "3.9" and python_version < "4" +llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml==5.2.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4" markdown==3.6 ; python_version >= "3.9" and python_version < "4" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" -matplotlib-inline==0.1.6 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.8.4 ; python_version >= "3.9" and python_version < "4" -mayavi==4.8.1 ; python_version >= "3.9" and python_version < "4" -mdit-py-plugins==0.4.0 ; python_version >= "3.9" and python_version < "4" +matplotlib-inline==0.1.7 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" +mayavi==4.8.2 ; python_version >= "3.9" and python_version < "4" +mdit-py-plugins==0.4.1 ; python_version >= "3.9" and python_version < "4" mdurl==0.1.2 ; python_version >= "3.9" and python_version < "4" mergedeep==1.3.4 ; python_version >= "3.9" and python_version < "4" mistune==3.0.2 ; python_version >= "3.9" and python_version < "4" mkdocs-autorefs==1.0.1 ; python_version >= "3.9" and python_version < "4" +mkdocs-get-deps==0.2.0 ; python_version >= "3.9" and python_version < "4" mkdocs-material-extensions==1.3.1 ; python_version >= "3.9" and python_version < "4" -mkdocs-material==9.5.17 ; python_version >= "3.9" and python_version < "4" -mkdocs==1.5.3 ; python_version >= "3.9" and python_version < "4" -mkdocstrings==0.24.3 ; python_version >= "3.9" and python_version < "4" +mkdocs-material==9.5.29 ; python_version >= "3.9" and python_version < "4" +mkdocs==1.6.0 ; python_version >= "3.9" and python_version < "4" +mkdocstrings==0.25.1 ; python_version >= "3.9" and python_version < "4" multipledispatch==1.0.0 ; python_version >= "3.9" and python_version < "4" mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4" nbclient==0.10.0 ; python_version >= "3.9" and python_version < "4" -nbconvert==7.16.3 ; python_version >= "3.9" and python_version < "4" +nbconvert==7.16.4 ; python_version >= "3.9" and python_version < "4" nbformat==5.10.4 ; python_version >= "3.9" and python_version < "4" nest-asyncio==1.6.0 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.6.5 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" notebook==6.4.13 ; python_version >= "3.9" and python_version < "4" -numba==0.59.1 ; python_version >= "3.9" and python_version < "4" +numba==0.60.0 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" -packaging==24.0 ; python_version >= "3.9" and python_version < "4" +packaging==24.1 ; python_version >= "3.9" and python_version < "4" paginate==0.5.6 ; python_version >= "3.9" and python_version < "4" -pandas==2.2.1 ; python_version >= "3.9" and python_version < "4" +pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" pandocfilters==1.5.1 ; python_version >= "3.9" and python_version < "4" -panel==1.4.0 ; python_version >= "3.9" and python_version < "4" -param==2.1.0 ; python_version >= "3.9" and python_version < "4" +panel==1.4.4 ; python_version >= "3.9" and python_version < "4" +param==2.1.1 ; python_version >= "3.9" and python_version < "4" parso==0.8.4 ; python_version >= "3.9" and python_version < "4" -partd==1.4.1 ; python_version >= "3.9" and python_version < "4" +partd==1.4.2 ; python_version >= "3.9" and python_version < "4" pathspec==0.12.1 ; python_version >= "3.9" and python_version < "4" pexpect==4.9.0 ; python_version >= "3.9" and python_version < "4" and sys_platform != "win32" -pillow==10.3.0 ; python_version >= "3.9" and python_version < "4" -platformdirs==4.2.0 ; python_version >= "3.9" and python_version < "4" -pluggy==1.4.0 ; python_version >= "3.9" and python_version < "4" -pooch==1.8.1 ; python_version >= "3.9" and python_version < "4" +pillow==10.4.0 ; python_version >= "3.9" and python_version < "4" +platformdirs==4.2.2 ; python_version >= "3.9" and python_version < "4" +pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4" +pooch==1.8.2 ; python_version >= "3.9" and python_version < "4" prometheus-client==0.20.0 ; python_version >= "3.9" and python_version < "4" -prompt-toolkit==3.0.43 ; python_version >= "3.9" and python_version < "4" -psutil==5.9.8 ; python_version >= "3.9" and python_version < "4" +prompt-toolkit==3.0.47 ; python_version >= "3.9" and python_version < "4" +psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4" and (sys_platform != "win32" or os_name != "nt") pure-eval==0.2.2 ; python_version >= "3.9" and python_version < "4" -pyarrow==15.0.2 ; python_version >= "3.9" and python_version < "4" +pyarrow==16.1.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pyct==0.5.0 ; python_version >= "3.9" and python_version < "4" -pydantic-core==2.16.3 ; python_version >= "3.9" and python_version < "4.0" -pydantic==2.6.4 ; python_version >= "3.9" and python_version < "4.0" +pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" +pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" pyface==8.0.0 ; python_version >= "3.9" and python_version < "4" -pygments==2.17.2 ; python_version >= "3.9" and python_version < "4" -pykdtree==1.3.11 ; python_version >= "3.9" and python_version < "4" -pymdown-extensions==10.7.1 ; python_version >= "3.9" and python_version < "4" -pyogrio==0.7.2 ; python_version >= "3.9" and python_version < "4" +pygments==2.18.0 ; python_version >= "3.9" and python_version < "4" +pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" +pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" +pymdown-extensions==10.8.1 ; python_version >= "3.9" and python_version < "4" +pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.2 ; python_version >= "3.9" and python_version < "4" +pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4" -pytest-xdist==3.5.0 ; python_version >= "3.9" and python_version < "4" -pytest==8.1.1 ; python_version >= "3.9" and python_version < "4" +pytest-xdist==3.6.1 ; python_version >= "3.9" and python_version < "4" +pytest==8.2.2 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" pyviz-comms==3.0.2 ; python_version >= "3.9" and python_version < "4" @@ -166,19 +169,19 @@ pywin32==306 ; sys_platform == "win32" and platform_python_implementation != "Py pywinpty==2.0.13 ; python_version >= "3.9" and python_version < "4" and os_name == "nt" pyyaml-env-tag==0.1 ; python_version >= "3.9" and python_version < "4" pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" -pyzmq==25.1.2 ; python_version >= "3.9" and python_version < "4" -rasterio==1.3.9 ; python_version >= "3.9" and python_version < "4" -referencing==0.34.0 ; python_version >= "3.9" and python_version < "4" -regex==2023.12.25 ; python_version >= "3.9" and python_version < "4" -requests==2.31.0 ; python_version >= "3.9" and python_version < "4" +pyzmq==26.0.3 ; python_version >= "3.9" and python_version < "4" +rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" +referencing==0.35.1 ; python_version >= "3.9" and python_version < "4" +regex==2024.5.15 ; python_version >= "3.9" and python_version < "4" +requests==2.32.3 ; python_version >= "3.9" and python_version < "4" retrying==1.3.4 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -rpds-py==0.18.0 ; python_version >= "3.9" and python_version < "4" -scipy==1.13.0 ; python_version >= "3.9" and python_version < "4" -searvey==0.3.11 ; python_version >= "3.9" and python_version < "4.0" +rpds-py==0.19.0 ; python_version >= "3.9" and python_version < "4" +scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" +searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" send2trash==1.8.3 ; python_version >= "3.9" and python_version < "4" -setuptools==69.2.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.3 ; python_version >= "3.9" and python_version < "4" +setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" @@ -187,28 +190,28 @@ spatialpandas==0.4.10 ; python_version >= "3.9" and python_version < "4" srsly==2.4.8 ; python_version >= "3.9" and python_version < "4" stack-data==0.6.3 ; python_version >= "3.9" and python_version < "4" terminado==0.18.1 ; python_version >= "3.9" and python_version < "4" -tinycss2==1.2.1 ; python_version >= "3.9" and python_version < "4" +tinycss2==1.3.0 ; python_version >= "3.9" and python_version < "4" tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" -tornado==6.4 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.2 ; python_version >= "3.9" and python_version < "4" +tornado==6.4.1 ; python_version >= "3.9" and python_version < "4" +tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" traitlets==5.6.0 ; python_version >= "3.9" and python_version < "4" traits==6.4.3 ; python_version >= "3.9" and python_version < "4" traitsui==8.0.0 ; python_version >= "3.9" and python_version < "4" traittypes==0.2.1 ; python_version >= "3.9" and python_version < "4" -typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "4.0" +typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" uc-micro-py==1.0.3 ; python_version >= "3.9" and python_version < "4" -urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4" -vtk==9.3.0 ; python_version >= "3.9" and python_version < "4" -watchdog==4.0.0 ; python_version >= "3.9" and python_version < "4" +urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" +vtk==9.3.1 ; python_version >= "3.9" and python_version < "4" +watchdog==4.0.1 ; python_version >= "3.9" and python_version < "4" wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" -widgetsnbextension==3.6.6 ; python_version >= "3.9" and python_version < "4" +widgetsnbextension==3.6.7 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.3.0 ; python_version >= "3.9" and python_version < "4" -xyzservices==2024.4.0 ; python_version >= "3.9" and python_version < "4" -zarr==2.17.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.18.1 ; python_version >= "3.9" and python_version < "3.12" -zstandard==0.22.0 ; python_version >= "3.9" and python_version < "4" +xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +xyzservices==2024.6.0 ; python_version >= "3.9" and python_version < "4" +zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" +zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" +zstandard==0.23.0 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements-viz.txt b/locks/requirements-viz.txt index 734ab644..a59e60b5 100644 --- a/locks/requirements-viz.txt +++ b/locks/requirements-viz.txt @@ -1,8 +1,8 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" -annotated-types==0.6.0 ; python_version >= "3.9" and python_version < "4.0" -anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0" +annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" appnope==0.1.4 ; python_version >= "3.9" and python_version < "4" and platform_system == "Darwin" -apptools==5.2.1 ; python_version >= "3.9" and python_version < "4" +apptools==5.3.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi-bindings==21.2.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi==23.1.0 ; python_version >= "3.9" and python_version < "4" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" @@ -10,13 +10,13 @@ asttokens==2.4.1 ; python_version >= "3.9" and python_version < "4" attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" -bokeh==3.4.0 ; python_version >= "3.9" and python_version < "4" -bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" -cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" -certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4" +bokeh==3.4.2 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" +cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" +certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.11.0 ; python_version >= "3.9" and python_version < "4" -cftime==1.6.3 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" click==8.1.7 ; python_version >= "3.9" and python_version < "4" @@ -29,113 +29,115 @@ comm==0.2.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.4.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.6 ; python_version >= "3.9" and python_version < "4.0" -datashader==0.16.0 ; python_version >= "3.9" and python_version < "4" -debugpy==1.8.1 ; python_version >= "3.9" and python_version < "4" +dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" +datashader==0.16.3 ; python_version >= "3.9" and python_version < "4" +debugpy==1.8.2 ; python_version >= "3.9" and python_version < "4" decorator==5.1.1 ; python_version >= "3.9" and python_version < "4" defusedxml==0.7.1 ; python_version >= "3.9" and python_version < "4" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" -donfig==0.8.1.post0 ; python_version >= "3.9" and python_version < "4" -eccodes==1.7.0 ; python_version >= "3.9" and python_version < "4" +donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" +eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" envisage==7.0.3 ; python_version >= "3.9" and python_version < "4" erddapy==2.2.0 ; python_version >= "3.9" and python_version < "4.0" -exceptiongroup==1.2.0 ; python_version >= "3.9" and python_version < "3.11" +exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" executing==2.0.1 ; python_version >= "3.9" and python_version < "4" f90nml==1.4.4 ; python_version >= "3.9" and python_version < "4" fasteners==0.19 ; python_version >= "3.9" and python_version < "4" and sys_platform != "emscripten" -fastjsonschema==2.19.1 ; python_version >= "3.9" and python_version < "4" +fastjsonschema==2.20.0 ; python_version >= "3.9" and python_version < "4" findlibs==0.0.5 ; python_version >= "3.9" and python_version < "4" -fiona==1.9.6 ; python_version >= "3.9" and python_version < "4" -fonttools==4.51.0 ; python_version >= "3.9" and python_version < "4" -fsspec==2024.3.1 ; python_version >= "3.9" and python_version < "4" -geopandas==0.14.3 ; python_version >= "3.9" and python_version < "4" +fonttools==4.53.1 ; python_version >= "3.9" and python_version < "4" +fsspec==2024.6.1 ; python_version >= "3.9" and python_version < "4" +geopandas==1.0.1 ; python_version >= "3.9" and python_version < "4" geoviews[recommended]==1.12.0 ; python_version >= "3.9" and python_version < "4" -gmsh==4.12.2 ; python_version >= "3.9" and python_version < "4" +gmsh==4.13.1 ; python_version >= "3.9" and python_version < "4" h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" -holoviews==1.18.3 ; python_version >= "3.9" and python_version < "4" +holoviews==1.19.1 ; python_version >= "3.9" and python_version < "4" html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" -hvplot==0.9.2 ; python_version >= "3.9" and python_version < "4" -idna==3.6 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==7.1.0 ; python_version >= "3.9" and python_version < "3.12" +hvplot==0.10.0 ; python_version >= "3.9" and python_version < "4" +idna==3.7 ; python_version >= "3.9" and python_version < "4" +importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" ipydatawidgets==4.3.2 ; python_version >= "3.9" and python_version < "4" -ipykernel==6.29.4 ; python_version >= "3.9" and python_version < "4" -ipympl==0.9.3 ; python_version >= "3.9" and python_version < "4" +ipykernel==6.29.5 ; python_version >= "3.9" and python_version < "4" +ipympl==0.9.4 ; python_version >= "3.9" and python_version < "4" ipython-genutils==0.2.0 ; python_version >= "3.9" and python_version < "4" ipython==8.18.1 ; python_version >= "3.9" and python_version < "4" -ipywidgets==7.8.1 ; python_version >= "3.9" and python_version < "4" -itk-core==5.3.0 ; python_version >= "3.9" and python_version < "4" -itk-filtering==5.3.0 ; python_version >= "3.9" and python_version < "4" -itk-meshtopolydata==0.10.0 ; python_version >= "3.9" and python_version < "4" -itk-numerics==5.3.0 ; python_version >= "3.9" and python_version < "4" +ipywidgets==7.8.2 ; python_version >= "3.9" and python_version < "4" +itk-core==5.4.0 ; python_version >= "3.9" and python_version < "4" +itk-filtering==5.4.0 ; python_version >= "3.9" and python_version < "4" +itk-meshtopolydata==0.11.0 ; python_version >= "3.9" and python_version < "4" +itk-numerics==5.4.0 ; python_version >= "3.9" and python_version < "4" itkwidgets==0.32.6 ; python_version >= "3.9" and python_version < "4" jedi==0.19.1 ; python_version >= "3.9" and python_version < "4" -jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4" -joblib==1.4.0 ; python_version >= "3.9" and python_version < "4" +jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" +joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" jsonschema-specifications==2023.12.1 ; python_version >= "3.9" and python_version < "4" -jsonschema==4.21.1 ; python_version >= "3.9" and python_version < "4" -jupyter-client==8.6.1 ; python_version >= "3.9" and python_version < "4" +jsonschema==4.23.0 ; python_version >= "3.9" and python_version < "4" +jupyter-client==8.6.2 ; python_version >= "3.9" and python_version < "4" jupyter-core==5.7.2 ; python_version >= "3.9" and python_version < "4" jupyterlab-pygments==0.3.0 ; python_version >= "3.9" and python_version < "4" -jupyterlab-widgets==1.1.7 ; python_version >= "3.9" and python_version < "4" +jupyterlab-widgets==1.1.8 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" -limits==3.10.1 ; python_version >= "3.9" and python_version < "4.0" +limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" linkify-it-py==2.0.3 ; python_version >= "3.9" and python_version < "4" -llvmlite==0.42.0 ; python_version >= "3.9" and python_version < "4" +llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml==5.2.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4" markdown==3.6 ; python_version >= "3.9" and python_version < "4" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" -matplotlib-inline==0.1.6 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.8.4 ; python_version >= "3.9" and python_version < "4" -mayavi==4.8.1 ; python_version >= "3.9" and python_version < "4" -mdit-py-plugins==0.4.0 ; python_version >= "3.9" and python_version < "4" +matplotlib-inline==0.1.7 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" +mayavi==4.8.2 ; python_version >= "3.9" and python_version < "4" +mdit-py-plugins==0.4.1 ; python_version >= "3.9" and python_version < "4" mdurl==0.1.2 ; python_version >= "3.9" and python_version < "4" mistune==3.0.2 ; python_version >= "3.9" and python_version < "4" multipledispatch==1.0.0 ; python_version >= "3.9" and python_version < "4" nbclient==0.10.0 ; python_version >= "3.9" and python_version < "4" -nbconvert==7.16.3 ; python_version >= "3.9" and python_version < "4" +nbconvert==7.16.4 ; python_version >= "3.9" and python_version < "4" nbformat==5.10.4 ; python_version >= "3.9" and python_version < "4" nest-asyncio==1.6.0 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.6.5 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" notebook==6.4.13 ; python_version >= "3.9" and python_version < "4" -numba==0.59.1 ; python_version >= "3.9" and python_version < "4" +numba==0.60.0 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" -packaging==24.0 ; python_version >= "3.9" and python_version < "4" -pandas==2.2.1 ; python_version >= "3.9" and python_version < "4" +packaging==24.1 ; python_version >= "3.9" and python_version < "4" +pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" pandocfilters==1.5.1 ; python_version >= "3.9" and python_version < "4" -panel==1.4.0 ; python_version >= "3.9" and python_version < "4" -param==2.1.0 ; python_version >= "3.9" and python_version < "4" +panel==1.4.4 ; python_version >= "3.9" and python_version < "4" +param==2.1.1 ; python_version >= "3.9" and python_version < "4" parso==0.8.4 ; python_version >= "3.9" and python_version < "4" -partd==1.4.1 ; python_version >= "3.9" and python_version < "4" +partd==1.4.2 ; python_version >= "3.9" and python_version < "4" pexpect==4.9.0 ; python_version >= "3.9" and python_version < "4" and sys_platform != "win32" -pillow==10.3.0 ; python_version >= "3.9" and python_version < "4" -platformdirs==4.2.0 ; python_version >= "3.9" and python_version < "4" -pooch==1.8.1 ; python_version >= "3.9" and python_version < "4" +pillow==10.4.0 ; python_version >= "3.9" and python_version < "4" +platformdirs==4.2.2 ; python_version >= "3.9" and python_version < "4" +pooch==1.8.2 ; python_version >= "3.9" and python_version < "4" prometheus-client==0.20.0 ; python_version >= "3.9" and python_version < "4" -prompt-toolkit==3.0.43 ; python_version >= "3.9" and python_version < "4" -psutil==5.9.8 ; python_version >= "3.9" and python_version < "4" +prompt-toolkit==3.0.47 ; python_version >= "3.9" and python_version < "4" +psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4" and (sys_platform != "win32" or os_name != "nt") pure-eval==0.2.2 ; python_version >= "3.9" and python_version < "4" -pyarrow==15.0.2 ; python_version >= "3.9" and python_version < "4" +pyarrow==16.1.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pyct==0.5.0 ; python_version >= "3.9" and python_version < "4" -pydantic-core==2.16.3 ; python_version >= "3.9" and python_version < "4.0" -pydantic==2.6.4 ; python_version >= "3.9" and python_version < "4.0" +pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" +pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" pyface==8.0.0 ; python_version >= "3.9" and python_version < "4" -pygments==2.17.2 ; python_version >= "3.9" and python_version < "4" -pykdtree==1.3.11 ; python_version >= "3.9" and python_version < "4" -pyogrio==0.7.2 ; python_version >= "3.9" and python_version < "4" +pygments==2.18.0 ; python_version >= "3.9" and python_version < "4" +pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" +pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" +pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.2 ; python_version >= "3.9" and python_version < "4" +pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" @@ -143,18 +145,18 @@ pyviz-comms==3.0.2 ; python_version >= "3.9" and python_version < "4" pywin32==306 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4" pywinpty==2.0.13 ; python_version >= "3.9" and python_version < "4" and os_name == "nt" pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" -pyzmq==25.1.2 ; python_version >= "3.9" and python_version < "4" -rasterio==1.3.9 ; python_version >= "3.9" and python_version < "4" -referencing==0.34.0 ; python_version >= "3.9" and python_version < "4" -requests==2.31.0 ; python_version >= "3.9" and python_version < "4" +pyzmq==26.0.3 ; python_version >= "3.9" and python_version < "4" +rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" +referencing==0.35.1 ; python_version >= "3.9" and python_version < "4" +requests==2.32.3 ; python_version >= "3.9" and python_version < "4" retrying==1.3.4 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -rpds-py==0.18.0 ; python_version >= "3.9" and python_version < "4" -scipy==1.13.0 ; python_version >= "3.9" and python_version < "4" -searvey==0.3.11 ; python_version >= "3.9" and python_version < "4.0" +rpds-py==0.19.0 ; python_version >= "3.9" and python_version < "4" +scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" +searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" send2trash==1.8.3 ; python_version >= "3.9" and python_version < "4" -setuptools==69.2.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.3 ; python_version >= "3.9" and python_version < "4" +setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" @@ -162,26 +164,26 @@ soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" spatialpandas==0.4.10 ; python_version >= "3.9" and python_version < "4" stack-data==0.6.3 ; python_version >= "3.9" and python_version < "4" terminado==0.18.1 ; python_version >= "3.9" and python_version < "4" -tinycss2==1.2.1 ; python_version >= "3.9" and python_version < "4" +tinycss2==1.3.0 ; python_version >= "3.9" and python_version < "4" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" -tornado==6.4 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.2 ; python_version >= "3.9" and python_version < "4" +tornado==6.4.1 ; python_version >= "3.9" and python_version < "4" +tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" traitlets==5.6.0 ; python_version >= "3.9" and python_version < "4" traits==6.4.3 ; python_version >= "3.9" and python_version < "4" traitsui==8.0.0 ; python_version >= "3.9" and python_version < "4" traittypes==0.2.1 ; python_version >= "3.9" and python_version < "4" -typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "4.0" +typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" uc-micro-py==1.0.3 ; python_version >= "3.9" and python_version < "4" -urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4" -vtk==9.3.0 ; python_version >= "3.9" and python_version < "4" +urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" +vtk==9.3.1 ; python_version >= "3.9" and python_version < "4" wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" -widgetsnbextension==3.6.6 ; python_version >= "3.9" and python_version < "4" +widgetsnbextension==3.6.7 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.3.0 ; python_version >= "3.9" and python_version < "4" -xyzservices==2024.4.0 ; python_version >= "3.9" and python_version < "4" -zarr==2.17.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.18.1 ; python_version >= "3.9" and python_version < "3.12" -zstandard==0.22.0 ; python_version >= "3.9" and python_version < "4" +xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +xyzservices==2024.6.0 ; python_version >= "3.9" and python_version < "4" +zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" +zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" +zstandard==0.23.0 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements.txt b/locks/requirements.txt index fcdfc618..8d2bb4d6 100644 --- a/locks/requirements.txt +++ b/locks/requirements.txt @@ -1,15 +1,15 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" -annotated-types==0.6.0 ; python_version >= "3.9" and python_version < "4.0" -anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0" +annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" -bottleneck==1.3.8 ; python_version >= "3.9" and python_version < "4" -cartopy==0.22.0 ; python_version >= "3.9" and python_version < "4" -certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4" +bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" +cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" +certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.11.0 ; python_version >= "3.9" and python_version < "4" -cftime==1.6.3 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" click==8.1.7 ; python_version >= "3.9" and python_version < "4" @@ -20,79 +20,81 @@ colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.4.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.6 ; python_version >= "3.9" and python_version < "4.0" +dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" -donfig==0.8.1.post0 ; python_version >= "3.9" and python_version < "4" -eccodes==1.7.0 ; python_version >= "3.9" and python_version < "4" +donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" +eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" erddapy==2.2.0 ; python_version >= "3.9" and python_version < "4.0" -exceptiongroup==1.2.0 ; python_version >= "3.9" and python_version < "3.11" +exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" f90nml==1.4.4 ; python_version >= "3.9" and python_version < "4" fasteners==0.19 ; python_version >= "3.9" and python_version < "4" and sys_platform != "emscripten" findlibs==0.0.5 ; python_version >= "3.9" and python_version < "4" -fiona==1.9.6 ; python_version >= "3.9" and python_version < "4" -fonttools==4.51.0 ; python_version >= "3.9" and python_version < "4" -fsspec==2024.3.1 ; python_version >= "3.9" and python_version < "4" -geopandas==0.14.3 ; python_version >= "3.9" and python_version < "4" -gmsh==4.12.2 ; python_version >= "3.9" and python_version < "4" +fonttools==4.53.1 ; python_version >= "3.9" and python_version < "4" +fsspec==2024.6.1 ; python_version >= "3.9" and python_version < "4" +geopandas==1.0.1 ; python_version >= "3.9" and python_version < "4" +gmsh==4.13.1 ; python_version >= "3.9" and python_version < "4" h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" -idna==3.6 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==7.1.0 ; python_version >= "3.9" and python_version < "3.12" +idna==3.7 ; python_version >= "3.9" and python_version < "4" +importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" -jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4" -joblib==1.4.0 ; python_version >= "3.9" and python_version < "4" +jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" +joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" -limits==3.10.1 ; python_version >= "3.9" and python_version < "4.0" -llvmlite==0.42.0 ; python_version >= "3.9" and python_version < "4" +limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" +llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml==5.2.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.8.4 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.6.5 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" -packaging==24.0 ; python_version >= "3.9" and python_version < "4" -pandas==2.2.1 ; python_version >= "3.9" and python_version < "4" -partd==1.4.1 ; python_version >= "3.9" and python_version < "4" -pillow==10.3.0 ; python_version >= "3.9" and python_version < "4" -platformdirs==4.2.0 ; python_version >= "3.9" and python_version < "4" -psutil==5.9.8 ; python_version >= "3.9" and python_version < "4" +packaging==24.1 ; python_version >= "3.9" and python_version < "4" +pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" +partd==1.4.2 ; python_version >= "3.9" and python_version < "4" +pillow==10.4.0 ; python_version >= "3.9" and python_version < "4" +platformdirs==4.2.2 ; python_version >= "3.9" and python_version < "4" +psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" -pydantic-core==2.16.3 ; python_version >= "3.9" and python_version < "4.0" -pydantic==2.6.4 ; python_version >= "3.9" and python_version < "4.0" +pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" +pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" -pykdtree==1.3.11 ; python_version >= "3.9" and python_version < "4" -pyogrio==0.7.2 ; python_version >= "3.9" and python_version < "4" +pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" +pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" +pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.2 ; python_version >= "3.9" and python_version < "4" +pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" -rasterio==1.3.9 ; python_version >= "3.9" and python_version < "4" -requests==2.31.0 ; python_version >= "3.9" and python_version < "4" +rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" +requests==2.32.3 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -scipy==1.13.0 ; python_version >= "3.9" and python_version < "4" -searvey==0.3.11 ; python_version >= "3.9" and python_version < "4.0" -setuptools==69.2.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.3 ; python_version >= "3.9" and python_version < "4" +scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" +searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" +setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.2 ; python_version >= "3.9" and python_version < "4" -typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "4.0" +tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" +typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" -urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4" +urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.3.0 ; python_version >= "3.9" and python_version < "4" -zarr==2.17.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.18.1 ; python_version >= "3.9" and python_version < "3.12" +xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" +zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/locks/schism_mpich.yml b/locks/schism_mpich.yml index 6c7200b8..87b1520f 100644 --- a/locks/schism_mpich.yml +++ b/locks/schism_mpich.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: 8a02eac2cafc7ba5330b091ddc893bbf3cb8ffce72cbcdc0059015e31b026617 - osx-64: 0fd1ba28bf855a79e52f86fb2c92a21ebe98d1c935274f57e50b96bbd4c492cd + linux-64: e1c15db7b8161416b2e210f261b9bd313a8bf6df8eac6c70bb99962df3cec410 + osx-64: 54746a047f64f0edf6c82a5f6ca0b9ff42b50f9f82d42bc6069abd21964abca2 channels: - url: gbrey used_env_vars: [] @@ -52,36 +52,37 @@ package: category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -89,67 +90,71 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: hdf4 @@ -160,7 +165,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -174,7 +179,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -186,19 +191,19 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_ha2c2bf8_0.conda + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_h0f54ddc_5.conda hash: - md5: 12662900b822f215d6f3d86a188824c9 - sha256: 9b859e76679b852f565d1a48c85cba3861a414bd96b28abd4d8e335926180657 + md5: f55c36b28c66cd668e0974367ec02dc9 + sha256: 3bb5f74aa83bba2fa2f73bfa42be900314b0b6fb81fc341130d454b9e8737618 category: main optional: false - name: hdf5 @@ -206,43 +211,45 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_h859952d_0.conda + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_hcca1a62_5.conda hash: - md5: 5d08d7ab5092bf13e8cdb05260231134 - sha256: 86fe18b489c284997d8e52e9a067ebd890416b89e33466fb59ffafdfa34324ec + md5: 1160f92c68a719ac3783f57615e8396b + sha256: e8f35be6d2ed65d2abf3b226416fbf578c874db5682dee0b08598eaf055eba42 category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: cc47e1facc155f91abd89b11e48e72ff - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda hash: - md5: 5cc301d759ec03f28328428e28f65591 - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 category: main optional: false - name: keyutils @@ -258,7 +265,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -266,25 +273,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: ld_impl_linux-64 @@ -292,10 +300,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 category: main optional: false - name: libaec @@ -324,49 +332,50 @@ package: category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libedit @@ -464,16 +473,16 @@ package: category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false - name: libgfortran @@ -489,27 +498,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -579,22 +588,22 @@ package: bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' - libpnetcdf: '>=1.12.3,<1.12.4.0a0' + libpnetcdf: '>=1.13.0,<1.13.1.0a0' libstdcxx-ng: '>=12' - libxml2: '>=2.12.2,<3.0.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h60ccfc9_13.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h761946e_14.conda hash: - md5: faabb8b346434d9aebdc3f96ee223a6b - sha256: 9bc17adcacb3dfab580f17001c4f336ba974b94f85704eae82e2bd79c4a9d204 + md5: ac6ab66e2aebf2964efe4228e98d4c31 + sha256: 715d3631f0f112cdb0f26aca3cb49c56d44056de90d375bd943b2ad6c8e139c4 category: main optional: false - name: libnetcdf @@ -602,26 +611,26 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libpnetcdf: '>=1.12.3,<1.12.4.0a0' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libpnetcdf: '>=1.13.0,<1.13.1.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - mpich: '>=4.1.2,<5.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + mpich: '>=4.2.1,<5.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_h5394c81_13.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_hc555b6a_14.conda hash: - md5: 5600e95d56823b3a9b8c161ed01d6d2c - sha256: a0f505bff2b19668074d3751aae5563c88202cc6db15bf4bb08b3a5a3d832f29 + md5: cbe0cd0343bb0b4fff298f5bb279edfd + sha256: cf4b2998938a1aabd5b6ff23ff530c53c703424a8f9a70090794e659ec016095 category: main optional: false - name: libnghttp2 @@ -633,7 +642,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -650,7 +659,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -671,7 +680,7 @@ package: category: main optional: false - name: libpnetcdf - version: 1.12.3 + version: 1.13.0 manager: conda platform: linux-64 dependencies: @@ -679,51 +688,53 @@ package: libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - mpich: '>=4.1.1,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_mpich_h4ac58e2_101.conda + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.13.0-mpi_mpich_hdf74816_101.conda hash: - md5: c5383c05b6ad083e3dae1bc1cecf014a - sha256: de6ebf584c20f32d2b9ddaa87fbe0c6016e047373a9afd97eb667d2dccd7be21 + md5: 530c4090cb7aaf239783e23167cbff80 + sha256: 89d8fa6ad6a04a3d74eed8e21acf285665e7495ee603050ad74a129dbdcfc18a category: main optional: false - name: libpnetcdf - version: 1.12.3 + version: 1.13.0 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libgfortran: 5.* - libgfortran5: '>=12.2.0' - mpich: '>=4.1.1,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_mpich_hb9078ee_101.conda + libgfortran5: '>=13.2.0' + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_mpich_hb9122ec_101.conda hash: - md5: 856f41af084f15f5f791884cf5fb6cbd - sha256: 1b00db4d3d3b4aa32963afdcc0d5a6d588b283e04839d45d9b2111a3b1a820e5 + md5: 4c23c5bb89b37dc0b93ba2702df2909f + sha256: afe4169b85a886e386c2e02603849e4091674e657058743170619ff8674307b3 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda hash: - md5: 866983a220e27a80cb75e85cb30466a1 - sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 18aa975d2094c34aef978060ae7da7d8 + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + __osx: '>=10.13' + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda hash: - md5: 086f56e13a96a6cfb1bf640505ae6b70 - sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 5dadfbc1a567fe6e475df4ce3148be09 + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 category: main optional: false - name: libssh2 @@ -732,7 +743,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -745,7 +756,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -754,14 +765,15 @@ package: category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libuuid @@ -789,34 +801,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: - icu: '>=73.2,<74.0a0' + __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 08a9265c637230c37cb1be4a6cad4536 + sha256: 10e9e0ac52b9a516a17edbc07f8d559e23778e54f1a7721b2e0e8219284fed3b category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: - icu: '>=73.2,<74.0a0' + __osx: '>=10.13' + icu: '>=75.1,<76.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: ea1be6ecfe814da889e882c8b6ead79d + sha256: ed18a2d8d428c0b88d47751ebcc7cc4e6202f99c3948fffd776cba83c4f0dad3 category: main optional: false - name: libzip @@ -826,7 +840,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -840,7 +854,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -849,50 +863,52 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.2-h4dfa4b3_0.conda + libzlib: '>=1.3.1,<2.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.8-hf5423f3_0.conda hash: - md5: 0118c8a03e3dbbb6b348ef71e94ac7af - sha256: a27691201ccf157e7b53390f29f66469957302a05abb22a6b6d6701673bba3bb + md5: 322be9d39e030673e105b0abb320514e + sha256: b620c51d91e55958c91014d89793cd705b1044b5ab157deae9bf8bdb2f11c5a3 category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: lz4-c @@ -966,57 +982,59 @@ package: category: main optional: false - name: mpich - version: 4.2.0 + version: 4.2.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' mpi: '1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.0-h846660c_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_100.conda hash: - md5: 9c9c0749155aff3aa3b26b9fd5474806 - sha256: d7384f8d35b540e6353aff65969be18ddfbd66aa5b7354dfdda97b45ce4c9fb6 + md5: 57413013e812d1a544e0b4d02ba868be + sha256: 915e2f3f8ab95256ece47ff7021a9c531632515ba1118f2ab65087c4d9427ab0 category: main optional: false - name: mpich - version: 4.2.0 + version: 4.2.2 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' mpi: '1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.0-hd33e60e_100.conda + url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_100.conda hash: - md5: 83ef938eb262292fbf7c7a9eebec4d3c - sha256: 098f3e210ca7570ca3763dd50180d38ed83200bc61fab838f0afa2a02bfdb9e4 + md5: 6dad777cb5b2278bb1189dacbfb26e13 + sha256: aa9978ca5640cc4287f9b8b1a76ee6c20a07bf162f8c5878140e21a4fbfb0d3d category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: netcdf-fortran @@ -1024,16 +1042,16 @@ package: manager: conda platform: linux-64 dependencies: - hdf5: '>=1.14.2,<1.14.4.0a0' + hdf5: '>=1.14.3,<1.14.4.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - mpich: '>=4.1.2,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hdf31df6_3.conda + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hae0ac1c_4.conda hash: - md5: f45b6b4f354ab994a508f959ca894d30 - sha256: 277e8f292f35a58f8bd3fd6c5cb557c643b2163334c3dcd0c80b6f861c64b96c + md5: 190375cb969cb9eff866863b2feb17d3 + sha256: 405106af97b871c082f747580327d29a13c90a2cccec0158e38e6ce0664de943 category: main optional: false - name: netcdf-fortran @@ -1041,40 +1059,42 @@ package: manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.2,<1.14.4.0a0' + __osx: '>=10.13' + hdf5: '>=1.14.3,<1.14.4.0a0' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - mpich: '>=4.1.2,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hb8007a8_3.conda + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hf8ca7cb_4.conda hash: - md5: 2706593eaf5f8a162a131041d60403bc - sha256: 3e7fccc29e64d9f59299467ff75a539da0eb3519fb84f22b46c484511379485b + md5: ba4f5eebb8e10a35409a1fb9e6a01fac + sha256: dd69ad500178eeca57868d98aad99c83f5d229e24d5850d793483ca4267e0e89 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: parmetis @@ -1082,13 +1102,13 @@ package: manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - libstdcxx-ng: '>=9.3.0' - mpich: '>=3.4,<5.0.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-h2a9763c_1005.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-h583469f_1006.conda hash: - md5: d32150ac4a75576e7d8043379e7f1059 - sha256: 5f070e718b6116718c58bd7831e18361096796b63c2ec394b2e497647d60bf1c + md5: 7bf58fa5868ae3cf8895deb430cc0810 + sha256: 33de7e554aa68a95695df94831225f594e58e7f9c422045e63d3e21ebb4708f1 category: main optional: false - name: parmetis @@ -1096,12 +1116,13 @@ package: manager: conda platform: osx-64 dependencies: - libcxx: '>=11.1.0' - mpich: '>=3.4,<5.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hb7fa8f8_1005.tar.bz2 + __osx: '>=10.13' + libcxx: '>=16' + mpich: '>=4.2.1,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hf3db91c_1006.conda hash: - md5: 93c34a9e24211ed262743444fd187f4d - sha256: 60bd23c0ad4e5e20eb31419878c76385909f0e3ec115db44f9b04d64efb3bff8 + md5: ddddedd3236007f63ae8d95f11e1379a + sha256: 0b7a663aa0ca8efc5329f85056e1402f2b9f6529295941421f7fafdcd22da601 category: main optional: false - name: pschism @@ -1149,52 +1170,53 @@ package: category: main optional: false - name: python - version: 3.11.8 + version: 3.11.9 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.45.1,<4.0a0' + libsqlite: '>=3.45.3,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libzlib: '>=1.2.13,<2.0.0a0' + ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda hash: - md5: 2fdc314ee058eda0114738a9309d3683 - sha256: f33559d7127b6a892854bc3b2b4be1406c3be9537d658cb13edae57c8c0b5a11 + md5: ac68acfa8b558ed406c75e98d3428d7b + sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 category: main optional: false - name: python - version: 3.11.8 + version: 3.11.9 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: '>=3.45.3,<4.0a0' + libzlib: '>=1.2.13,<2.0.0a0' + ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda hash: - md5: 22bda10a0f425564a538aed9a0e8a9df - sha256: 645dad20b46041ecd6a85eccbb3291fa1ad7921eea065c0081efff78c3d7e27a + md5: 612763bc5ede9552e4233ec518b9c9fb + sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c category: main optional: false - name: python_abi @@ -1245,28 +1267,29 @@ package: category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: tk @@ -1275,7 +1298,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc @@ -1287,7 +1310,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda hash: md5: bf830ba5afc507c6232d4ef0fb1a882d @@ -1340,53 +1363,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/locks/schism_openmpi.yml b/locks/schism_openmpi.yml index b66196a8..44047bfb 100644 --- a/locks/schism_openmpi.yml +++ b/locks/schism_openmpi.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: 48b5206c3ba3e1a188a33d5e213e13c61eb751d0fd476da8a6e1875c9177d9e1 - osx-64: ab8cce0da6c4b1606696d16bf797ce1590842e7b99455f130415f0ed06983877 + linux-64: 150e6d1481d7e7c34b45933f118e166be28a37011c47d5605f98ad6ad9c0a8e8 + osx-64: b3934b25e0dca20664536e385a2cb1583c1cbcb39555b67614e589025e35e3dc channels: - url: gbrey used_env_vars: [] @@ -52,36 +52,37 @@ package: category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.5-h0f2a231_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda hash: - md5: 009521b7ed97cca25f8f997f9e745976 - sha256: e2b15b017775d1bda8edbb1bc48e545e45364edefa4d926732fc5488cc600731 + md5: 54fe76ab3d0189acaef95156874db7f9 + sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 category: main optional: false - name: blosc - version: 1.21.5 + version: 1.21.6 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' + __osx: '>=10.13' + libcxx: '>=16' + libzlib: '>=1.3.1,<2.0a0' lz4-c: '>=1.9.3,<1.10.0a0' - snappy: '>=1.1.10,<2.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.5-heccf04b_0.conda + snappy: '>=1.2.0,<1.3.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda hash: - md5: 3003fa6dd18769db1a616982dcee5b40 - sha256: db629047f1721d5a6e3bd41b07c1a3bacd0dee70f4063b61db2aa46f19a0b8b4 + md5: 3e5669e51737d04f4806dd3e8c424663 + sha256: 65e5f5dd3d68ed0d9d35e79d64f8141283cad2b55dcd9a04480ceea0e436aca8 category: main optional: false - name: bzip2 @@ -89,67 +90,71 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda hash: - md5: 69b8b6202a07720f448be700e300ccf4 - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 62ee74e96c5ebb0af99386de58cf9553 + sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d category: main optional: false - name: bzip2 version: 1.0.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda hash: - md5: 6097a6ca9ada32699b5fc4312dd6ef18 - sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 + md5: 7ed4301d437b59045be7e051a0308211 + sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda hash: - md5: dcde58ff9a1f30b0037a2315d1846d1f - sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a + md5: 8024af1ee7078e37fa3101c0a0296af2 + sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 category: main optional: false - name: c-ares - version: 1.28.1 + version: 1.32.2 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda hash: - md5: d5eb7992227254c0e9a0ce71151f0079 - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: be4a9b58fcf1374aeb79e873c1166e19 + sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda hash: - md5: 2f4327a1cbe7f022401b236e915a5fef - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 23ab7665c5f63cfb9f1f6195256daac6 + sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446 category: main optional: false - name: ca-certificates - version: 2024.2.2 + version: 2024.7.4 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda hash: - md5: f2eacee8c33c43692f1ccfd33d0f50b1 - sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 + md5: 7df874a4b05b2d2b82826190170eaa0f + sha256: d16f46c489cb3192305c7d25b795333c5fc17bb0986de20598ed519f8c9cc9e4 category: main optional: false - name: hdf4 @@ -160,7 +165,7 @@ package: libgcc-ng: '>=12' libjpeg-turbo: '>=3.0.0,<4.0a0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda hash: md5: bd77f8da987968ec3927990495dc22e4 @@ -174,7 +179,7 @@ package: dependencies: libcxx: '>=15.0.7' libjpeg-turbo: '>=3.0.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda hash: md5: 7ce543bf38dbfae0de9af112ee178af2 @@ -186,19 +191,19 @@ package: manager: conda platform: linux-64 dependencies: - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' libgcc-ng: '>=12' libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0a0' openmpi: '>=4.1.6,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_h327c9cf_0.conda + openssl: '>=3.3.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_hf5a2fd3_4.conda hash: - md5: 10804f562d0cc3cd24c6ea867ad62ee8 - sha256: 6f0c03a315a2e8632149f31f1a541d8249b2fe057bb66555b008e171d744ece2 + md5: 68a52e59d1c1ffae2be9a578fe1d5f21 + sha256: 08e6f2c927a280e7cf01f626c56d100b4a042dfed24e2365d3e83e8c7887f0ea category: main optional: false - name: hdf5 @@ -206,43 +211,45 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.4.0,<9.0a0' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0a0' openmpi: '>=4.1.6,<5.0a0' - openssl: '>=3.2.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_h85372f7_0.conda + openssl: '>=3.3.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_3.conda hash: - md5: d48fe7358f08110326878ffc83864c3d - sha256: e5e2b165e02270e22ba9014625868904f1a4fb412fba6ac8227aa01a66581b1b + md5: 44653dc9db58a814697299150d2fde51 + sha256: 7ca3a936fb99627a8e054a7837ec5d290b65d854bc0a29f42ce6f040ee15421c category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda hash: - md5: cc47e1facc155f91abd89b11e48e72ff - sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 + md5: 8b189310083baabfb622af68fd9d3ae3 + sha256: 71e750d509f5fa3421087ba88ef9a7b9be11c53174af3aa4d06aff4c18b38e8e category: main optional: false - name: icu - version: '73.2' + version: '75.1' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda hash: - md5: 5cc301d759ec03f28328428e28f65591 - sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 + md5: d68d48a3060eb5abdc1cdc8e2a3a5966 + sha256: 2e64307532f482a0929412976c8450c719d558ba20c0962832132fd0d07ba7a7 category: main optional: false - name: keyutils @@ -258,7 +265,7 @@ package: category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: linux-64 dependencies: @@ -266,25 +273,26 @@ package: libedit: '>=3.1.20191231,<4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda hash: - md5: cd95826dbd331ed1be26bdf401432844 - sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 + md5: 3f43953b7d3fb3aaa1d0d0723d91e368 + sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238 category: main optional: false - name: krb5 - version: 1.21.2 + version: 1.21.3 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libedit: '>=3.1.20191231,<4.0a0' - openssl: '>=3.1.2,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda hash: - md5: 80505a68783f01dc8d7308c075261b2f - sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 + md5: d4765c524b1d91567886bde656fb514b + sha256: 83b52685a4ce542772f0892a0f05764ac69d57187975579a0835ff255ae3ef9c category: main optional: false - name: ld_impl_linux-64 @@ -292,10 +300,10 @@ package: manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: b80f2f396ca2c28b8c14c437a4ed1e74 + sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15 category: main optional: false - name: libaec @@ -324,49 +332,50 @@ package: category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: linux-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda hash: - md5: 755c7f876815003337d2c61ff5d047e5 - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: b8afb3e3cb3423cc445cf611ab95fdb0 + sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 category: main optional: false - name: libcurl - version: 8.7.1 + version: 8.8.0 manager: conda platform: osx-64 dependencies: - krb5: '>=1.21.2,<1.22.0a0' + krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.2.1,<4.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + libzlib: '>=1.2.13,<2.0a0' + openssl: '>=3.3.1,<4.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda hash: - md5: fa58e5eaa12006bc3289a71357bef167 - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: 11711bab5306a6534797a68b3c4c2bed + sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 category: main optional: false - name: libcxx - version: 16.0.6 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda hash: - md5: 7d6972792161077908b62971802f289a - sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 + md5: 4101cde4241c92aeac310d65e6791579 + sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 category: main optional: false - name: libedit @@ -464,16 +473,16 @@ package: category: main optional: false - name: libgcc-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: _libgcc_mutex: '0.1' _openmp_mutex: '>=4.5' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda hash: - md5: d4ff227c46917d3b4565302a2bbb276b - sha256: d32f78bfaac282cfe5205f46d558704ad737b8dbf71f9227788a5ca80facaba4 + md5: ca0fad6a41ddaef54a153b78eccb5037 + sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538 category: main optional: false - name: libgfortran @@ -489,27 +498,27 @@ package: category: main optional: false - name: libgfortran-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgfortran5: 13.2.0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_5.conda + libgfortran5: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda hash: - md5: e73e9cfd1191783392131e6238bdb3e9 - sha256: 238c16c84124d58307376715839aa152bd4a1bf5a043052938ad6c3137d30245 + md5: f4ca84fbd6d06b0a052fb2d5b96dde41 + sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9 category: main optional: false - name: libgfortran5 - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=13.2.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_5.conda + libgcc-ng: '>=14.1.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda hash: - md5: 7a6bd7a12a4bd359e2afe6c0fa1acace - sha256: ba8d94e8493222ce155bb264d9de4200e41498a458e866fedf444de809bde8b6 + md5: 6456c2620c990cd8dde2428a27ba0bc5 + sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90 category: main optional: false - name: libgfortran5 @@ -586,7 +595,7 @@ package: libstdcxx-ng: '>=12' libxml2: '>=2.12.2,<3.0.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openmpi: '>=4.1.6,<5.0a0' openssl: '>=3.2.0,<4.0a0' zlib: '' @@ -613,7 +622,7 @@ package: libpnetcdf: '>=1.12.3,<1.12.4.0a0' libxml2: '>=2.12.2,<3.0.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openmpi: '>=4.1.6,<5.0a0' openssl: '>=3.2.0,<4.0a0' zlib: '' @@ -633,7 +642,7 @@ package: libev: '>=4.33,<5.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda hash: @@ -650,7 +659,7 @@ package: c-ares: '>=1.23.0,<2.0a0' libcxx: '>=16.0.6' libev: '>=4.33,<5.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.2.0,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda hash: @@ -702,28 +711,29 @@ package: category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.2-h2797004_0.conda + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda hash: - md5: 866983a220e27a80cb75e85cb30466a1 - sha256: 8cdbeb7902729e319510a82d7c642402981818702b58812af265ef55d1315473 + md5: 18aa975d2094c34aef978060ae7da7d8 + sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8 category: main optional: false - name: libsqlite - version: 3.45.2 + version: 3.46.0 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.2-h92b6c6a_0.conda + __osx: '>=10.13' + libzlib: '>=1.2.13,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda hash: - md5: 086f56e13a96a6cfb1bf640505ae6b70 - sha256: 320ec73a4e3dd377757a2595770b8137ec4583df4d7782472d76377cdbdc4543 + md5: 5dadfbc1a567fe6e475df4ce3148be09 + sha256: 63af1a9e3284c7e4952364bafe7267e41e2d9d8bcc0e85a4ea4b0ec02d3693f6 category: main optional: false - name: libssh2 @@ -732,7 +742,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: @@ -745,7 +755,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.1,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: @@ -754,14 +764,15 @@ package: category: main optional: false - name: libstdcxx-ng - version: 13.2.0 + version: 14.1.0 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_5.conda + dependencies: + libgcc-ng: 14.1.0 + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda hash: - md5: f6f6600d18a4047b54f803cf708b868a - sha256: a56c5b11f1e73a86e120e6141a42d9e935a99a2098491ac9e15347a1476ce777 + md5: 1cb187a157136398ddbaae90713e2498 + sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146 category: main optional: false - name: libuuid @@ -789,34 +800,36 @@ package: category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: linux-64 dependencies: - icu: '>=73.2,<74.0a0' + __glibc: '>=2.17,<3.0.a0' + icu: '>=75.1,<76.0a0' libgcc-ng: '>=12' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda hash: - md5: 6853448e9ca1cfd5f15382afd2a6d123 - sha256: c0bd693bb1a7e5aba388a0c79be16ff92e2411e03aaa920f94b4b33bf099e254 + md5: 08a9265c637230c37cb1be4a6cad4536 + sha256: 10e9e0ac52b9a516a17edbc07f8d559e23778e54f1a7721b2e0e8219284fed3b category: main optional: false - name: libxml2 - version: 2.12.6 + version: 2.12.7 manager: conda platform: osx-64 dependencies: - icu: '>=73.2,<74.0a0' + __osx: '>=10.13' + icu: '>=75.1,<76.0a0' libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.3.1,<2.0a0' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.7-heaf3512_4.conda hash: - md5: bd85e0ca9e1ffaadc3b56079fd956035 - sha256: 07a5dc7316d4c1ff3d924df6a76e6a13380d702fa5b3b1889e56d0672e5b8201 + md5: ea1be6ecfe814da889e882c8b6ead79d + sha256: ed18a2d8d428c0b88d47751ebcc7cc4e6202f99c3948fffd776cba83c4f0dad3 category: main optional: false - name: libzip @@ -826,7 +839,7 @@ package: dependencies: bzip2: '>=1.0.8,<2.0a0' libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/libzip-1.10.1-h2629f0a_3.conda hash: @@ -840,7 +853,7 @@ package: platform: osx-64 dependencies: bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' openssl: '>=3.1.2,<4.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/libzip-1.10.1-hc158999_3.conda hash: @@ -849,50 +862,52 @@ package: category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda hash: - md5: f36c115f1ee199da648e0597ec2047ad - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: 57d7dc60e9325e3de37ff8dffd18e814 + sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d category: main optional: false - name: libzlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda hash: - md5: 4a3ad23f6e16f99c04e166767193d700 - sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 + md5: b7575b5aa92108dcc9aaab0f05f2dbce + sha256: 80a62db652b1da0ccc100812a1d86e94f75028968991bfb17f9536f3aa72d91d category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.2-h4dfa4b3_0.conda + libzlib: '>=1.3.1,<2.0a0' + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.8-hf5423f3_0.conda hash: - md5: 0118c8a03e3dbbb6b348ef71e94ac7af - sha256: a27691201ccf157e7b53390f29f66469957302a05abb22a6b6d6701673bba3bb + md5: 322be9d39e030673e105b0abb320514e + sha256: b620c51d91e55958c91014d89793cd705b1044b5ab157deae9bf8bdb2f11c5a3 category: main optional: false - name: llvm-openmp - version: 18.1.2 + version: 18.1.8 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.2-hb6ac08f_0.conda + dependencies: + __osx: '>=10.13' + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda hash: - md5: e7f7e91cfabd8c7172c9ae405214dd68 - sha256: dc40b678f5be2caf4e89ee3dc9037399d0bcd46543bc258dc46e1b92d241c6a6 + md5: 2c3c6c8aaf8728f87326964a82fdc7d8 + sha256: 0fd74128806bd839c7a9aa343faf265b94aece84f75f67f14b6246936138e61e category: main optional: false - name: lz4-c @@ -966,26 +981,26 @@ package: category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda hash: - md5: 97da8860a0da5413c7c98a3b3838a645 - sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 + md5: fcea371545eda051b6deafb24889fc69 + sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586 category: main optional: false - name: ncurses - version: 6.4.20240210 + version: '6.5' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda hash: - md5: 50f28c512e9ad78589e3eab34833f762 - sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 + md5: 02a888433d165c99bf09784a7b14d900 + sha256: 6ecc73db0e49143092c0934355ac41583a5d5a48c6914c5f6ca48e562d3a4b79 category: main optional: false - name: netcdf-fortran @@ -1030,7 +1045,7 @@ package: libgfortran-ng: '' libgfortran5: '>=12.3.0' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpi: '1.0' zlib: '' url: https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.6-hc5af2df_101.conda @@ -1048,7 +1063,7 @@ package: libcxx: '>=16.0.6' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' mpi: '1.0' zlib: '' url: https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.6-h7406208_101.conda @@ -1058,28 +1073,29 @@ package: category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: linux-64 dependencies: ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.2.1-hd590300_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda hash: - md5: 9d731343cff6ee2e5a25c4a091bf8e2a - sha256: 2c689444ed19a603be457284cf2115ee728a3fafb7527326e96054dee7cdc1a7 + md5: b1e9d076f14e8d776213fd5047b4c3d9 + sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 category: main optional: false - name: openssl - version: 3.2.1 + version: 3.3.1 manager: conda platform: osx-64 dependencies: + __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.2.1-hd75f5a5_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda hash: - md5: 570a6f04802df580be529f3a72d2bbf7 - sha256: 7ae0ac6a1673584a8a380c2ff3d46eca48ed53bc7174c0d4eaa0dd2f247a0984 + md5: d838ffe9ec3c6d971f110e04487466ff + sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 category: main optional: false - name: parmetis @@ -1154,52 +1170,53 @@ package: category: main optional: false - name: python - version: 3.11.8 + version: 3.11.9 manager: conda platform: linux-64 dependencies: bzip2: '>=1.0.8,<2.0a0' ld_impl_linux-64: '>=2.36.1' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.45.1,<4.0a0' + libsqlite: '>=3.45.3,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libzlib: '>=1.2.13,<2.0.0a0' + ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.8-hab00c5b_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda hash: - md5: 2fdc314ee058eda0114738a9309d3683 - sha256: f33559d7127b6a892854bc3b2b4be1406c3be9537d658cb13edae57c8c0b5a11 + md5: ac68acfa8b558ed406c75e98d3428d7b + sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 category: main optional: false - name: python - version: 3.11.8 + version: 3.11.9 manager: conda platform: osx-64 dependencies: + __osx: '>=10.9' bzip2: '>=1.0.8,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' + libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.45.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.4,<7.0a0' + libsqlite: '>=3.45.3,<4.0a0' + libzlib: '>=1.2.13,<2.0.0a0' + ncurses: '>=6.4.20240210,<7.0a0' openssl: '>=3.2.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.8-h9f0c242_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda hash: - md5: 22bda10a0f425564a538aed9a0e8a9df - sha256: 645dad20b46041ecd6a85eccbb3291fa1ad7921eea065c0081efff78c3d7e27a + md5: 612763bc5ede9552e4233ec518b9c9fb + sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c category: main optional: false - name: python_abi @@ -1250,28 +1267,29 @@ package: category: main optional: false - name: snappy - version: 1.2.0 + version: 1.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.0-hdb0a2a9_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda hash: - md5: 843bbb8ace1d64ac50d64639ff38b014 - sha256: bb87116b8c6198f6979b3d212e9af12e08e12f2bf09970d0f9b4582607648b22 + md5: 6b7dcc7349efd123d493d2dbe85a045f + sha256: dc7c8e0e8c3e8702aae81c52d940bfaabe756953ee51b1f1757e891bab62cf7f category: main optional: false - name: snappy - version: 1.1.10 + version: 1.2.1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.1.10-h225ccf5_0.conda + __osx: '>=10.13' + libcxx: '>=16' + url: https://conda.anaconda.org/conda-forge/osx-64/snappy-1.2.1-he1e6707_0.conda hash: - md5: 4320a8781f14cd959689b86e349f3b73 - sha256: 575915dc13152e446a84e2f88de70a14f8b6af1a870e708f9370bd4be105583b + md5: ddceef5df973c8ff7d6b32353c0cb358 + sha256: a979319cd4916f0e7450aa92bb3cf4c2518afa80be50de99f31d075e693a6dd9 category: main optional: false - name: tk @@ -1280,7 +1298,7 @@ package: platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda hash: md5: d453b98d9c83e71da0741bb0ff4d76bc @@ -1292,7 +1310,7 @@ package: manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libzlib: '>=1.2.13,<2.0.0a0' url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda hash: md5: bf830ba5afc507c6232d4ef0fb1a882d @@ -1345,53 +1363,55 @@ package: category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.3.1-h4ab18f5_1.conda hash: - md5: 68c34ec6149623be41a1933ab996a209 - sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b + md5: 9653f1bf3766164d0e65fa723cabbc54 + sha256: cee16ab07a11303de721915f0a269e8c7a54a5c834aa52f74b1cc3a59000ade8 category: main optional: false - name: zlib - version: 1.2.13 + version: 1.3.1 manager: conda platform: osx-64 dependencies: - libzlib: 1.2.13 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + __osx: '>=10.13' + libzlib: 1.3.1 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda hash: - md5: 75a8a98b1c4671c5d2897975731da42d - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 3ac9ef8975965f9698dbedd2a4cc5894 + sha256: 41bd5fef28b2755d637e3a8ea5c84010628392fbcf80c7e3d7370aaced7ee4fe category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda hash: - md5: 04b88013080254850d6c01ed54810589 - sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609 + md5: 4d056880988120e29d75bfff282e0f45 + sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b category: main optional: false - name: zstd - version: 1.5.5 + version: 1.5.6 manager: conda platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda + __osx: '>=10.9' + libzlib: '>=1.2.13,<2.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda hash: - md5: 80abc41d0c48b82fe0f04e7f42f5cb7e - sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c + md5: 4cb2cd56f039b129bb0e491c1164167e + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 category: main optional: false diff --git a/poetry.lock b/poetry.lock index 46f6037f..32c34e4e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "affine" @@ -17,24 +17,24 @@ test = ["pytest (>=4.6)", "pytest-cov"] [[package]] name = "annotated-types" -version = "0.6.0" +version = "0.7.0" description = "Reusable constraint types to use with typing.Annotated" optional = false python-versions = ">=3.8" files = [ - {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, - {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, + {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, + {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, ] [[package]] name = "anyio" -version = "4.3.0" +version = "4.4.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.8" files = [ - {file = "anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8"}, - {file = "anyio-4.3.0.tar.gz", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"}, + {file = "anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7"}, + {file = "anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94"}, ] [package.dependencies] @@ -61,24 +61,23 @@ files = [ [[package]] name = "apptools" -version = "5.2.1" +version = "5.3.0" description = "application tools" optional = true -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "apptools-5.2.1-py3-none-any.whl", hash = "sha256:d2c32c760bdab5689bba0761614904a00b784f80922ee3556cea98e3fa7ce0e9"}, - {file = "apptools-5.2.1.tar.gz", hash = "sha256:c6268f5dfcf3088bcaf76a0003e50b7774d01b5258d7199b410b4852ff2246e3"}, + {file = "apptools-5.3.0-py3-none-any.whl", hash = "sha256:d2a4ca30b66f7ba813a0f2489f34b0f3c1f7fe0ff7a3df0d7e87b8b3a569e7bd"}, + {file = "apptools-5.3.0.tar.gz", hash = "sha256:30580bf62a0d5dd616edd5e2b9958227633f35cb557c6860452a56809e6bd567"}, ] [package.dependencies] -configobj = "*" traits = ">=6.2.0" -traitsui = "*" [package.extras] docs = ["enthought-sphinx-theme", "sphinx"] -h5 = ["numpy", "pandas", "tables"] -persistence = ["numpy"] +gui = ["pyface", "traitsui"] +h5 = ["numpy (<2.0)", "pandas", "tables"] +persistence = ["numpy (<2.0)"] preferences = ["configobj"] test = ["importlib-resources (>=1.1.0)"] @@ -188,13 +187,13 @@ tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "p [[package]] name = "babel" -version = "2.14.0" +version = "2.15.0" description = "Internationalization utilities" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "Babel-2.14.0-py3-none-any.whl", hash = "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287"}, - {file = "Babel-2.14.0.tar.gz", hash = "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363"}, + {file = "Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb"}, + {file = "babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413"}, ] [package.extras] @@ -223,33 +222,33 @@ lxml = ["lxml"] [[package]] name = "black" -version = "24.3.0" +version = "24.4.2" description = "The uncompromising code formatter." optional = false python-versions = ">=3.8" files = [ - {file = "black-24.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7d5e026f8da0322b5662fa7a8e752b3fa2dac1c1cbc213c3d7ff9bdd0ab12395"}, - {file = "black-24.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9f50ea1132e2189d8dff0115ab75b65590a3e97de1e143795adb4ce317934995"}, - {file = "black-24.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2af80566f43c85f5797365077fb64a393861a3730bd110971ab7a0c94e873e7"}, - {file = "black-24.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:4be5bb28e090456adfc1255e03967fb67ca846a03be7aadf6249096100ee32d0"}, - {file = "black-24.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4f1373a7808a8f135b774039f61d59e4be7eb56b2513d3d2f02a8b9365b8a8a9"}, - {file = "black-24.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:aadf7a02d947936ee418777e0247ea114f78aff0d0959461057cae8a04f20597"}, - {file = "black-24.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c02e4ea2ae09d16314d30912a58ada9a5c4fdfedf9512d23326128ac08ac3d"}, - {file = "black-24.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:bf21b7b230718a5f08bd32d5e4f1db7fc8788345c8aea1d155fc17852b3410f5"}, - {file = "black-24.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:2818cf72dfd5d289e48f37ccfa08b460bf469e67fb7c4abb07edc2e9f16fb63f"}, - {file = "black-24.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4acf672def7eb1725f41f38bf6bf425c8237248bb0804faa3965c036f7672d11"}, - {file = "black-24.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7ed6668cbbfcd231fa0dc1b137d3e40c04c7f786e626b405c62bcd5db5857e4"}, - {file = "black-24.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:56f52cfbd3dabe2798d76dbdd299faa046a901041faf2cf33288bc4e6dae57b5"}, - {file = "black-24.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79dcf34b33e38ed1b17434693763301d7ccbd1c5860674a8f871bd15139e7837"}, - {file = "black-24.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e19cb1c6365fd6dc38a6eae2dcb691d7d83935c10215aef8e6c38edee3f77abd"}, - {file = "black-24.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65b76c275e4c1c5ce6e9870911384bff5ca31ab63d19c76811cb1fb162678213"}, - {file = "black-24.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:b5991d523eee14756f3c8d5df5231550ae8993e2286b8014e2fdea7156ed0959"}, - {file = "black-24.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c45f8dff244b3c431b36e3224b6be4a127c6aca780853574c00faf99258041eb"}, - {file = "black-24.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6905238a754ceb7788a73f02b45637d820b2f5478b20fec82ea865e4f5d4d9f7"}, - {file = "black-24.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7de8d330763c66663661a1ffd432274a2f92f07feeddd89ffd085b5744f85e7"}, - {file = "black-24.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:7bb041dca0d784697af4646d3b62ba4a6b028276ae878e53f6b4f74ddd6db99f"}, - {file = "black-24.3.0-py3-none-any.whl", hash = "sha256:41622020d7120e01d377f74249e677039d20e6344ff5851de8a10f11f513bf93"}, - {file = "black-24.3.0.tar.gz", hash = "sha256:a0c9c4a0771afc6919578cec71ce82a3e31e054904e7197deacbc9382671c41f"}, + {file = "black-24.4.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce"}, + {file = "black-24.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021"}, + {file = "black-24.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063"}, + {file = "black-24.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96"}, + {file = "black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474"}, + {file = "black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c"}, + {file = "black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb"}, + {file = "black-24.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1"}, + {file = "black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d"}, + {file = "black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04"}, + {file = "black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc"}, + {file = "black-24.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0"}, + {file = "black-24.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7"}, + {file = "black-24.4.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94"}, + {file = "black-24.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8"}, + {file = "black-24.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c"}, + {file = "black-24.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1"}, + {file = "black-24.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741"}, + {file = "black-24.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e"}, + {file = "black-24.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7"}, + {file = "black-24.4.2-py3-none-any.whl", hash = "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c"}, + {file = "black-24.4.2.tar.gz", hash = "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d"}, ] [package.dependencies] @@ -287,13 +286,13 @@ css = ["tinycss2 (>=1.1.0,<1.3)"] [[package]] name = "bokeh" -version = "3.4.0" +version = "3.4.2" description = "Interactive plots and applications in the browser from Python" optional = true python-versions = ">=3.9" files = [ - {file = "bokeh-3.4.0-py3-none-any.whl", hash = "sha256:d8d9ba026b734317740f90a8a58502d63c76b96c58752fc421ad4aa04df1fbcd"}, - {file = "bokeh-3.4.0.tar.gz", hash = "sha256:9ea6bc407b5e7d04ba7a2f07d8f00e8b6ffe02c2368e707f41bb362a9928569a"}, + {file = "bokeh-3.4.2-py3-none-any.whl", hash = "sha256:931a43ee59dbf1720383ab904f8205e126b85561aac55592415b800c96f1b0eb"}, + {file = "bokeh-3.4.2.tar.gz", hash = "sha256:a16d5cc0abb93d2d270d70fc35851f3e1b9208814a985a4678e0ba5ef2d9cd42"}, ] [package.dependencies] @@ -309,54 +308,53 @@ xyzservices = ">=2021.09.1" [[package]] name = "bottleneck" -version = "1.3.8" +version = "1.4.0" description = "Fast NumPy array functions written in C" optional = false python-versions = "*" files = [ - {file = "Bottleneck-1.3.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:865c8ed5b798c0198b0b80553e09cc0d890c4f5feb3d81d31661517ca7819fa3"}, - {file = "Bottleneck-1.3.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d073a31e259d40b25e29dbba80f73abf38afe98fd730c79dad7edd9a0ad6cff5"}, - {file = "Bottleneck-1.3.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b806b277ab47495032822f55f43b8d336e4b7e73f8506ed34d3ea3da6d644abc"}, - {file = "Bottleneck-1.3.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:770b517609916adeb39d3b1a386a29bc316da03dd61e7ee6e8a38325b80cc327"}, - {file = "Bottleneck-1.3.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2948502b0394ee419945b55b092585222a505c61d41a874c741be49f2cac056f"}, - {file = "Bottleneck-1.3.8-cp310-cp310-win32.whl", hash = "sha256:271b6333522beb8aee32e640ba49a2064491d2c10317baa58a5996be3dd443e4"}, - {file = "Bottleneck-1.3.8-cp310-cp310-win_amd64.whl", hash = "sha256:d41000ea7ca196b5fd39d6fccd34bf0704c8831731cedd2da2dcae3c6ac49c42"}, - {file = "Bottleneck-1.3.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d0a7f454394cd3642498b6e077e70f4a6b9fd46a8eb908c83ac737fdc9f9a98c"}, - {file = "Bottleneck-1.3.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2c4ea8b9024dcb4e83b5c118a3c8faa863ace2ad572849da548a74a8ee4e8f2a"}, - {file = "Bottleneck-1.3.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f40724b6e965ff5b88b333d4a10097b1629e60c0db21bb3d08c24d7b1a904a16"}, - {file = "Bottleneck-1.3.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4bd7183b8dcca89d0e65abe4507c19667dd31dacfbcc8ed705bad642f26a46e1"}, - {file = "Bottleneck-1.3.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:20aa31a7d9d747c499ace1610a6e1f7aba6e3d4a9923e0312f6b4b6d68a59af3"}, - {file = "Bottleneck-1.3.8-cp311-cp311-win32.whl", hash = "sha256:350520105d9449e6565b3f0c4ce1f80a0b3e4d63695ebbf29db41f62e13f6461"}, - {file = "Bottleneck-1.3.8-cp311-cp311-win_amd64.whl", hash = "sha256:167a278902775defde7dfded6e98e3707dfe54971ffd9aec25c43bc74e4e381a"}, - {file = "Bottleneck-1.3.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c6e93ed45c6c83392f73d0333b310b38772df7eb78c120c1447245691bdedaf4"}, - {file = "Bottleneck-1.3.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3400f47dda0196b5af50b0b0678e33cc8c42e52e55ae0a63cdfed60725659bc"}, - {file = "Bottleneck-1.3.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fba5fd1805c71b2eeea50bea93d59be449c4af23ebd8da5f75fd74fd0331e314"}, - {file = "Bottleneck-1.3.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:60139c5c3d2a9c1454a04af5ee981a9f56548d27fa36f264069b149a6e9b01ed"}, - {file = "Bottleneck-1.3.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:99fab17fa26c811ccad63e208314726e718ae6605314329eca09641954550523"}, - {file = "Bottleneck-1.3.8-cp312-cp312-win32.whl", hash = "sha256:d3ae2bb5d4168912e438e377cc1301fa01df949ba59cd86317b3e00404fd4a97"}, - {file = "Bottleneck-1.3.8-cp312-cp312-win_amd64.whl", hash = "sha256:bcba1d5d5328c50f94852ab521fcb26f35d9e0ccd928d120d56455d1a5bb743f"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8d01fd5389d3160d54619119987ac24b020fa6810b7b398fff4945892237b3da"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ca25f0003ef65264942f6306d793e0f270ece8b406c5a293dfc7d878146e9f8"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7763cf1516fa388c3587d12182fc1bc1c8089eab1a0a1bf09761f4c41af73c"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:38837c022350e2a656453f0e448416b7108cf67baccf11d04a0b3b70a48074dd"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:84ca5e741fae1c1796744dbdd0d2c1789cb74dd79c12ea8ec5834f83430f8520"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-win32.whl", hash = "sha256:f4dfc22a3450227e692ef2ff4657639c33eec88ad04ee3ce29d1a23a4942da24"}, - {file = "Bottleneck-1.3.8-cp37-cp37m-win_amd64.whl", hash = "sha256:90b87eed152bbd760c4eb11473c2cf036abdb26e2f84caeb00787da74fb08c40"}, - {file = "Bottleneck-1.3.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:54a1b5d9d63b2d9f2955f8542eea26c418f97873e0abf86ca52beea0208c9306"}, - {file = "Bottleneck-1.3.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:019dd142d1e870388fb0b649213a0d8e569cce784326e183deba8f17826edd9f"}, - {file = "Bottleneck-1.3.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b5ed34a540eb7df59f45da659af9f792306637de1c69c95f020294f3b9fc4a8"}, - {file = "Bottleneck-1.3.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b69fcd4d818bcf9d53497d8accd0d5f852a447728baaa33b9b7168f8c4221d06"}, - {file = "Bottleneck-1.3.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:02616a830bd477f5ba51103396092da4b9d83cea2e88f5b8069e3f4f7b796704"}, - {file = "Bottleneck-1.3.8-cp38-cp38-win32.whl", hash = "sha256:93d359fb83eb3bdd6635ef6e64835c38ffdc211441fc190549f286e6af98b5f6"}, - {file = "Bottleneck-1.3.8-cp38-cp38-win_amd64.whl", hash = "sha256:51c8bb3dffeb72c14f0382b80de76eabac6726d316babbd48f7e4056267d7910"}, - {file = "Bottleneck-1.3.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:84453548b0f722c3be912ce3c6b685917fea842bf1252eeb63714a2c1fd1ffc9"}, - {file = "Bottleneck-1.3.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92700867504a213cafa9b8d9be529bd6e18dc83366b2ba00e86e80769b93f678"}, - {file = "Bottleneck-1.3.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fadfd2f3931fdff42f4b9867eb02ed7c662d01e6099ff6b347b6ced791450651"}, - {file = "Bottleneck-1.3.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:cfbc4a3a934b677bfbc37ac8757c4e1264a76262b774259bd3fa8a265dbd668b"}, - {file = "Bottleneck-1.3.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3c74c18f86a1ffac22280b005df8bb8a58505ac6663c4d6807f39873c17dc347"}, - {file = "Bottleneck-1.3.8-cp39-cp39-win32.whl", hash = "sha256:211f881159e8adb3a57df2263028ae6dc89ec4328bfd43f3421e507406c28654"}, - {file = "Bottleneck-1.3.8-cp39-cp39-win_amd64.whl", hash = "sha256:8615eeb75009ba7c0a112a5a6a5154ed3d61fd6b0879631778b3e42e2d9a6d65"}, - {file = "Bottleneck-1.3.8.tar.gz", hash = "sha256:6780d896969ba7f53c8995ba90c87c548beb3db435dc90c60b9a10ed1ab4d868"}, + {file = "Bottleneck-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2110af22aa8c2779faba8aa021d6b559df04449bdf21d510eacd7910934189fe"}, + {file = "Bottleneck-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:381cbd1e52338fcdf9ff01c962e6aa187b2d8b3b369d42e779b6d33ac61f8d35"}, + {file = "Bottleneck-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a91e40bbb8452e77772614d882be2c34b3b514d9f15460f703293525a6e173d"}, + {file = "Bottleneck-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:59604949aea476f5075b965129eaa3c2d90891fd43b0dfaf2ad7621bb5db14a5"}, + {file = "Bottleneck-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c2c92545e1bc8e859d8d137aefa3b24843bd374b17c9814dafa3bbcea9fc4ec0"}, + {file = "Bottleneck-1.4.0-cp310-cp310-win32.whl", hash = "sha256:f63e79bfa2f82a7432c8b147ed321d01ca7769bc17cc04644286a4ce58d30549"}, + {file = "Bottleneck-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:d69907d8d679cb5091a3f479c46bf1076f149f6311ff3298bac5089b86a2fab1"}, + {file = "Bottleneck-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67347b0f01f32a232a6269c37afc1c079e08f6455fa12e91f4a1cd12eb0d11a5"}, + {file = "Bottleneck-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1490348b3bbc0225523dc2c00c6bb3e66168c537d62797bd29783c0826c09838"}, + {file = "Bottleneck-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a704165552496cbcc8bcc5921bb679fd6fa66bb1e758888de091b1223231c9f0"}, + {file = "Bottleneck-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:ffb4e4edf7997069719b9269926cc00a2a12c6e015422d1ebc2f621c4541396a"}, + {file = "Bottleneck-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5d6bf45ed58d5e7414c0011ef2da75474fe597a51970df83596b0bcb79c14c5e"}, + {file = "Bottleneck-1.4.0-cp311-cp311-win32.whl", hash = "sha256:ed209f8f3cb9954773764b0fa2510a7a9247ad245593187ac90bd0747771bc5c"}, + {file = "Bottleneck-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:d53f1a72b12cfd76b56934c33bc0cb7c1a295f23a2d3ffba8c764514c9b5e0ff"}, + {file = "Bottleneck-1.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e720ff24370324c84a82b1a18195274715c23181748b2b9e3dacad24198ca06f"}, + {file = "Bottleneck-1.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44305c70c2a1539b0ae968e033f301ad868a6146b47e3cccd73fdfe3fc07c4ee"}, + {file = "Bottleneck-1.4.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4dac5d2a871b7bd296c2b92426daa27d5b07aa84ef2557db097d29135da4eb"}, + {file = "Bottleneck-1.4.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fbcdd01db9e27741fb16a02b720cf02389d4b0b99cefe3c834c7df88c2d7412d"}, + {file = "Bottleneck-1.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:14b3334a39308fbb05dacd35ac100842aa9e9bc70afbdcebe43e46179d183fd0"}, + {file = "Bottleneck-1.4.0-cp312-cp312-win32.whl", hash = "sha256:520d7a83cd48b3f58e5df1a258acb547f8a5386a8c21ca9e1058d83a0d622fdf"}, + {file = "Bottleneck-1.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b1339b9ad3ee217253f246cde5c3789eb527cf9dd31ff0a1f5a8bf7fc89eadad"}, + {file = "Bottleneck-1.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2749602200aaa0e12a0f3f936dd6d4035384ad10d3acf7ac4f418c501683397"}, + {file = "Bottleneck-1.4.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb79a2ac135567694f13339f0bebcee96aec09c596b324b61cd7fd5e306f49d"}, + {file = "Bottleneck-1.4.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c6097bf39723e76ff5bba160daab92ae599df212c859db8d46648548584d04a8"}, + {file = "Bottleneck-1.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:b5f72b66ccc0272de46b67346cf8490737ba2adc6a302664f5326e7741b6d5ab"}, + {file = "Bottleneck-1.4.0-cp37-cp37m-win32.whl", hash = "sha256:9903f017b9d6f2f69ce241b424ddad7265624f64dc6eafbe257d45661febf8bd"}, + {file = "Bottleneck-1.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:834816c316ad184cae7ecb615b69876a42cd2cafb07ee66c57a9c1ccacb63339"}, + {file = "Bottleneck-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:03c43150f180d86a5633a6da788660d335983f6798fca306ba7f47ff27a1b7e7"}, + {file = "Bottleneck-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea333dbcadb780356c54f5c4fa7754f143573b57508fff43d5daf63298eb26a"}, + {file = "Bottleneck-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6179791c0119aec3708ef74ddadab8d183e3742adb93a9028718e8696bdf572b"}, + {file = "Bottleneck-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:220b72405f77aebb0137b733b464c2526ded471e4289ac1e840bab8852759a55"}, + {file = "Bottleneck-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8746f0f727997ce4c7457dc1fec4e4e3c0fdd8803514baa3d1c4ea6515ab04b2"}, + {file = "Bottleneck-1.4.0-cp38-cp38-win32.whl", hash = "sha256:6a36280ee33d9db799163f04e88b950261e590cc71d089f5e179b21680b5d491"}, + {file = "Bottleneck-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:de17e012694e6a987bb4eb050dd7f0cf939195a8e00cb23aa93ebee5fd5e64a8"}, + {file = "Bottleneck-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28260197ab8a4a6b7adf810523147b1a3e85607f4e26a0f685eb9d155cfc75af"}, + {file = "Bottleneck-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90d5d188a0cca0b9655ff2904ee61e7f183079e97550be98c2541a2eec358a72"}, + {file = "Bottleneck-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2861ff645d236f1a6f5c6d1ddb3db37d19af1d91057bdc4fd7b76299a15b3079"}, + {file = "Bottleneck-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6136ce7dcf825c432a20b80ab1c460264a437d8430fff32536176147e0b6b832"}, + {file = "Bottleneck-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:889e6855b77345622b4ba927335d3118745d590492941f5f78554f157d259e92"}, + {file = "Bottleneck-1.4.0-cp39-cp39-win32.whl", hash = "sha256:817aa43a671ede696ea023d8f35839a391244662340cc95a0f46965dda8b35cf"}, + {file = "Bottleneck-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:23834d82177d6997f21fa63156550668cd07a9a6e5a1b66ea80f1a14ac6ffd07"}, + {file = "bottleneck-1.4.0.tar.gz", hash = "sha256:beb36df519b8709e7d357c0c9639b03b885ca6355bbf5e53752c685de51605b8"}, ] [package.dependencies] @@ -378,42 +376,44 @@ files = [ [[package]] name = "cartopy" -version = "0.22.0" +version = "0.23.0" description = "A Python library for cartographic visualizations with Matplotlib" optional = false python-versions = ">=3.9" files = [ - {file = "Cartopy-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b17ad0b056b9a632b12954864c685febb0e1d8a4a45423b83eec119a603fcb8a"}, - {file = "Cartopy-0.22.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:bf7ca13a01782810e8b6a9758ed29755b6ce81b5c53721e19cb6636a43b0f575"}, - {file = "Cartopy-0.22.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:604c21046dfbe0c9551b28802901d240a7ce25fcaf0c30db0f230cebf93ae2a5"}, - {file = "Cartopy-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c37d4e2227cb41c971d2bd2555ce081f765d4eaae852def1c059c1d85c8e645"}, - {file = "Cartopy-0.22.0-cp310-cp310-win_amd64.whl", hash = "sha256:3f9c391bd3ba588de397854556dda175edf59f614bbb6dce18c4981154d97d92"}, - {file = "Cartopy-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d9d24ef50991269b57a42bdd4f1156426065fbeb41777c7e28d937e2c4a2ae6"}, - {file = "Cartopy-0.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:472e6713aad729f6fd38bd301666febd23dd3b744b0530cd80e02e242e3f1c74"}, - {file = "Cartopy-0.22.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:319b8244f6d06f600be89ad5eaa85c2524e23b240decd203188da26ff14a346b"}, - {file = "Cartopy-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a401109b88a6bfec1c13dce9b09dc59993c3af426b1879e1e0ee3afd1c293076"}, - {file = "Cartopy-0.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:8ecebbe13d8488c2ec32e7c40222b9f10ba48e386be30c8ec60c867c122399f9"}, - {file = "Cartopy-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fbc761b80d2fad8cb6ea1c7d3388862e9fbc53c17f14baf6d4038561c7865e6f"}, - {file = "Cartopy-0.22.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3b25dd55844f36115e6c3632a16ed545cbee011068777b5a7a49ed3e1dbcafcb"}, - {file = "Cartopy-0.22.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eec1e9b701272f4cfc43d0123b9f69fa146d915580ee47eda875770c704bf413"}, - {file = "Cartopy-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8bdc98a5b196488ea824b6e2f07a3ab63c4f1e99a2ab9fdee514a5f38b00407a"}, - {file = "Cartopy-0.22.0-cp39-cp39-win_amd64.whl", hash = "sha256:c5df7fc17705c93a152f3e82d31adb9c2db50448b38b08c076331c522ce7f844"}, - {file = "Cartopy-0.22.0.tar.gz", hash = "sha256:b300f90120931d43f11ef87c064ea1dacec1b59a4940aa76ebf82cf09548bb49"}, + {file = "Cartopy-0.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:374e66f816c3bafa48ffdbf6abaefa67063b405fac5f425f9be241cdf3498352"}, + {file = "Cartopy-0.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2bae450c4c913796cad0b7ce05aa2fa78d1788de47989f0a03183397648e24be"}, + {file = "Cartopy-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a40437596e8ac5e74575eab822c661f4e725bd995cfd9e445069695fe9086b42"}, + {file = "Cartopy-0.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:3292d6d403137eed80d32014c2f28de6282bed8824213f4b4c2170f388b24a1b"}, + {file = "Cartopy-0.23.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:86b07b6794b616674e4e485b8574e9197bca54a4467d28dd01ae0bf178f8dc2b"}, + {file = "Cartopy-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8dece2aa8d5ff7bf989ded6b5f07c980fb5bb772952bc7cdeab469738abdecee"}, + {file = "Cartopy-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9dfd28352dc83d6b4e4cf85d84cb50fc4886d4c1510d61f4c7cf22477d1156f"}, + {file = "Cartopy-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:b2671b5354e43220f8e1074e7fe30a8b9f71cb38407c78e51db9c97772f0320b"}, + {file = "Cartopy-0.23.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:80b9fd666fd47f6370d29f7ad4e352828d54aaf688a03d0b83b51e141cfd77fa"}, + {file = "Cartopy-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:43e36b8b7e7e373a5698757458fd28fafbbbf5f3ebbe2d378f6a5ec3993d6dc0"}, + {file = "Cartopy-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:550173b91155d4d81cd14b4892cb6cabe3dd32bd34feacaa1ec78c0e56287832"}, + {file = "Cartopy-0.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:55219ee0fb069cc3254426e87382cde03546e86c3f7c6759f076823b1e3a44d9"}, + {file = "Cartopy-0.23.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6279af846bf77d9817ab8792a8e38ca561878f048bba1afdae3e3a30c5432bfd"}, + {file = "Cartopy-0.23.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:843bf9dc0a18e1a8eed872c49e8092e8a8109e4dce285ad96752841e21e8161e"}, + {file = "Cartopy-0.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:350ff8802e2bc617c09bd6148aeb46e841775a846bfaa6e635a212d1eaf5ab66"}, + {file = "Cartopy-0.23.0-cp39-cp39-win_amd64.whl", hash = "sha256:b52ab2274ad7504955854ef8d6f603e41f5d7163d02b29d369cecdbd29c2fda1"}, + {file = "Cartopy-0.23.0.tar.gz", hash = "sha256:231f37b35701f2ba31d94959cca75e6da04c2eea3a7f14ce1c75ee3b0eae7676"}, ] [package.dependencies] -matplotlib = ">=3.4" +matplotlib = ">=3.5" numpy = ">=1.21" packaging = ">=20" -pyproj = ">=3.1.0" -pyshp = ">=2.1" +pyproj = ">=3.3.1" +pyshp = ">=2.3" shapely = ">=1.7" [package.extras] -doc = ["beautifulsoup4", "pydata-sphinx-theme", "sphinx", "sphinx-gallery"] +doc = ["pydata-sphinx-theme", "sphinx", "sphinx-gallery"] ows = ["OWSLib (>=0.20.0)", "pillow (>=6.1.0)"] plotting = ["pillow (>=6.1.0)", "scipy (>=1.3.1)"] speedups = ["fiona", "pykdtree"] +srtm = ["beautifulsoup4"] test = ["coveralls", "pytest (>=5.1.2)", "pytest-cov", "pytest-mpl (>=0.11)", "pytest-xdist"] [[package]] @@ -429,13 +429,13 @@ files = [ [[package]] name = "certifi" -version = "2024.2.2" +version = "2024.7.4" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, - {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, + {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"}, + {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, ] [[package]] @@ -504,13 +504,13 @@ pycparser = "*" [[package]] name = "cfgrib" -version = "0.9.11.0" +version = "0.9.13.0" description = "Python interface to map GRIB files to the NetCDF Common Data Model following the CF Convention using ecCodes." optional = false python-versions = ">=3.7" files = [ - {file = "cfgrib-0.9.11.0-py3-none-any.whl", hash = "sha256:87a77fbe3708f1a0507585f6def5bd4847a986a165829397a663f5030b6e55d6"}, - {file = "cfgrib-0.9.11.0.tar.gz", hash = "sha256:b2e1e030a53d9ef8028145943c1560c90b3bc324891766f02905a1d714434a1c"}, + {file = "cfgrib-0.9.13.0-py3-none-any.whl", hash = "sha256:50467ef0aabcc45de2f3eb433dfe07d2d3eab02fc8a9af9389fd06c2391e6dd9"}, + {file = "cfgrib-0.9.13.0.tar.gz", hash = "sha256:a6ecd393dc078ef255c39b98763702b072e09ccd15e85d81ed7d13ac44837794"}, ] [package.dependencies] @@ -525,32 +525,41 @@ xarray = ["xarray (>=0.15)"] [[package]] name = "cftime" -version = "1.6.3" +version = "1.6.4" description = "Time-handling functionality from netcdf4-python" optional = false python-versions = ">=3.8" files = [ - {file = "cftime-1.6.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b62d42546fa5c914dfea5b15a9aaed2087ea1211cc36d08c374502ef95892038"}, - {file = "cftime-1.6.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eb6dd70b2ccabfe1a14b7fbb0bbdce0418e71697094373c0d573c880790fa291"}, - {file = "cftime-1.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9878bfd8c1c3f24184ecbd528f739ba46ebaceaf1c8a24d348d7befb117a285"}, - {file = "cftime-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:3cf6e216a4c06f9a628cdf8e9c9d5e8097fb3eb02dd087dd14ab3b18478a7271"}, - {file = "cftime-1.6.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8d2c01456d9d7b46aa710a41d1c711a50d5ea259aff4a987d0e973d1093bc922"}, - {file = "cftime-1.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:80eb1170ce1639016f55760847f4aadd04b0312496c5bac2797e930914bba48d"}, - {file = "cftime-1.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d87dadd0824262bdd7493babd2a44447da0a22175ded8ae9e060a3aebec7c5d7"}, - {file = "cftime-1.6.3-cp311-cp311-win_amd64.whl", hash = "sha256:0a38eb9f5c733a23e1714bd3ef2762ed5acee34f127670f8fb4ad6464946f6b3"}, - {file = "cftime-1.6.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:2d113a01ab924445e61d65c26bbd95bc08e4a22878d3b947064bba056c884c4a"}, - {file = "cftime-1.6.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f11685663a6af97418908060492a07663c16d42519c139ca03c2ffb1377fd25"}, - {file = "cftime-1.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a98abb1d46d118e52b0611ce668a0b714b407be26177ef0581ecf5e95f894725"}, - {file = "cftime-1.6.3-cp312-cp312-win_amd64.whl", hash = "sha256:4d6fbd5f41b322cfa7b0ac3aaadeceb4450100a164b5bccbbb9e7c5048489a88"}, - {file = "cftime-1.6.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bedb577bc8b8f3f10f5336c0792e5dae88605781890f50f36b45bb46907968e8"}, - {file = "cftime-1.6.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:022dabf1610cdd04a693e730fa8f71d307059717f29dba921e7486e553412bb4"}, - {file = "cftime-1.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbf782ab4ac0605bdec2b941952c897595613203942b7f8c2fccd17efa5147df"}, - {file = "cftime-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:9eb177a02db7cd84aa6962278e4bd2d3106a545de82e6aacd9404f1e153661db"}, - {file = "cftime-1.6.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3b86be8c2f254147be4ba88f12099466dde457a4a3a21de6c69d52a7224c13ae"}, - {file = "cftime-1.6.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:523b9a6bf03f5e36407979e248381d0fcab2d225b915bbde77d00c6dde192b90"}, - {file = "cftime-1.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a14d2c7d22fd2a6dfa6ad563283b6d6679f1df95e0ed8d14b8f284dad402887"}, - {file = "cftime-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:d9b00c2844c7a1701d8ede5336b6321dfee256ceab81a34a1aff0483d56891a6"}, - {file = "cftime-1.6.3.tar.gz", hash = "sha256:d0a6b29f72a13f08e008b9becff247cc75c84acb213332ede18879c5b6aa4dfd"}, + {file = "cftime-1.6.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ee70074df4bae0d9ee98f201cf5f11fd302791cf1cdeb73c34f685d6b632e17d"}, + {file = "cftime-1.6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e5456fd58d4cc6b8d7b4932b749617ee142b62a52bc5d8e3c282ce69ce3a20ba"}, + {file = "cftime-1.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1289e08617be350a6b26c6e4352a0cb088625ac33d25e95110df549c26d6ab8e"}, + {file = "cftime-1.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18b132d9225b4a109929866200846c72302316db9069e2de3ec8d8ec377f567f"}, + {file = "cftime-1.6.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ca1a264570e68fbb611bba251641b8efd0cf88c0ad2dcab5fa784df264232b75"}, + {file = "cftime-1.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:6fc82928cbf477bebf233f41914e64bff7b9e894c7f0c34170784a48250f8da7"}, + {file = "cftime-1.6.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c1558d9b477bd29626cd8bfc89e736635f72887d1a993e2834ab579bba7abb8c"}, + {file = "cftime-1.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:03494e7b66a2fbb6b04e364ab67185130dee0ced660abac5c1559070571d143d"}, + {file = "cftime-1.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dcb2a01d4e614437582af33b36db4fb441b7666758482864827a1f037d2b639"}, + {file = "cftime-1.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b47bf25195fb3889bbae34df0e80957eb69c48f66902f5d538c7a8ec34253f6"}, + {file = "cftime-1.6.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d4f2cc0d5c6ffba9c5b0fd1ecd0c7c1c426d0be7b8de1480e2a9fb857c1905e9"}, + {file = "cftime-1.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:76b8f1e5d1e424accdf760a43e0a1793a7b640bab83cb067273d5c9dbb336c44"}, + {file = "cftime-1.6.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c349a91fa7ac9ec50118b04a8746bdea967bd2fc525d87c776003040b8d3392"}, + {file = "cftime-1.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:588d073400798adc24ece759cd1cb24ef730f55d1f70e31a898e7686f9d763d8"}, + {file = "cftime-1.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e07b91b488570573bbeb6f815656a8974d13d15b2279c82de2927f4f692bbcd"}, + {file = "cftime-1.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f92f2e405eeda47b30ab6231d8b7d136a55f21034d394f93ade322d356948654"}, + {file = "cftime-1.6.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:567574df94d0de1101bb5da76e7fbc6eabfddeeb2eb8cf83286b3599a136bbf7"}, + {file = "cftime-1.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:5b5ad7559a16bedadb66af8e417b6805f758acb57aa38d2730844dfc63a1e667"}, + {file = "cftime-1.6.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c072fe9e09925af66a9473edf5752ca1890ba752e7c1935d1f0245ad48f0977c"}, + {file = "cftime-1.6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c05a71389f53d6340cb365b60f028c08268c72401660b9ef76108dee9f1cb5b2"}, + {file = "cftime-1.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0edeb1cb019d8155b2513cffb96749c0d7d459370e69bdf03077e0bee214aed8"}, + {file = "cftime-1.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8f05d5d6bb4137f9783fa61ad330030fcea8dcc6946dea69a27774edbe480e7"}, + {file = "cftime-1.6.4-cp38-cp38-win_amd64.whl", hash = "sha256:b32ac1278a2a111b066d5a1e6e5ce6f38c4c505993a6a3130873b56f99d7b56f"}, + {file = "cftime-1.6.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c20f03e12af39534c3450bba376272803bfb850b5ce6433c839bfaa99f8d835a"}, + {file = "cftime-1.6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:90609b3c1a31a756a68ecdbc961a4ce0b22c1620f166c8dabfa3a4c337ac8b9e"}, + {file = "cftime-1.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbe11ad73b2a0ddc79995da21459fc2a3fd6b1593ca73f00a60e4d81c3e230f3"}, + {file = "cftime-1.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25f043703e785de0bd7cd8222c0a53317e9aeb3dfc062588b05e6f3ebb007468"}, + {file = "cftime-1.6.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f9acc272df1022f24fe7dbe9de43fa5d8271985161df14549e4d8d28c90dc9ea"}, + {file = "cftime-1.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:e8467b6fbf8dbfe0be8c04d61180765fdd3b9ab0fe51313a0bbf87e63634a3d8"}, + {file = "cftime-1.6.4.tar.gz", hash = "sha256:e325406193758a7ed67308deb52e727782a19e384e183378e7ff62098be0aedc"}, ] [package.dependencies] @@ -860,63 +869,63 @@ test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] [[package]] name = "coverage" -version = "7.4.4" +version = "7.6.0" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0be5efd5127542ef31f165de269f77560d6cdef525fffa446de6f7e9186cfb2"}, - {file = "coverage-7.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ccd341521be3d1b3daeb41960ae94a5e87abe2f46f17224ba5d6f2b8398016cf"}, - {file = "coverage-7.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fa497a8ab37784fbb20ab699c246053ac294d13fc7eb40ec007a5043ec91f8"}, - {file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b1a93009cb80730c9bca5d6d4665494b725b6e8e157c1cb7f2db5b4b122ea562"}, - {file = "coverage-7.4.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:690db6517f09336559dc0b5f55342df62370a48f5469fabf502db2c6d1cffcd2"}, - {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:09c3255458533cb76ef55da8cc49ffab9e33f083739c8bd4f58e79fecfe288f7"}, - {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ce1415194b4a6bd0cdcc3a1dfbf58b63f910dcb7330fe15bdff542c56949f87"}, - {file = "coverage-7.4.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b91cbc4b195444e7e258ba27ac33769c41b94967919f10037e6355e998af255c"}, - {file = "coverage-7.4.4-cp310-cp310-win32.whl", hash = "sha256:598825b51b81c808cb6f078dcb972f96af96b078faa47af7dfcdf282835baa8d"}, - {file = "coverage-7.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:09ef9199ed6653989ebbcaacc9b62b514bb63ea2f90256e71fea3ed74bd8ff6f"}, - {file = "coverage-7.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f9f50e7ef2a71e2fae92774c99170eb8304e3fdf9c8c3c7ae9bab3e7229c5cf"}, - {file = "coverage-7.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:623512f8ba53c422fcfb2ce68362c97945095b864cda94a92edbaf5994201083"}, - {file = "coverage-7.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0513b9508b93da4e1716744ef6ebc507aff016ba115ffe8ecff744d1322a7b63"}, - {file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40209e141059b9370a2657c9b15607815359ab3ef9918f0196b6fccce8d3230f"}, - {file = "coverage-7.4.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a2b2b78c78293782fd3767d53e6474582f62443d0504b1554370bde86cc8227"}, - {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:73bfb9c09951125d06ee473bed216e2c3742f530fc5acc1383883125de76d9cd"}, - {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f384c3cc76aeedce208643697fb3e8437604b512255de6d18dae3f27655a384"}, - {file = "coverage-7.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:54eb8d1bf7cacfbf2a3186019bcf01d11c666bd495ed18717162f7eb1e9dd00b"}, - {file = "coverage-7.4.4-cp311-cp311-win32.whl", hash = "sha256:cac99918c7bba15302a2d81f0312c08054a3359eaa1929c7e4b26ebe41e9b286"}, - {file = "coverage-7.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:b14706df8b2de49869ae03a5ccbc211f4041750cd4a66f698df89d44f4bd30ec"}, - {file = "coverage-7.4.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:201bef2eea65e0e9c56343115ba3814e896afe6d36ffd37bab783261db430f76"}, - {file = "coverage-7.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:41c9c5f3de16b903b610d09650e5e27adbfa7f500302718c9ffd1c12cf9d6818"}, - {file = "coverage-7.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d898fe162d26929b5960e4e138651f7427048e72c853607f2b200909794ed978"}, - {file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ea79bb50e805cd6ac058dfa3b5c8f6c040cb87fe83de10845857f5535d1db70"}, - {file = "coverage-7.4.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce4b94265ca988c3f8e479e741693d143026632672e3ff924f25fab50518dd51"}, - {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:00838a35b882694afda09f85e469c96367daa3f3f2b097d846a7216993d37f4c"}, - {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fdfafb32984684eb03c2d83e1e51f64f0906b11e64482df3c5db936ce3839d48"}, - {file = "coverage-7.4.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:69eb372f7e2ece89f14751fbcbe470295d73ed41ecd37ca36ed2eb47512a6ab9"}, - {file = "coverage-7.4.4-cp312-cp312-win32.whl", hash = "sha256:137eb07173141545e07403cca94ab625cc1cc6bc4c1e97b6e3846270e7e1fea0"}, - {file = "coverage-7.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:d71eec7d83298f1af3326ce0ff1d0ea83c7cb98f72b577097f9083b20bdaf05e"}, - {file = "coverage-7.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d5ae728ff3b5401cc320d792866987e7e7e880e6ebd24433b70a33b643bb0384"}, - {file = "coverage-7.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cc4f1358cb0c78edef3ed237ef2c86056206bb8d9140e73b6b89fbcfcbdd40e1"}, - {file = "coverage-7.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8130a2aa2acb8788e0b56938786c33c7c98562697bf9f4c7d6e8e5e3a0501e4a"}, - {file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cf271892d13e43bc2b51e6908ec9a6a5094a4df1d8af0bfc360088ee6c684409"}, - {file = "coverage-7.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4cdc86d54b5da0df6d3d3a2f0b710949286094c3a6700c21e9015932b81447e"}, - {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae71e7ddb7a413dd60052e90528f2f65270aad4b509563af6d03d53e979feafd"}, - {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:38dd60d7bf242c4ed5b38e094baf6401faa114fc09e9e6632374388a404f98e7"}, - {file = "coverage-7.4.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa5b1c1bfc28384f1f53b69a023d789f72b2e0ab1b3787aae16992a7ca21056c"}, - {file = "coverage-7.4.4-cp38-cp38-win32.whl", hash = "sha256:dfa8fe35a0bb90382837b238fff375de15f0dcdb9ae68ff85f7a63649c98527e"}, - {file = "coverage-7.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:b2991665420a803495e0b90a79233c1433d6ed77ef282e8e152a324bbbc5e0c8"}, - {file = "coverage-7.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3b799445b9f7ee8bf299cfaed6f5b226c0037b74886a4e11515e569b36fe310d"}, - {file = "coverage-7.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b4d33f418f46362995f1e9d4f3a35a1b6322cb959c31d88ae56b0298e1c22357"}, - {file = "coverage-7.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aadacf9a2f407a4688d700e4ebab33a7e2e408f2ca04dbf4aef17585389eff3e"}, - {file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c95949560050d04d46b919301826525597f07b33beba6187d04fa64d47ac82e"}, - {file = "coverage-7.4.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff7687ca3d7028d8a5f0ebae95a6e4827c5616b31a4ee1192bdfde697db110d4"}, - {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5fc1de20b2d4a061b3df27ab9b7c7111e9a710f10dc2b84d33a4ab25065994ec"}, - {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c74880fc64d4958159fbd537a091d2a585448a8f8508bf248d72112723974cbd"}, - {file = "coverage-7.4.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:742a76a12aa45b44d236815d282b03cfb1de3b4323f3e4ec933acfae08e54ade"}, - {file = "coverage-7.4.4-cp39-cp39-win32.whl", hash = "sha256:d89d7b2974cae412400e88f35d86af72208e1ede1a541954af5d944a8ba46c57"}, - {file = "coverage-7.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:9ca28a302acb19b6af89e90f33ee3e1906961f94b54ea37de6737b7ca9d8827c"}, - {file = "coverage-7.4.4-pp38.pp39.pp310-none-any.whl", hash = "sha256:b2c5edc4ac10a7ef6605a966c58929ec6c1bd0917fb8c15cb3363f65aa40e677"}, - {file = "coverage-7.4.4.tar.gz", hash = "sha256:c901df83d097649e257e803be22592aedfd5182f07b3cc87d640bbb9afd50f49"}, + {file = "coverage-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dff044f661f59dace805eedb4a7404c573b6ff0cdba4a524141bc63d7be5c7fd"}, + {file = "coverage-7.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8659fd33ee9e6ca03950cfdcdf271d645cf681609153f218826dd9805ab585c"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7792f0ab20df8071d669d929c75c97fecfa6bcab82c10ee4adb91c7a54055463"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b3cd1ca7cd73d229487fa5caca9e4bc1f0bca96526b922d61053ea751fe791"}, + {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7e128f85c0b419907d1f38e616c4f1e9f1d1b37a7949f44df9a73d5da5cd53c"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a94925102c89247530ae1dab7dc02c690942566f22e189cbd53579b0693c0783"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dcd070b5b585b50e6617e8972f3fbbee786afca71b1936ac06257f7e178f00f6"}, + {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d50a252b23b9b4dfeefc1f663c568a221092cbaded20a05a11665d0dbec9b8fb"}, + {file = "coverage-7.6.0-cp310-cp310-win32.whl", hash = "sha256:0e7b27d04131c46e6894f23a4ae186a6a2207209a05df5b6ad4caee6d54a222c"}, + {file = "coverage-7.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dece71673b3187c86226c3ca793c5f891f9fc3d8aa183f2e3653da18566169"}, + {file = "coverage-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7b525ab52ce18c57ae232ba6f7010297a87ced82a2383b1afd238849c1ff933"}, + {file = "coverage-7.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bea27c4269234e06f621f3fac3925f56ff34bc14521484b8f66a580aacc2e7d"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8d1d1821ba5fc88d4a4f45387b65de52382fa3ef1f0115a4f7a20cdfab0e94"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c322ef2bbe15057bc4bf132b525b7e3f7206f071799eb8aa6ad1940bcf5fb1"}, + {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03cafe82c1b32b770a29fd6de923625ccac3185a54a5e66606da26d105f37dac"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0d1b923fc4a40c5832be4f35a5dab0e5ff89cddf83bb4174499e02ea089daf57"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4b03741e70fb811d1a9a1d75355cf391f274ed85847f4b78e35459899f57af4d"}, + {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a73d18625f6a8a1cbb11eadc1d03929f9510f4131879288e3f7922097a429f63"}, + {file = "coverage-7.6.0-cp311-cp311-win32.whl", hash = "sha256:65fa405b837060db569a61ec368b74688f429b32fa47a8929a7a2f9b47183713"}, + {file = "coverage-7.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:6379688fb4cfa921ae349c76eb1a9ab26b65f32b03d46bb0eed841fd4cb6afb1"}, + {file = "coverage-7.6.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7db0b6ae1f96ae41afe626095149ecd1b212b424626175a6633c2999eaad45b"}, + {file = "coverage-7.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bbdf9a72403110a3bdae77948b8011f644571311c2fb35ee15f0f10a8fc082e8"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc44bf0315268e253bf563f3560e6c004efe38f76db03a1558274a6e04bf5d5"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da8549d17489cd52f85a9829d0e1d91059359b3c54a26f28bec2c5d369524807"}, + {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0086cd4fc71b7d485ac93ca4239c8f75732c2ae3ba83f6be1c9be59d9e2c6382"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fad32ee9b27350687035cb5fdf9145bc9cf0a094a9577d43e909948ebcfa27b"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:044a0985a4f25b335882b0966625270a8d9db3d3409ddc49a4eb00b0ef5e8cee"}, + {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:76d5f82213aa78098b9b964ea89de4617e70e0d43e97900c2778a50856dac605"}, + {file = "coverage-7.6.0-cp312-cp312-win32.whl", hash = "sha256:3c59105f8d58ce500f348c5b56163a4113a440dad6daa2294b5052a10db866da"}, + {file = "coverage-7.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca5d79cfdae420a1d52bf177de4bc2289c321d6c961ae321503b2ca59c17ae67"}, + {file = "coverage-7.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d39bd10f0ae453554798b125d2f39884290c480f56e8a02ba7a6ed552005243b"}, + {file = "coverage-7.6.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:beb08e8508e53a568811016e59f3234d29c2583f6b6e28572f0954a6b4f7e03d"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2e16f4cd2bc4d88ba30ca2d3bbf2f21f00f382cf4e1ce3b1ddc96c634bc48ca"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6616d1c9bf1e3faea78711ee42a8b972367d82ceae233ec0ac61cc7fec09fa6b"}, + {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4567d6c334c46046d1c4c20024de2a1c3abc626817ae21ae3da600f5779b44"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d17c6a415d68cfe1091d3296ba5749d3d8696e42c37fca5d4860c5bf7b729f03"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9146579352d7b5f6412735d0f203bbd8d00113a680b66565e205bc605ef81bc6"}, + {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:cdab02a0a941af190df8782aafc591ef3ad08824f97850b015c8c6a8b3877b0b"}, + {file = "coverage-7.6.0-cp38-cp38-win32.whl", hash = "sha256:df423f351b162a702c053d5dddc0fc0ef9a9e27ea3f449781ace5f906b664428"}, + {file = "coverage-7.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:f2501d60d7497fd55e391f423f965bbe9e650e9ffc3c627d5f0ac516026000b8"}, + {file = "coverage-7.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7221f9ac9dad9492cecab6f676b3eaf9185141539d5c9689d13fd6b0d7de840c"}, + {file = "coverage-7.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ddaaa91bfc4477d2871442bbf30a125e8fe6b05da8a0015507bfbf4718228ab2"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4cbe651f3904e28f3a55d6f371203049034b4ddbce65a54527a3f189ca3b390"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831b476d79408ab6ccfadaaf199906c833f02fdb32c9ab907b1d4aa0713cfa3b"}, + {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46c3d091059ad0b9c59d1034de74a7f36dcfa7f6d3bde782c49deb42438f2450"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4d5fae0a22dc86259dee66f2cc6c1d3e490c4a1214d7daa2a93d07491c5c04b6"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:07ed352205574aad067482e53dd606926afebcb5590653121063fbf4e2175166"}, + {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:49c76cdfa13015c4560702574bad67f0e15ca5a2872c6a125f6327ead2b731dd"}, + {file = "coverage-7.6.0-cp39-cp39-win32.whl", hash = "sha256:482855914928c8175735a2a59c8dc5806cf7d8f032e4820d52e845d1f731dca2"}, + {file = "coverage-7.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:543ef9179bc55edfd895154a51792b01c017c87af0ebaae092720152e19e42ca"}, + {file = "coverage-7.6.0-pp38.pp39.pp310-none-any.whl", hash = "sha256:6fe885135c8a479d3e37a7aae61cbd3a0fb2deccb4dda3c25f92a49189f766d6"}, + {file = "coverage-7.6.0.tar.gz", hash = "sha256:289cc803fa1dc901f84701ac10c9ee873619320f2f9aff38794db4a4a0268d51"}, ] [package.dependencies] @@ -942,13 +951,13 @@ tests = ["pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "dask" -version = "2024.4.1" +version = "2024.7.0" description = "Parallel PyData with Task Scheduling" optional = false python-versions = ">=3.9" files = [ - {file = "dask-2024.4.1-py3-none-any.whl", hash = "sha256:cac5d28b9de7a7cfde46d6fbd8fa81f5654980d010b44d1dbe04dd13b5b63126"}, - {file = "dask-2024.4.1.tar.gz", hash = "sha256:6cd8eb03ddc8dc08d6ca5b167b8de559872bc51cc2b6587d0e9dc754ab19cdf0"}, + {file = "dask-2024.7.0-py3-none-any.whl", hash = "sha256:0f30f218a1fe1c8e9a6ba8add1207088ba9ff049098d4ea4ce045fd5ff7ca914"}, + {file = "dask-2024.7.0.tar.gz", hash = "sha256:0060bae9a58b5b3ce7e0d97040e903b4d3db09ba49222101cfc40f9834a8a6bc"}, ] [package.dependencies] @@ -957,46 +966,47 @@ cloudpickle = ">=1.5.0" fsspec = ">=2021.09.0" importlib-metadata = {version = ">=4.13.0", markers = "python_version < \"3.12\""} packaging = ">=20.0" -partd = ">=1.2.0" +partd = ">=1.4.0" pyyaml = ">=5.3.1" toolz = ">=0.10.0" [package.extras] array = ["numpy (>=1.21)"] complete = ["dask[array,dataframe,diagnostics,distributed]", "lz4 (>=4.3.2)", "pyarrow (>=7.0)", "pyarrow-hotfix"] -dataframe = ["dask-expr (>=1.0,<1.1)", "dask[array]", "pandas (>=1.3)"] +dataframe = ["dask-expr (>=1.1,<1.2)", "dask[array]", "pandas (>=2.0)"] diagnostics = ["bokeh (>=2.4.2)", "jinja2 (>=2.10.3)"] -distributed = ["distributed (==2024.4.1)"] +distributed = ["distributed (==2024.7.0)"] test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] [[package]] name = "dataretrieval" -version = "1.0.6" +version = "1.0.9" description = "Discover and retrieve water data from U.S. federal hydrologic web services." optional = false python-versions = ">=3.8" files = [ - {file = "dataretrieval-1.0.6-py3-none-any.whl", hash = "sha256:31adec9fd0b8f5b4e620c88bb642ddb2df19477c0ca7e1fe9a5ec604035f64b4"}, - {file = "dataretrieval-1.0.6.tar.gz", hash = "sha256:8f6323b66fd4a5fc800888c85eb350d60335085c3eefc5784b5ed50de6bd37bd"}, + {file = "dataretrieval-1.0.9-py3-none-any.whl", hash = "sha256:e21751102a6e5b6677fb917cc56c09e325ef16165779ebb260306575f558373d"}, + {file = "dataretrieval-1.0.9.tar.gz", hash = "sha256:5597d82f33fb2df9e43d555e6106ec8f950e1cd96cda11f2e739bfc91b7191b0"}, ] [package.dependencies] -pandas = "*" +pandas = "==2.*" requests = "*" [package.extras] -doc = ["sphinx"] -test = ["pytest (>5.0.0)", "pytest-cov[all]"] +doc = ["ipykernel", "ipython", "matplotlib", "nbsphinx", "nbsphinx-link", "sphinx", "sphinx-rtd-theme"] +nldi = ["geopandas (>=0.10)"] +test = ["coverage", "flake8", "pytest (>5.0.0)", "pytest-cov[all]", "requests-mock"] [[package]] name = "datashader" -version = "0.16.0" +version = "0.16.3" description = "Data visualization toolchain based on aggregating into a grid" optional = true python-versions = ">=3.9" files = [ - {file = "datashader-0.16.0-py2.py3-none-any.whl", hash = "sha256:a2cb0f839067bf29cf6cc9c07a1dad35f0e4aed3768387056fcbac8748087bfa"}, - {file = "datashader-0.16.0.tar.gz", hash = "sha256:ed4c111957578dcb3fcff972d954f77586dafd71a7345fd5cd069d9fb050d0d1"}, + {file = "datashader-0.16.3-py2.py3-none-any.whl", hash = "sha256:90e7425f17b5dc597ab50facca1d16df53c4893708500ad89d4e64b6eb7238aa"}, + {file = "datashader-0.16.3.tar.gz", hash = "sha256:9d0040c7887f7a5a5edd374c297402fd208a62bf6845e87631b54f03b9ae479d"}, ] [package.dependencies] @@ -1005,6 +1015,7 @@ dask = "*" multipledispatch = "*" numba = "*" numpy = "*" +packaging = "*" pandas = "*" param = "*" pillow = "*" @@ -1015,43 +1026,43 @@ toolz = "*" xarray = "*" [package.extras] -all = ["bokeh (>3.1)", "codecov", "dask-geopandas", "fastparquet", "flake8", "geodatasets", "geopandas", "graphviz", "holoviews", "matplotlib (>=3.3)", "nbconvert", "nbformat", "nbsite (>=0.8.2,<0.9.0)", "nbsmoke[verify] (>0.5)", "netcdf4", "networkx", "numpydoc", "panel (>1.1)", "pyarrow", "pytest", "pytest-benchmark", "pytest-cov", "python-graphviz", "python-snappy", "rasterio", "rioxarray", "scikit-image", "shapely (>=2.0.0)", "spatialpandas", "streamz"] -doc = ["bokeh (>3.1)", "dask-geopandas", "fastparquet", "geodatasets", "geopandas", "graphviz", "holoviews", "matplotlib (>=3.3)", "nbsite (>=0.8.2,<0.9.0)", "networkx", "numpydoc", "panel (>1.1)", "python-graphviz", "python-snappy", "rasterio", "scikit-image", "shapely (>=2.0.0)", "spatialpandas", "streamz"] -examples = ["bokeh (>3.1)", "dask-geopandas", "geodatasets", "geopandas", "holoviews", "matplotlib (>=3.3)", "panel (>1.1)", "scikit-image", "shapely (>=2.0.0)", "spatialpandas"] -examples-extra = ["bokeh (>3.1)", "dask-geopandas", "fastparquet", "geodatasets", "geopandas", "graphviz", "holoviews", "matplotlib (>=3.3)", "networkx", "panel (>1.1)", "python-graphviz", "python-snappy", "rasterio", "scikit-image", "shapely (>=2.0.0)", "spatialpandas", "streamz"] +all = ["bokeh (>3.1)", "bokeh-sampledata", "dask-expr", "dask-geopandas", "fastparquet", "geodatasets", "geopandas", "graphviz", "holoviews", "matplotlib (>=3.3)", "nbsite (>=0.8.4,<0.9.0)", "nbval", "netcdf4", "networkx", "numpydoc", "panel (>1.1)", "psutil", "pyarrow", "pytest", "pytest-benchmark", "pytest-cov", "pytest-xdist", "python-graphviz", "python-snappy", "rasterio", "rioxarray", "scikit-image", "shapely (>=2.0.0)", "spatialpandas", "sphinxcontrib-mermaid", "streamz"] +doc = ["bokeh (>3.1)", "bokeh-sampledata", "dask-geopandas", "fastparquet", "geodatasets", "geopandas", "graphviz", "holoviews", "matplotlib (>=3.3)", "nbsite (>=0.8.4,<0.9.0)", "networkx", "numpydoc", "panel (>1.1)", "python-graphviz", "python-snappy", "rasterio", "scikit-image", "shapely (>=2.0.0)", "spatialpandas", "sphinxcontrib-mermaid", "streamz"] +examples = ["bokeh (>3.1)", "bokeh-sampledata", "dask-geopandas", "geodatasets", "geopandas", "holoviews", "matplotlib (>=3.3)", "panel (>1.1)", "scikit-image", "shapely (>=2.0.0)", "spatialpandas"] +examples-extra = ["bokeh (>3.1)", "bokeh-sampledata", "dask-geopandas", "fastparquet", "geodatasets", "geopandas", "graphviz", "holoviews", "matplotlib (>=3.3)", "networkx", "panel (>1.1)", "python-graphviz", "python-snappy", "rasterio", "scikit-image", "shapely (>=2.0.0)", "spatialpandas", "streamz"] geopandas = ["dask-geopandas", "geopandas", "shapely (>=2.0.0)"] gpu-tests = ["cudf", "cupy", "dask-cudf"] -tests = ["codecov", "dask-geopandas", "fastparquet", "flake8", "geodatasets", "geopandas", "nbconvert", "nbformat", "nbsmoke[verify] (>0.5)", "netcdf4", "pyarrow", "pytest", "pytest-benchmark", "pytest-cov", "rasterio", "rioxarray", "scikit-image", "shapely (>=2.0.0)", "spatialpandas"] +tests = ["dask-expr", "dask-geopandas", "geodatasets", "geopandas", "nbval", "netcdf4", "psutil", "pyarrow", "pytest", "pytest-benchmark", "pytest-cov", "pytest-xdist", "rasterio", "rioxarray", "scikit-image", "shapely (>=2.0.0)", "spatialpandas"] [[package]] name = "debugpy" -version = "1.8.1" +version = "1.8.2" description = "An implementation of the Debug Adapter Protocol for Python" optional = true python-versions = ">=3.8" files = [ - {file = "debugpy-1.8.1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:3bda0f1e943d386cc7a0e71bfa59f4137909e2ed947fb3946c506e113000f741"}, - {file = "debugpy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda73bf69ea479c8577a0448f8c707691152e6c4de7f0c4dec5a4bc11dee516e"}, - {file = "debugpy-1.8.1-cp310-cp310-win32.whl", hash = "sha256:3a79c6f62adef994b2dbe9fc2cc9cc3864a23575b6e387339ab739873bea53d0"}, - {file = "debugpy-1.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:7eb7bd2b56ea3bedb009616d9e2f64aab8fc7000d481faec3cd26c98a964bcdd"}, - {file = "debugpy-1.8.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:016a9fcfc2c6b57f939673c874310d8581d51a0fe0858e7fac4e240c5eb743cb"}, - {file = "debugpy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd97ed11a4c7f6d042d320ce03d83b20c3fb40da892f994bc041bbc415d7a099"}, - {file = "debugpy-1.8.1-cp311-cp311-win32.whl", hash = "sha256:0de56aba8249c28a300bdb0672a9b94785074eb82eb672db66c8144fff673146"}, - {file = "debugpy-1.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:1a9fe0829c2b854757b4fd0a338d93bc17249a3bf69ecf765c61d4c522bb92a8"}, - {file = "debugpy-1.8.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3ebb70ba1a6524d19fa7bb122f44b74170c447d5746a503e36adc244a20ac539"}, - {file = "debugpy-1.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2e658a9630f27534e63922ebf655a6ab60c370f4d2fc5c02a5b19baf4410ace"}, - {file = "debugpy-1.8.1-cp312-cp312-win32.whl", hash = "sha256:caad2846e21188797a1f17fc09c31b84c7c3c23baf2516fed5b40b378515bbf0"}, - {file = "debugpy-1.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:edcc9f58ec0fd121a25bc950d4578df47428d72e1a0d66c07403b04eb93bcf98"}, - {file = "debugpy-1.8.1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:7a3afa222f6fd3d9dfecd52729bc2e12c93e22a7491405a0ecbf9e1d32d45b39"}, - {file = "debugpy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d915a18f0597ef685e88bb35e5d7ab968964b7befefe1aaea1eb5b2640b586c7"}, - {file = "debugpy-1.8.1-cp38-cp38-win32.whl", hash = "sha256:92116039b5500633cc8d44ecc187abe2dfa9b90f7a82bbf81d079fcdd506bae9"}, - {file = "debugpy-1.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:e38beb7992b5afd9d5244e96ad5fa9135e94993b0c551ceebf3fe1a5d9beb234"}, - {file = "debugpy-1.8.1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:bfb20cb57486c8e4793d41996652e5a6a885b4d9175dd369045dad59eaacea42"}, - {file = "debugpy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efd3fdd3f67a7e576dd869c184c5dd71d9aaa36ded271939da352880c012e703"}, - {file = "debugpy-1.8.1-cp39-cp39-win32.whl", hash = "sha256:58911e8521ca0c785ac7a0539f1e77e0ce2df753f786188f382229278b4cdf23"}, - {file = "debugpy-1.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:6df9aa9599eb05ca179fb0b810282255202a66835c6efb1d112d21ecb830ddd3"}, - {file = "debugpy-1.8.1-py2.py3-none-any.whl", hash = "sha256:28acbe2241222b87e255260c76741e1fbf04fdc3b6d094fcf57b6c6f75ce1242"}, - {file = "debugpy-1.8.1.zip", hash = "sha256:f696d6be15be87aef621917585f9bb94b1dc9e8aced570db1b8a6fc14e8f9b42"}, + {file = "debugpy-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:7ee2e1afbf44b138c005e4380097d92532e1001580853a7cb40ed84e0ef1c3d2"}, + {file = "debugpy-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f8c3f7c53130a070f0fc845a0f2cee8ed88d220d6b04595897b66605df1edd6"}, + {file = "debugpy-1.8.2-cp310-cp310-win32.whl", hash = "sha256:f179af1e1bd4c88b0b9f0fa153569b24f6b6f3de33f94703336363ae62f4bf47"}, + {file = "debugpy-1.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:0600faef1d0b8d0e85c816b8bb0cb90ed94fc611f308d5fde28cb8b3d2ff0fe3"}, + {file = "debugpy-1.8.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:8a13417ccd5978a642e91fb79b871baded925d4fadd4dfafec1928196292aa0a"}, + {file = "debugpy-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acdf39855f65c48ac9667b2801234fc64d46778021efac2de7e50907ab90c634"}, + {file = "debugpy-1.8.2-cp311-cp311-win32.whl", hash = "sha256:2cbd4d9a2fc5e7f583ff9bf11f3b7d78dfda8401e8bb6856ad1ed190be4281ad"}, + {file = "debugpy-1.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:d3408fddd76414034c02880e891ea434e9a9cf3a69842098ef92f6e809d09afa"}, + {file = "debugpy-1.8.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:5d3ccd39e4021f2eb86b8d748a96c766058b39443c1f18b2dc52c10ac2757835"}, + {file = "debugpy-1.8.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62658aefe289598680193ff655ff3940e2a601765259b123dc7f89c0239b8cd3"}, + {file = "debugpy-1.8.2-cp312-cp312-win32.whl", hash = "sha256:bd11fe35d6fd3431f1546d94121322c0ac572e1bfb1f6be0e9b8655fb4ea941e"}, + {file = "debugpy-1.8.2-cp312-cp312-win_amd64.whl", hash = "sha256:15bc2f4b0f5e99bf86c162c91a74c0631dbd9cef3c6a1d1329c946586255e859"}, + {file = "debugpy-1.8.2-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:5a019d4574afedc6ead1daa22736c530712465c0c4cd44f820d803d937531b2d"}, + {file = "debugpy-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40f062d6877d2e45b112c0bbade9a17aac507445fd638922b1a5434df34aed02"}, + {file = "debugpy-1.8.2-cp38-cp38-win32.whl", hash = "sha256:c78ba1680f1015c0ca7115671fe347b28b446081dada3fedf54138f44e4ba031"}, + {file = "debugpy-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:cf327316ae0c0e7dd81eb92d24ba8b5e88bb4d1b585b5c0d32929274a66a5210"}, + {file = "debugpy-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:1523bc551e28e15147815d1397afc150ac99dbd3a8e64641d53425dba57b0ff9"}, + {file = "debugpy-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e24ccb0cd6f8bfaec68d577cb49e9c680621c336f347479b3fce060ba7c09ec1"}, + {file = "debugpy-1.8.2-cp39-cp39-win32.whl", hash = "sha256:7f8d57a98c5a486c5c7824bc0b9f2f11189d08d73635c326abef268f83950326"}, + {file = "debugpy-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:16c8dcab02617b75697a0a925a62943e26a0330da076e2a10437edd9f0bf3755"}, + {file = "debugpy-1.8.2-py2.py3-none-any.whl", hash = "sha256:16e16df3a98a35c63c3ab1e4d19be4cbc7fdda92d9ddc059294f18910928e0ca"}, + {file = "debugpy-1.8.2.zip", hash = "sha256:95378ed08ed2089221896b9b3a8d021e642c24edc8fef20e5d4342ca8be65c00"}, ] [[package]] @@ -1105,13 +1116,13 @@ files = [ [[package]] name = "donfig" -version = "0.8.1.post0" +version = "0.8.1.post1" description = "Python package for configuring a python package" optional = false python-versions = ">=3.8" files = [ - {file = "donfig-0.8.1.post0-py3-none-any.whl", hash = "sha256:907d3e9f77fada5ece376785c79b03d2690ffdcc35a1a17734f7521408d5ddde"}, - {file = "donfig-0.8.1.post0.tar.gz", hash = "sha256:3475689b8525313207b464738aaf2e8b9869385ea660322887a288437a1e9a3b"}, + {file = "donfig-0.8.1.post1-py3-none-any.whl", hash = "sha256:2a3175ce74a06109ff9307d90a230f81215cbac9a751f4d1c6194644b8204f9d"}, + {file = "donfig-0.8.1.post1.tar.gz", hash = "sha256:3bef3413a4c1c601b585e8d297256d0c1470ea012afa6e8461dc28bfb7c23f52"}, ] [package.dependencies] @@ -1123,12 +1134,13 @@ test = ["cloudpickle", "pytest"] [[package]] name = "eccodes" -version = "1.7.0" +version = "1.7.1" description = "Python interface to the ecCodes GRIB and BUFR decoder/encoder" optional = false python-versions = "*" files = [ - {file = "eccodes-1.7.0.tar.gz", hash = "sha256:0f233009eac228b99be6e40e5f7cc175b477d322bd91c0dac6bf226f0222cb17"}, + {file = "eccodes-1.7.1-py3-none-any.whl", hash = "sha256:feef7a17e8c2535e41460de704c03ab1d14f013ffbac233a88dda937672b1173"}, + {file = "eccodes-1.7.1.tar.gz", hash = "sha256:d3c7e9bab779d35b624cfd7b3331de111602cba6a6f6368efcc12407f30b2697"}, ] [package.dependencies] @@ -1173,13 +1185,13 @@ pytz = "*" [[package]] name = "exceptiongroup" -version = "1.2.0" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, - {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1240,13 +1252,13 @@ files = [ [[package]] name = "fastjsonschema" -version = "2.19.1" +version = "2.20.0" description = "Fastest Python implementation of JSON schema" optional = true python-versions = "*" files = [ - {file = "fastjsonschema-2.19.1-py3-none-any.whl", hash = "sha256:3672b47bc94178c9f23dbb654bf47440155d4db9df5f7bc47643315f9c405cd0"}, - {file = "fastjsonschema-2.19.1.tar.gz", hash = "sha256:e3126a94bdc4623d3de4485f8d468a12f02a67921315ddc87836d6e456dc789d"}, + {file = "fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a"}, + {file = "fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23"}, ] [package.extras] @@ -1262,103 +1274,55 @@ files = [ {file = "findlibs-0.0.5.tar.gz", hash = "sha256:7a801571e999d0ee83f9b92cbb598c21f861ee26ca9dba74cea8958ba4335e7e"}, ] -[[package]] -name = "fiona" -version = "1.9.6" -description = "Fiona reads and writes spatial data files" -optional = false -python-versions = ">=3.7" -files = [ - {file = "fiona-1.9.6-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:63e528b5ea3d8b1038d788e7c65117835c787ba7fdc94b1b42f09c2cbc0aaff2"}, - {file = "fiona-1.9.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:918bd27d8625416672e834593970f96dff63215108f81efb876fe5c0bc58a3b4"}, - {file = "fiona-1.9.6-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:e313210b30d09ed8f829bf625599e248dadd78622728030221f6526580ff26c5"}, - {file = "fiona-1.9.6-cp310-cp310-win_amd64.whl", hash = "sha256:89095c2d542325ee45894b8837e8048cdbb2f22274934e1be3b673ca628010d7"}, - {file = "fiona-1.9.6-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:98cea6f435843b2119731c6b0470e5b7386aa16b6aa7edabbf1ed93aefe029c3"}, - {file = "fiona-1.9.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f4230eccbd896a79d1ebfa551d84bf90f512f7bcbe1ca61e3f82231321f1a532"}, - {file = "fiona-1.9.6-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:48b6218224e96de5e36b5eb259f37160092260e5de0dcd82ca200b1887aa9884"}, - {file = "fiona-1.9.6-cp311-cp311-win_amd64.whl", hash = "sha256:c1dd5fbc29b7303bb87eb683455e8451e1a53bb8faf20ef97fdcd843c9e4a7f6"}, - {file = "fiona-1.9.6-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:42d8a0e5570948d3821c493b6141866d9a4d7a64edad2be4ecbb89f81904baac"}, - {file = "fiona-1.9.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39819fb8f5ec6d9971cb01b912b4431615a3d3f50c83798565d8ce41917930db"}, - {file = "fiona-1.9.6-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:9b53034efdf93ada9295b081e6a8280af7c75496a20df82d4c2ca46d65b85905"}, - {file = "fiona-1.9.6-cp312-cp312-win_amd64.whl", hash = "sha256:1dcd6eca7524535baf2a39d7981b4a46d33ae28c313934a7c3eae62eecf9dfa5"}, - {file = "fiona-1.9.6-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e5404ed08c711489abcb3a50a184816825b8af06eb73ad2a99e18b8e7b47c96a"}, - {file = "fiona-1.9.6-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:53bedd2989e255df1bf3378ae9c06d6d241ec273c280c544bb44ffffebb97fb0"}, - {file = "fiona-1.9.6-cp37-cp37m-win_amd64.whl", hash = "sha256:77653a08564a44e634c44cd74a068d2f55d1d4029edd16d1c8aadcc4d8cc1d2c"}, - {file = "fiona-1.9.6-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:e7617563b36d2be99f048f0d0054b4d765f4aae454398f88f19de9c2c324b7f8"}, - {file = "fiona-1.9.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:50037c3b7a5f6f434b562b5b1a5b664f1caa7a4383b00af23cdb59bfc6ba852c"}, - {file = "fiona-1.9.6-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:bf51846ad602757bf27876f458c5c9f14b09421fac612f64273cc4e3fcabc441"}, - {file = "fiona-1.9.6-cp38-cp38-win_amd64.whl", hash = "sha256:11af1afc1255642a7787fe112c29d01f968f1053e4d4700fc6f3bb879c1622e0"}, - {file = "fiona-1.9.6-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:52e8fec650b72fc5253d8f86b63859acc687182281c29bfacd3930496cf982d1"}, - {file = "fiona-1.9.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c9b92aa1badb2773e7cac19bef3064d73e9d80c67c42f0928db2520a04be6f2f"}, - {file = "fiona-1.9.6-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:0eaffbf3bfae9960484c0c08ea461b0c40e111497f04e9475ebf15ac7a22d9dc"}, - {file = "fiona-1.9.6-cp39-cp39-win_amd64.whl", hash = "sha256:f1b49d51a744874608b689f029766aa1e078dd72e94b44cf8eeef6d7bd2e9051"}, - {file = "fiona-1.9.6.tar.gz", hash = "sha256:791b3494f8b218c06ea56f892bd6ba893dfa23525347761d066fb7738acda3b1"}, -] - -[package.dependencies] -attrs = ">=19.2.0" -certifi = "*" -click = ">=8.0,<9.0" -click-plugins = ">=1.0" -cligj = ">=0.5" -importlib-metadata = {version = "*", markers = "python_version < \"3.10\""} -six = "*" - -[package.extras] -all = ["fiona[calc,s3,test]"] -calc = ["shapely"] -s3 = ["boto3 (>=1.3.1)"] -test = ["fiona[s3]", "pytest (>=7)", "pytest-cov", "pytz"] - [[package]] name = "fonttools" -version = "4.51.0" +version = "4.53.1" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.51.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:84d7751f4468dd8cdd03ddada18b8b0857a5beec80bce9f435742abc9a851a74"}, - {file = "fonttools-4.51.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8b4850fa2ef2cfbc1d1f689bc159ef0f45d8d83298c1425838095bf53ef46308"}, - {file = "fonttools-4.51.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5b48a1121117047d82695d276c2af2ee3a24ffe0f502ed581acc2673ecf1037"}, - {file = "fonttools-4.51.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:180194c7fe60c989bb627d7ed5011f2bef1c4d36ecf3ec64daec8302f1ae0716"}, - {file = "fonttools-4.51.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:96a48e137c36be55e68845fc4284533bda2980f8d6f835e26bca79d7e2006438"}, - {file = "fonttools-4.51.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:806e7912c32a657fa39d2d6eb1d3012d35f841387c8fc6cf349ed70b7c340039"}, - {file = "fonttools-4.51.0-cp310-cp310-win32.whl", hash = "sha256:32b17504696f605e9e960647c5f64b35704782a502cc26a37b800b4d69ff3c77"}, - {file = "fonttools-4.51.0-cp310-cp310-win_amd64.whl", hash = "sha256:c7e91abdfae1b5c9e3a543f48ce96013f9a08c6c9668f1e6be0beabf0a569c1b"}, - {file = "fonttools-4.51.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a8feca65bab31479d795b0d16c9a9852902e3a3c0630678efb0b2b7941ea9c74"}, - {file = "fonttools-4.51.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ac27f436e8af7779f0bb4d5425aa3535270494d3bc5459ed27de3f03151e4c2"}, - {file = "fonttools-4.51.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e19bd9e9964a09cd2433a4b100ca7f34e34731e0758e13ba9a1ed6e5468cc0f"}, - {file = "fonttools-4.51.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2b92381f37b39ba2fc98c3a45a9d6383bfc9916a87d66ccb6553f7bdd129097"}, - {file = "fonttools-4.51.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5f6bc991d1610f5c3bbe997b0233cbc234b8e82fa99fc0b2932dc1ca5e5afec0"}, - {file = "fonttools-4.51.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9696fe9f3f0c32e9a321d5268208a7cc9205a52f99b89479d1b035ed54c923f1"}, - {file = "fonttools-4.51.0-cp311-cp311-win32.whl", hash = "sha256:3bee3f3bd9fa1d5ee616ccfd13b27ca605c2b4270e45715bd2883e9504735034"}, - {file = "fonttools-4.51.0-cp311-cp311-win_amd64.whl", hash = "sha256:0f08c901d3866a8905363619e3741c33f0a83a680d92a9f0e575985c2634fcc1"}, - {file = "fonttools-4.51.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4060acc2bfa2d8e98117828a238889f13b6f69d59f4f2d5857eece5277b829ba"}, - {file = "fonttools-4.51.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1250e818b5f8a679ad79660855528120a8f0288f8f30ec88b83db51515411fcc"}, - {file = "fonttools-4.51.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76f1777d8b3386479ffb4a282e74318e730014d86ce60f016908d9801af9ca2a"}, - {file = "fonttools-4.51.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b5ad456813d93b9c4b7ee55302208db2b45324315129d85275c01f5cb7e61a2"}, - {file = "fonttools-4.51.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:68b3fb7775a923be73e739f92f7e8a72725fd333eab24834041365d2278c3671"}, - {file = "fonttools-4.51.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8e2f1a4499e3b5ee82c19b5ee57f0294673125c65b0a1ff3764ea1f9db2f9ef5"}, - {file = "fonttools-4.51.0-cp312-cp312-win32.whl", hash = "sha256:278e50f6b003c6aed19bae2242b364e575bcb16304b53f2b64f6551b9c000e15"}, - {file = "fonttools-4.51.0-cp312-cp312-win_amd64.whl", hash = "sha256:b3c61423f22165541b9403ee39874dcae84cd57a9078b82e1dce8cb06b07fa2e"}, - {file = "fonttools-4.51.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1621ee57da887c17312acc4b0e7ac30d3a4fb0fec6174b2e3754a74c26bbed1e"}, - {file = "fonttools-4.51.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e9d9298be7a05bb4801f558522adbe2feea1b0b103d5294ebf24a92dd49b78e5"}, - {file = "fonttools-4.51.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee1af4be1c5afe4c96ca23badd368d8dc75f611887fb0c0dac9f71ee5d6f110e"}, - {file = "fonttools-4.51.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c18b49adc721a7d0b8dfe7c3130c89b8704baf599fb396396d07d4aa69b824a1"}, - {file = "fonttools-4.51.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de7c29bdbdd35811f14493ffd2534b88f0ce1b9065316433b22d63ca1cd21f14"}, - {file = "fonttools-4.51.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:cadf4e12a608ef1d13e039864f484c8a968840afa0258b0b843a0556497ea9ed"}, - {file = "fonttools-4.51.0-cp38-cp38-win32.whl", hash = "sha256:aefa011207ed36cd280babfaa8510b8176f1a77261833e895a9d96e57e44802f"}, - {file = "fonttools-4.51.0-cp38-cp38-win_amd64.whl", hash = "sha256:865a58b6e60b0938874af0968cd0553bcd88e0b2cb6e588727117bd099eef836"}, - {file = "fonttools-4.51.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:60a3409c9112aec02d5fb546f557bca6efa773dcb32ac147c6baf5f742e6258b"}, - {file = "fonttools-4.51.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f7e89853d8bea103c8e3514b9f9dc86b5b4120afb4583b57eb10dfa5afbe0936"}, - {file = "fonttools-4.51.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56fc244f2585d6c00b9bcc59e6593e646cf095a96fe68d62cd4da53dd1287b55"}, - {file = "fonttools-4.51.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d145976194a5242fdd22df18a1b451481a88071feadf251221af110ca8f00ce"}, - {file = "fonttools-4.51.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5b8cab0c137ca229433570151b5c1fc6af212680b58b15abd797dcdd9dd5051"}, - {file = "fonttools-4.51.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:54dcf21a2f2d06ded676e3c3f9f74b2bafded3a8ff12f0983160b13e9f2fb4a7"}, - {file = "fonttools-4.51.0-cp39-cp39-win32.whl", hash = "sha256:0118ef998a0699a96c7b28457f15546815015a2710a1b23a7bf6c1be60c01636"}, - {file = "fonttools-4.51.0-cp39-cp39-win_amd64.whl", hash = "sha256:599bdb75e220241cedc6faebfafedd7670335d2e29620d207dd0378a4e9ccc5a"}, - {file = "fonttools-4.51.0-py3-none-any.whl", hash = "sha256:15c94eeef6b095831067f72c825eb0e2d48bb4cea0647c1b05c981ecba2bf39f"}, - {file = "fonttools-4.51.0.tar.gz", hash = "sha256:dc0673361331566d7a663d7ce0f6fdcbfbdc1f59c6e3ed1165ad7202ca183c68"}, + {file = "fonttools-4.53.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0679a30b59d74b6242909945429dbddb08496935b82f91ea9bf6ad240ec23397"}, + {file = "fonttools-4.53.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8bf06b94694251861ba7fdeea15c8ec0967f84c3d4143ae9daf42bbc7717fe3"}, + {file = "fonttools-4.53.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b96cd370a61f4d083c9c0053bf634279b094308d52fdc2dd9a22d8372fdd590d"}, + {file = "fonttools-4.53.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1c7c5aa18dd3b17995898b4a9b5929d69ef6ae2af5b96d585ff4005033d82f0"}, + {file = "fonttools-4.53.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e013aae589c1c12505da64a7d8d023e584987e51e62006e1bb30d72f26522c41"}, + {file = "fonttools-4.53.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9efd176f874cb6402e607e4cc9b4a9cd584d82fc34a4b0c811970b32ba62501f"}, + {file = "fonttools-4.53.1-cp310-cp310-win32.whl", hash = "sha256:c8696544c964500aa9439efb6761947393b70b17ef4e82d73277413f291260a4"}, + {file = "fonttools-4.53.1-cp310-cp310-win_amd64.whl", hash = "sha256:8959a59de5af6d2bec27489e98ef25a397cfa1774b375d5787509c06659b3671"}, + {file = "fonttools-4.53.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:da33440b1413bad53a8674393c5d29ce64d8c1a15ef8a77c642ffd900d07bfe1"}, + {file = "fonttools-4.53.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ff7e5e9bad94e3a70c5cd2fa27f20b9bb9385e10cddab567b85ce5d306ea923"}, + {file = "fonttools-4.53.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6e7170d675d12eac12ad1a981d90f118c06cf680b42a2d74c6c931e54b50719"}, + {file = "fonttools-4.53.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bee32ea8765e859670c4447b0817514ca79054463b6b79784b08a8df3a4d78e3"}, + {file = "fonttools-4.53.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6e08f572625a1ee682115223eabebc4c6a2035a6917eac6f60350aba297ccadb"}, + {file = "fonttools-4.53.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b21952c092ffd827504de7e66b62aba26fdb5f9d1e435c52477e6486e9d128b2"}, + {file = "fonttools-4.53.1-cp311-cp311-win32.whl", hash = "sha256:9dfdae43b7996af46ff9da520998a32b105c7f098aeea06b2226b30e74fbba88"}, + {file = "fonttools-4.53.1-cp311-cp311-win_amd64.whl", hash = "sha256:d4d0096cb1ac7a77b3b41cd78c9b6bc4a400550e21dc7a92f2b5ab53ed74eb02"}, + {file = "fonttools-4.53.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d92d3c2a1b39631a6131c2fa25b5406855f97969b068e7e08413325bc0afba58"}, + {file = "fonttools-4.53.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3b3c8ebafbee8d9002bd8f1195d09ed2bd9ff134ddec37ee8f6a6375e6a4f0e8"}, + {file = "fonttools-4.53.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32f029c095ad66c425b0ee85553d0dc326d45d7059dbc227330fc29b43e8ba60"}, + {file = "fonttools-4.53.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10f5e6c3510b79ea27bb1ebfcc67048cde9ec67afa87c7dd7efa5c700491ac7f"}, + {file = "fonttools-4.53.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f677ce218976496a587ab17140da141557beb91d2a5c1a14212c994093f2eae2"}, + {file = "fonttools-4.53.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9e6ceba2a01b448e36754983d376064730690401da1dd104ddb543519470a15f"}, + {file = "fonttools-4.53.1-cp312-cp312-win32.whl", hash = "sha256:791b31ebbc05197d7aa096bbc7bd76d591f05905d2fd908bf103af4488e60670"}, + {file = "fonttools-4.53.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ed170b5e17da0264b9f6fae86073be3db15fa1bd74061c8331022bca6d09bab"}, + {file = "fonttools-4.53.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c818c058404eb2bba05e728d38049438afd649e3c409796723dfc17cd3f08749"}, + {file = "fonttools-4.53.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:651390c3b26b0c7d1f4407cad281ee7a5a85a31a110cbac5269de72a51551ba2"}, + {file = "fonttools-4.53.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54f1bba2f655924c1138bbc7fa91abd61f45c68bd65ab5ed985942712864bbb"}, + {file = "fonttools-4.53.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9cd19cf4fe0595ebdd1d4915882b9440c3a6d30b008f3cc7587c1da7b95be5f"}, + {file = "fonttools-4.53.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:2af40ae9cdcb204fc1d8f26b190aa16534fcd4f0df756268df674a270eab575d"}, + {file = "fonttools-4.53.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:35250099b0cfb32d799fb5d6c651220a642fe2e3c7d2560490e6f1d3f9ae9169"}, + {file = "fonttools-4.53.1-cp38-cp38-win32.whl", hash = "sha256:f08df60fbd8d289152079a65da4e66a447efc1d5d5a4d3f299cdd39e3b2e4a7d"}, + {file = "fonttools-4.53.1-cp38-cp38-win_amd64.whl", hash = "sha256:7b6b35e52ddc8fb0db562133894e6ef5b4e54e1283dff606fda3eed938c36fc8"}, + {file = "fonttools-4.53.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75a157d8d26c06e64ace9df037ee93a4938a4606a38cb7ffaf6635e60e253b7a"}, + {file = "fonttools-4.53.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4824c198f714ab5559c5be10fd1adf876712aa7989882a4ec887bf1ef3e00e31"}, + {file = "fonttools-4.53.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:becc5d7cb89c7b7afa8321b6bb3dbee0eec2b57855c90b3e9bf5fb816671fa7c"}, + {file = "fonttools-4.53.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84ec3fb43befb54be490147b4a922b5314e16372a643004f182babee9f9c3407"}, + {file = "fonttools-4.53.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:73379d3ffdeecb376640cd8ed03e9d2d0e568c9d1a4e9b16504a834ebadc2dfb"}, + {file = "fonttools-4.53.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:02569e9a810f9d11f4ae82c391ebc6fb5730d95a0657d24d754ed7763fb2d122"}, + {file = "fonttools-4.53.1-cp39-cp39-win32.whl", hash = "sha256:aae7bd54187e8bf7fd69f8ab87b2885253d3575163ad4d669a262fe97f0136cb"}, + {file = "fonttools-4.53.1-cp39-cp39-win_amd64.whl", hash = "sha256:e5b708073ea3d684235648786f5f6153a48dc8762cdfe5563c57e80787c29fbb"}, + {file = "fonttools-4.53.1-py3-none-any.whl", hash = "sha256:f1f8758a2ad110bd6432203a344269f445a2907dc24ef6bccfd0ac4e14e0d71d"}, + {file = "fonttools-4.53.1.tar.gz", hash = "sha256:e128778a8e9bc11159ce5447f76766cefbd876f44bd79aff030287254e4752c4"}, ] [package.extras] @@ -1377,13 +1341,13 @@ woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] name = "fsspec" -version = "2024.3.1" +version = "2024.6.1" description = "File-system specification" optional = false python-versions = ">=3.8" files = [ - {file = "fsspec-2024.3.1-py3-none-any.whl", hash = "sha256:918d18d41bf73f0e2b261824baeb1b124bcf771767e3a26425cd7dec3332f512"}, - {file = "fsspec-2024.3.1.tar.gz", hash = "sha256:f39780e282d7d117ffb42bb96992f8a90795e4d0fb0f661a70ca39fe9c43ded9"}, + {file = "fsspec-2024.6.1-py3-none-any.whl", hash = "sha256:3cb443f8bcd2efb31295a5b9fdb02aee81d8452c80d28f97a6d0959e6cee101e"}, + {file = "fsspec-2024.6.1.tar.gz", hash = "sha256:fad7d7e209dd4c1208e3bbfda706620e0da5142bebbd9c384afb95b07e798e49"}, ] [package.extras] @@ -1391,7 +1355,8 @@ abfs = ["adlfs"] adl = ["adlfs"] arrow = ["pyarrow (>=1)"] dask = ["dask", "distributed"] -devel = ["pytest", "pytest-cov"] +dev = ["pre-commit", "ruff"] +doc = ["numpydoc", "sphinx", "sphinx-design", "sphinx-rtd-theme", "yarl"] dropbox = ["dropbox", "dropboxdrivefs", "requests"] full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"] fuse = ["fusepy"] @@ -1408,25 +1373,33 @@ s3 = ["s3fs"] sftp = ["paramiko"] smb = ["smbprotocol"] ssh = ["paramiko"] +test = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "numpy", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "requests"] +test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask-expr", "dask[dataframe,test]", "moto[server] (>4,<5)", "pytest-timeout", "xarray"] +test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"] tqdm = ["tqdm"] [[package]] name = "geopandas" -version = "0.14.3" +version = "1.0.1" description = "Geographic pandas extensions" optional = false python-versions = ">=3.9" files = [ - {file = "geopandas-0.14.3-py3-none-any.whl", hash = "sha256:41b31ad39e21bc9e8c4254f78f8dc4ce3d33d144e22e630a00bb336c83160204"}, - {file = "geopandas-0.14.3.tar.gz", hash = "sha256:748af035d4a068a4ae00cab384acb61d387685c833b0022e0729aa45216b23ac"}, + {file = "geopandas-1.0.1-py3-none-any.whl", hash = "sha256:01e147d9420cc374d26f51fc23716ac307f32b49406e4bd8462c07e82ed1d3d6"}, + {file = "geopandas-1.0.1.tar.gz", hash = "sha256:b8bf70a5534588205b7a56646e2082fb1de9a03599651b3d80c99ea4c2ca08ab"}, ] [package.dependencies] -fiona = ">=1.8.21" +numpy = ">=1.22" packaging = "*" pandas = ">=1.4.0" +pyogrio = ">=0.7.2" pyproj = ">=3.3.0" -shapely = ">=1.8.0" +shapely = ">=2.0.0" + +[package.extras] +all = ["GeoAlchemy2", "SQLAlchemy (>=1.3)", "folium", "geopy", "mapclassify", "matplotlib (>=3.5.0)", "psycopg-binary (>=3.1.0)", "pyarrow (>=8.0.0)", "xyzservices"] +dev = ["black", "codecov", "pre-commit", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"] [[package]] name = "geoviews" @@ -1489,15 +1462,15 @@ dev = ["flake8", "markdown", "twine", "wheel"] [[package]] name = "gmsh" -version = "4.12.2" +version = "4.13.1" description = "Gmsh is a three-dimensional finite element mesh generator with built-in pre- and post-processing facilities." optional = false python-versions = "*" files = [ - {file = "gmsh-4.12.2-py2.py3-none-macosx_10_15_x86_64.whl", hash = "sha256:28d91487f1666eacbcf3b24bf832ee5e4e09acfb8cff966e90a263623fbd26e0"}, - {file = "gmsh-4.12.2-py2.py3-none-macosx_12_0_arm64.whl", hash = "sha256:0620c62006443da23fffb211e6c579bf284b2340a1b9a74b5636b3367fc14096"}, - {file = "gmsh-4.12.2-py2.py3-none-manylinux_2_24_x86_64.whl", hash = "sha256:df6981be2dee9e6083a6d4f6a9b1d1ebd56e7c0cf2ed49ae97bc791f268af78e"}, - {file = "gmsh-4.12.2-py2.py3-none-win_amd64.whl", hash = "sha256:3af271f67efe7cb921fbcbd66bf994bf0e556324cc3b33b6ae582359cb12cd9e"}, + {file = "gmsh-4.13.1-py2.py3-none-macosx_10_15_x86_64.whl", hash = "sha256:24ae76443d9df1fd10661c499cbfd0c877677b10b96d5bd72cd07e54aba1df55"}, + {file = "gmsh-4.13.1-py2.py3-none-macosx_12_0_arm64.whl", hash = "sha256:179cfb7ce5d90c6695403cdd8a2cd23ec1a42b14f3485d814bc0eff9403c3204"}, + {file = "gmsh-4.13.1-py2.py3-none-manylinux_2_24_x86_64.whl", hash = "sha256:89ab53b6ec28f099b723da35bcdb6f5df779b10a9c0e6b09e8059906c3a48b27"}, + {file = "gmsh-4.13.1-py2.py3-none-win_amd64.whl", hash = "sha256:00f3c86b3146c1af1259e695ed646880c9da0c2ded2d1e48b240a1d3d194bae6"}, ] [[package]] @@ -1513,40 +1486,28 @@ files = [ [[package]] name = "holoviews" -version = "1.18.3" -description = "Stop plotting your data - annotate your data and let it visualize itself." +version = "1.19.1" +description = "A high-level plotting API for the PyData ecosystem built on HoloViews." optional = true python-versions = ">=3.9" files = [ - {file = "holoviews-1.18.3-py2.py3-none-any.whl", hash = "sha256:b94b96560b64a84c07e89115aaf9b226e6009684800ec84d3c88cbad122c0c46"}, - {file = "holoviews-1.18.3.tar.gz", hash = "sha256:578e30e89d72754f97a83ebe08198fec8e87cc7e49b25b9f31ec393f939ca500"}, + {file = "holoviews-1.19.1-py3-none-any.whl", hash = "sha256:4dc95b8b35082885f74b72ea832bab6b6fca54e12556b2275fcd990beaf12cb7"}, + {file = "holoviews-1.19.1.tar.gz", hash = "sha256:b9e85e8c07275a456c0ef8d06bc157d02b37eff66fb3602aa12f5c86f084865c"}, ] [package.dependencies] +bokeh = ">=3.1" colorcet = "*" -numpy = ">=1.0" +numpy = ">=1.21" packaging = "*" -pandas = ">=0.20.0" +pandas = ">=1.3" panel = ">=1.0" -param = ">=1.12.0,<3.0" -pyviz-comms = ">=0.7.4" +param = ">=2.0,<3.0" +pyviz-comms = ">=2.1" [package.extras] -all = ["bokeh (>=3.1)", "cftime", "codecov", "contourpy", "cudf", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "graphviz", "ibis-framework", "ipython (>=5.4.0)", "matplotlib (>=3)", "myst-nb (<1)", "nbconvert", "nbsite (>=0.8.4,<0.9.0)", "nbval", "netcdf4", "networkx", "notebook", "notebook (>=7.0)", "pillow", "playwright", "plotly (>=4.0)", "pooch", "pre-commit", "pyarrow", "pytest", "pytest-cov", "pytest-github-actions-annotate-failures", "pytest-playwright", "pytest-rerunfailures", "pytest-xdist", "ruff", "scikit-image", "scipy", "scipy (>=1.10)", "selenium", "shapely", "spatialpandas", "streamz (>=0.5.0)", "xarray (>=0.10.4)"] -build = ["param (>=1.7.0)", "pyct (>=0.4.4)", "setuptools (>=30.3.0)"] -doc = ["bokeh (>=3.1)", "cftime", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "graphviz", "ipython (>=5.4.0)", "matplotlib (>=3)", "myst-nb (<1)", "nbsite (>=0.8.4,<0.9.0)", "netcdf4", "networkx", "notebook", "notebook (>=7.0)", "pillow", "plotly (>=4.0)", "pooch", "pyarrow", "scikit-image", "scipy", "selenium", "shapely", "streamz (>=0.5.0)", "xarray (>=0.10.4)"] -examples = ["bokeh (>=3.1)", "cftime", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "ipython (>=5.4.0)", "matplotlib (>=3)", "netcdf4", "networkx", "notebook", "notebook (>=7.0)", "pillow", "plotly (>=4.0)", "pooch", "pyarrow", "scikit-image", "scipy", "shapely", "streamz (>=0.5.0)", "xarray (>=0.10.4)"] -examples-tests = ["bokeh (>=3.1)", "cftime", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "ipython (>=5.4.0)", "matplotlib (>=3)", "nbval", "netcdf4", "networkx", "notebook", "notebook (>=7.0)", "pillow", "plotly (>=4.0)", "pooch", "pyarrow", "scikit-image", "scipy", "shapely", "streamz (>=0.5.0)", "xarray (>=0.10.4)"] -lint = ["pre-commit", "ruff"] -notebook = ["ipython (>=5.4.0)", "notebook"] -recommended = ["bokeh (>=3.1)", "ipython (>=5.4.0)", "matplotlib (>=3)", "notebook"] -tests = ["bokeh (>=3.1)", "cftime", "contourpy", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "ibis-framework", "ipython (>=5.4.0)", "matplotlib (>=3)", "nbconvert", "networkx", "pillow", "plotly (>=4.0)", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "scipy (>=1.10)", "selenium", "shapely", "spatialpandas", "xarray (>=0.10.4)"] -tests-ci = ["codecov", "pytest-github-actions-annotate-failures"] -tests-core = ["bokeh (>=3.1)", "contourpy", "ipython (>=5.4.0)", "matplotlib (>=3)", "nbconvert", "pillow", "plotly (>=4.0)", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist"] -tests-gpu = ["bokeh (>=3.1)", "cftime", "contourpy", "cudf", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "ibis-framework", "ipython (>=5.4.0)", "matplotlib (>=3)", "nbconvert", "networkx", "pillow", "plotly (>=4.0)", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "scipy (>=1.10)", "selenium", "shapely", "spatialpandas", "xarray (>=0.10.4)"] -tests-nb = ["nbval"] -ui = ["playwright", "pytest-playwright"] -unit-tests = ["bokeh (>=3.1)", "cftime", "contourpy", "dash (>=1.16)", "dask", "datashader (>=0.11.1)", "ffmpeg", "ibis-framework", "ipython (>=5.4.0)", "matplotlib (>=3)", "nbconvert", "netcdf4", "networkx", "notebook", "notebook (>=7.0)", "pillow", "plotly (>=4.0)", "pooch", "pre-commit", "pyarrow", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "ruff", "scikit-image", "scipy", "scipy (>=1.10)", "selenium", "shapely", "spatialpandas", "streamz (>=0.5.0)", "xarray (>=0.10.4)"] +recommended = ["matplotlib (>=3)", "plotly (>=4.0)"] +tests = ["pytest", "pytest-rerunfailures"] [[package]] name = "html5lib" @@ -1616,13 +1577,13 @@ socks = ["socksio (==1.*)"] [[package]] name = "hvplot" -version = "0.9.2" +version = "0.10.0" description = "A high-level plotting API for the PyData ecosystem built on HoloViews." optional = true python-versions = ">=3.8" files = [ - {file = "hvplot-0.9.2-py2.py3-none-any.whl", hash = "sha256:271dda9ea8ea5fef2aff335010f7760c90281d7242d7bd8d5df262b4914ef990"}, - {file = "hvplot-0.9.2.tar.gz", hash = "sha256:9a8c9e9249139aaa3dee5f1cea0f93cf36374d179e986705fcddc2b92c470793"}, + {file = "hvplot-0.10.0-py3-none-any.whl", hash = "sha256:fe90ccb48163a6a62ae5bd6b008c2cb15cbf5b276f6ad6839ef5470b1c480d16"}, + {file = "hvplot-0.10.0.tar.gz", hash = "sha256:e87486a95bfe151ab52ef163a5e93d9cbd043992cf0b755ccadd2bf36fedd376"}, ] [package.dependencies] @@ -1636,44 +1597,48 @@ panel = ">=0.11.0" param = ">=1.12.0,<3.0" [package.extras] -all = ["cartopy", "codecov", "dask", "dask (>=2021.3.0)", "datashader (>=0.6.5)", "fiona", "flake8", "fugue", "geopandas", "geoviews (>=1.9.0)", "ibis-framework", "intake (>=0.6.5)", "intake-parquet (>=0.2.3)", "intake-xarray (>=0.5.0)", "ipywidgets", "matplotlib", "nbsite (>=0.8.4)", "nbval", "networkx (>=2.6.3)", "notebook (>=5.4)", "numba (>=0.51.0)", "param (>=1.7.0)", "parameterized", "pillow (>=8.2.0)", "plotly", "polars", "pooch", "pooch (>=1.6.0)", "pre-commit", "pyct (>=0.4.4)", "pygraphviz", "pyproj", "pytest", "pytest-cov", "pytest-xdist", "python-snappy (>=0.6.0)", "rasterio", "rioxarray", "s3fs (>=2022.1.0)", "scikit-image (>=0.17.2)", "scipy", "scipy (>=1.5.3)", "selenium (>=3.141.0)", "setuptools (>=30.3.0)", "spatialpandas (>=0.4.3)", "sphinxext-rediraffe", "streamz (>=0.3.0)", "xarray", "xarray (>=0.18.2)"] -build = ["param (>=1.7.0)", "pyct (>=0.4.4)", "setuptools (>=30.3.0)"] -doc = ["cartopy", "dask (>=2021.3.0)", "datashader (>=0.6.5)", "fiona", "fugue", "geopandas", "geoviews (>=1.9.0)", "ibis-framework", "intake (>=0.6.5)", "intake-parquet (>=0.2.3)", "intake-xarray (>=0.5.0)", "ipywidgets", "matplotlib", "nbsite (>=0.8.4)", "networkx (>=2.6.3)", "notebook (>=5.4)", "numba (>=0.51.0)", "pillow (>=8.2.0)", "plotly", "polars", "pooch (>=1.6.0)", "pygraphviz", "pyproj", "python-snappy (>=0.6.0)", "rasterio", "rioxarray", "s3fs (>=2022.1.0)", "scikit-image (>=0.17.2)", "scipy (>=1.5.3)", "selenium (>=3.141.0)", "spatialpandas (>=0.4.3)", "sphinxext-rediraffe", "streamz (>=0.3.0)", "xarray (>=0.18.2)"] -examples = ["cartopy", "dask (>=2021.3.0)", "datashader (>=0.6.5)", "fiona", "fugue", "geopandas", "geoviews (>=1.9.0)", "ibis-framework", "intake (>=0.6.5)", "intake-parquet (>=0.2.3)", "intake-xarray (>=0.5.0)", "ipywidgets", "matplotlib", "networkx (>=2.6.3)", "notebook (>=5.4)", "numba (>=0.51.0)", "pillow (>=8.2.0)", "plotly", "polars", "pooch (>=1.6.0)", "pygraphviz", "pyproj", "python-snappy (>=0.6.0)", "rasterio", "rioxarray", "s3fs (>=2022.1.0)", "scikit-image (>=0.17.2)", "scipy (>=1.5.3)", "selenium (>=3.141.0)", "spatialpandas (>=0.4.3)", "streamz (>=0.3.0)", "xarray (>=0.18.2)"] -examples-tests = ["cartopy", "dask (>=2021.3.0)", "datashader (>=0.6.5)", "fiona", "fugue", "geopandas", "geoviews (>=1.9.0)", "ibis-framework", "intake (>=0.6.5)", "intake-parquet (>=0.2.3)", "intake-xarray (>=0.5.0)", "ipywidgets", "matplotlib", "nbval", "networkx (>=2.6.3)", "notebook (>=5.4)", "numba (>=0.51.0)", "pillow (>=8.2.0)", "plotly", "polars", "pooch (>=1.6.0)", "pygraphviz", "pyproj", "pytest-xdist", "python-snappy (>=0.6.0)", "rasterio", "rioxarray", "s3fs (>=2022.1.0)", "scikit-image (>=0.17.2)", "scipy (>=1.5.3)", "selenium (>=3.141.0)", "spatialpandas (>=0.4.3)", "streamz (>=0.3.0)", "xarray (>=0.18.2)"] -tests = ["codecov", "dask", "flake8", "fugue", "ibis-framework", "ipywidgets", "matplotlib", "parameterized", "plotly", "polars", "pooch", "pre-commit", "pytest", "pytest-cov", "scipy", "xarray"] -tests-core = ["codecov", "dask", "flake8", "ipywidgets", "matplotlib", "parameterized", "plotly", "pooch", "pre-commit", "pytest", "pytest-cov", "scipy", "xarray"] +dev-extras = ["setuptools-scm (>=6)"] +doc = ["hvplot[examples]", "nbsite (>=0.8.4)", "sphinxext-rediraffe"] +examples = ["dask[dataframe] (>=2021.3.0)", "datashader (>=0.6.5)", "fugue[sql]", "geodatasets (>=2023.12.0)", "hvplot[fugue-sql]", "ibis-framework[duckdb]", "intake (>=0.6.5,<2.0.0)", "intake-parquet (>=0.2.3)", "intake-xarray (>=0.5.0)", "ipywidgets", "matplotlib", "networkx (>=2.6.3)", "notebook (>=5.4)", "numba (>=0.51.0)", "pillow (>=8.2.0)", "plotly", "polars", "pooch (>=1.6.0)", "s3fs (>=2022.1.0)", "scikit-image (>=0.17.2)", "scipy (>=1.5.3)", "selenium (>=3.141.0)", "streamz (>=0.3.0)", "xarray (>=0.18.2)", "xyzservices (>=2022.9.0)"] +examples-tests = ["hvplot[examples]", "hvplot[tests-nb]"] +fugue-sql = ["fugue-sql-antlr (>=0.2.0)", "jinja2", "qpd (>=0.4.4)", "sqlglot"] +geo = ["cartopy", "fiona", "geopandas", "geoviews (>=1.9.0)", "pyproj", "rasterio", "rioxarray", "spatialpandas (>=0.4.3)"] +graphviz = ["pygraphviz"] +hvdev = ["colorcet (>=0.0.1a1)", "datashader (>=0.0.1a1)", "holoviews (>=0.0.1a1)", "panel (>=0.0.1a1)", "param (>=0.0.1a1)", "pyviz-comms (>=0.0.1a1)"] +hvdev-geo = ["geoviews (>=0.0.1a1)"] +tests = ["fugue[sql]", "hvplot[fugue-sql]", "hvplot[tests-core]", "ibis-framework[duckdb]", "polars"] +tests-core = ["dask[dataframe]", "ipywidgets", "matplotlib", "parameterized", "plotly", "pooch", "pre-commit", "pytest", "pytest-cov", "ruff", "scipy", "xarray"] tests-nb = ["nbval", "pytest-xdist"] [[package]] name = "idna" -version = "3.6" +version = "3.7" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.5" files = [ - {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, - {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, + {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, + {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, ] [[package]] name = "importlib-metadata" -version = "7.1.0" +version = "8.0.0" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-7.1.0-py3-none-any.whl", hash = "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570"}, - {file = "importlib_metadata-7.1.0.tar.gz", hash = "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2"}, + {file = "importlib_metadata-8.0.0-py3-none-any.whl", hash = "sha256:15584cf2b1bf449d98ff8a6ff1abef57bf20f3ac6454f431736cd3e660921b2f"}, + {file = "importlib_metadata-8.0.0.tar.gz", hash = "sha256:188bd24e4c346d3f0a933f275c2fec67050326a856b9a359881d7c2a697e8812"}, ] [package.dependencies] zipp = ">=0.5" [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] perf = ["ipython"] -testing = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] +test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] [[package]] name = "importlib-resources" @@ -1726,13 +1691,13 @@ test = ["nbval (>=0.9.2)", "pytest (>=4)", "pytest-cov"] [[package]] name = "ipykernel" -version = "6.29.4" +version = "6.29.5" description = "IPython Kernel for Jupyter" optional = true python-versions = ">=3.8" files = [ - {file = "ipykernel-6.29.4-py3-none-any.whl", hash = "sha256:1181e653d95c6808039c509ef8e67c4126b3b3af7781496c7cbfb5ed938a27da"}, - {file = "ipykernel-6.29.4.tar.gz", hash = "sha256:3d44070060f9475ac2092b760123fadf105d2e2493c24848b6691a7c4f42af5c"}, + {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"}, + {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"}, ] [package.dependencies] @@ -1759,13 +1724,13 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio [[package]] name = "ipympl" -version = "0.9.3" +version = "0.9.4" description = "Matplotlib Jupyter Extension" optional = true -python-versions = "*" +python-versions = ">=3.9" files = [ - {file = "ipympl-0.9.3-py2.py3-none-any.whl", hash = "sha256:d113cd55891bafe9b27ef99b6dd111a87beb6bb2ae550c404292272103be8013"}, - {file = "ipympl-0.9.3.tar.gz", hash = "sha256:49bab75c05673a6881d1aaec5d8ac81d4624f73d292d154c5fb7096f10236a2b"}, + {file = "ipympl-0.9.4-py3-none-any.whl", hash = "sha256:5b0c08c6f4f6ea655ba58239363457c10fb921557f5038c1a46db4457d6d6b0e"}, + {file = "ipympl-0.9.4.tar.gz", hash = "sha256:cfb53c5b4fcbcee6d18f095eecfc6c6c474303d5b744e72cc66e7a2804708907"}, ] [package.dependencies] @@ -1778,7 +1743,7 @@ pillow = "*" traitlets = "<6" [package.extras] -docs = ["Sphinx (>=1.5)", "myst-nb", "sphinx-book-theme", "sphinx-copybutton", "sphinx-thebe", "sphinx-togglebutton"] +docs = ["myst-nb", "sphinx (>=1.5)", "sphinx-book-theme", "sphinx-copybutton", "sphinx-thebe", "sphinx-togglebutton"] [[package]] name = "ipython" @@ -1830,13 +1795,13 @@ files = [ [[package]] name = "ipywidgets" -version = "7.8.1" +version = "7.8.2" description = "IPython HTML widgets for Jupyter" optional = true python-versions = "*" files = [ - {file = "ipywidgets-7.8.1-py2.py3-none-any.whl", hash = "sha256:29f7056d368bf0a7b35d51cf0c56b58582da57c78bb9f765965fef7c332e807c"}, - {file = "ipywidgets-7.8.1.tar.gz", hash = "sha256:050b87bb9ac11641859af4c36cdb639ca072fb5e121f0f1a401f8a80f9fa008d"}, + {file = "ipywidgets-7.8.2-py2.py3-none-any.whl", hash = "sha256:de9b0b0ab5238f107aee8429eb855121e825025aac556fec17d0bd51422aa256"}, + {file = "ipywidgets-7.8.2.tar.gz", hash = "sha256:282a550abab40831e08e1aab0b04aaf5c01494ff919faa44d3ac624f4cbc8fd0"}, ] [package.dependencies] @@ -1845,46 +1810,45 @@ ipython = {version = ">=4.0.0", markers = "python_version >= \"3.3\""} ipython-genutils = ">=0.2.0,<0.3.0" jupyterlab-widgets = {version = ">=1.0.0,<3", markers = "python_version >= \"3.6\""} traitlets = ">=4.3.1" -widgetsnbextension = ">=3.6.6,<3.7.0" +widgetsnbextension = ">=3.6.7,<3.7.0" [package.extras] test = ["ipykernel", "mock", "pytest (>=3.6.0)", "pytest-cov"] [[package]] name = "itk-core" -version = "5.3.0" +version = "5.4.0" description = "ITK is an open-source toolkit for multidimensional image analysis" optional = true -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "itk_core-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:15fd888c5338a0d630ae5ceaa90d0244d4e2040baf08279bb6db284f2774b77c"}, - {file = "itk_core-5.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4b8bb2df8697c3706b12adf4d79dea0be3dab73b8bd200c14a970f1ea6e52bb7"}, - {file = "itk_core-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fa2f4b283af6c67707c4ed2f3b064a2126a60ec7658917fa33d5f2f21e1698d"}, - {file = "itk_core-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c8f26fae88f6e0f0eac6f6800c5e6ec62879e2597a861bed36454954db5e377e"}, - {file = "itk_core-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f51cffaeddb86aa650538955a8aa1a4f6cb8a0f5296b6977412b0bdea10fae99"}, - {file = "itk_core-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:b7cd730513bbd502e660855f45a9657953eed8c88c666f39a3b622203d14720b"}, - {file = "itk_core-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:530ffb9492004cb2eee8b9702e728e62373cf205e01b3612a811cd6b745b1251"}, - {file = "itk_core-5.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5be7b5ebaaf29cb4a1763b09ec0dbbcc6f84580b2dc234f98167cd2e3f7ea97b"}, - {file = "itk_core-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a43f1e625409cedf7c9046bfaba0ce02ee86c86263b2615b9e0444acb38a1d8"}, - {file = "itk_core-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2068a7456d22a31ef689099f5a342e591c7a426673c8e84ecaadf92456ddea07"}, - {file = "itk_core-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:7cc25d0923deb9219299cd8c5a7e5bc1d8ed6731497a06cf121409b71c72ae59"}, - {file = "itk_core-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:cd22229f6945e539141e8829f866bdf0c21567e8f8b9b7621a27032c5f2cfbf8"}, - {file = "itk_core-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ec82117e4a9d57705aabd6ed94c3fd73707c090fdcff9c7dfbdb42b1c4ba66bd"}, - {file = "itk_core-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9c77357c383236db6d24de312c0d13b4908a347e3f1eb27ab65995e25b54236"}, - {file = "itk_core-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:03470278569da50a6cc8adf8a8b89a34b01468009f1291efb78e8dcb694b66f6"}, - {file = "itk_core-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:1cf17bc60a7caa648bbe8643f53187ee4cce2e24eef20ad0904a0dd71b718582"}, - {file = "itk_core-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1b7cf723ca9c01ab952ba956bcbb8b368984e6585268c5c0c7d431f28def8190"}, - {file = "itk_core-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:dabcce38cf30daa4c21dd500f96f4be250bde4718fa3c28d1c60094a12fa68f4"}, - {file = "itk_core-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44b55a36e8746e052ef7638458cb088eb0269c1023d1fe0a575580840d25334e"}, - {file = "itk_core-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:34493c3f59ae9ad47202ff41ceea8a81acd36c3702e6b2ce42c56be94a1892fa"}, - {file = "itk_core-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:10b2236bced382aeef65aed4f36e9fb39c1bed0ccc2d163417700442a4fe355d"}, - {file = "itk_core-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:a01ce1e2456cdb432fc88eab5a0b0585a77d1e73758bfae2d3f0d6fdd7ecb222"}, - {file = "itk_core-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:48313b935f9cdee3ff9bed24d7e604a97e6971645c7c346d8a9b03d10d53ba28"}, - {file = "itk_core-5.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fbdf8fb96e929cd2298d1f3c61398265620050b140410516a9283a1894211564"}, - {file = "itk_core-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e98aea3787d3bc1f49cf5a4988a1ec4a54232830ef42e50f91234ec1485365a9"}, - {file = "itk_core-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:7f913621eaf319f670332de39143f0cd7e27266d0172a1d225ed784bec4587fa"}, - {file = "itk_core-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c3825d3042c208a91d46884b7af80af00c86b83cdf099833d4e61961c9989aa0"}, - {file = "itk_core-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:bafc7d3472efc4e9d164d979bdcab88c78da8d37f10cc422285e3b219857a98e"}, + {file = "itk_core-5.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0829cdb05ad21e44532c1a7101e3772d760506593c1466839e705d4ec0a295af"}, + {file = "itk_core-5.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aacd9a319d63df991c89a2d7ef6b4086e98e0aa2672aca3ac2991f8f9e5b99ed"}, + {file = "itk_core-5.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81d03764db74840beb821308a3b99bb1a1db1cc97001d66079a5fe4c83f2fe27"}, + {file = "itk_core-5.4.0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:4de64fa8dd15f2702d0f46443f03b5cf719be28ca6b56a813c65ca1c194864a9"}, + {file = "itk_core-5.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:86b86a67782745fc4c44105dea97c416cc91e271a089a934ac686de34ee689ad"}, + {file = "itk_core-5.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f9c984a1eb91bde336aa3163707da7b2f762095da4672099642e990ba541651e"}, + {file = "itk_core-5.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:5757cce6c15b81427b88b6d485209883a50ecd86998f0304c1b77ce574d67279"}, + {file = "itk_core-5.4.0-cp311-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3a6cb9c5e8ff3ea5ff342672e450393a0daaee95a9f99815b2a2b57724be5753"}, + {file = "itk_core-5.4.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:21c7b5c451f73c8073eb3b5dd85f7c654399cdc25dd51669bfbbafa611aa4649"}, + {file = "itk_core-5.4.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2805461035153b7a3dd404d8412b33c4c295a5b77dbe995f5bb86bc77a11739"}, + {file = "itk_core-5.4.0-cp311-abi3-manylinux_2_17_x86_64.whl", hash = "sha256:0025f28fc3f4427d4f094e03ca335aecb257fc1846e1b1f7bc6e3755d5d117b1"}, + {file = "itk_core-5.4.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:b6af0e82dae0efa95ad87f36ccd55a955383b34a6bd8a036894fb96a3933615a"}, + {file = "itk_core-5.4.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:8ca83de9c269e6b20648f2391aa2bf96903b8ed645c3d8cd40d90b939dda439e"}, + {file = "itk_core-5.4.0-cp311-abi3-win_amd64.whl", hash = "sha256:6affe6986927fd176c176f5464d9ea9e737b85d8745f5c4129da910fd16235cb"}, + {file = "itk_core-5.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:017a8e808a9f399b456f842c3e076cde29ee82a6c021398e084b08cedd2ec197"}, + {file = "itk_core-5.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a9b176e9b918178761aca589cdf438d524c3702bc58f5c3363098b1305793cd"}, + {file = "itk_core-5.4.0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:6cbf573d49ae281a83498435f8f22b0db8d2781bae46af9c8cd6f40020c6b8e9"}, + {file = "itk_core-5.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:421f129097e167c803fca1c84c261cee9000721c4003725db4d4f1ee9b7041ae"}, + {file = "itk_core-5.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:badf316f9917af9e844338b1d8c9d432803bc7a66da558357b8a4c7ff633ded4"}, + {file = "itk_core-5.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:816ad0bce9324125df154745fce8dd8b9005e830c1aae927d81009d99ec3bfa3"}, + {file = "itk_core-5.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a161a8f3d01c02a33c30d610069fb31d4d1af87bb33e157c54ad63821b7bbd87"}, + {file = "itk_core-5.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e65170cadbe821510c3405b52ae9196dea4d90b66760875c41879c1257a90ecb"}, + {file = "itk_core-5.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d2d16bbdb74be43448dbe081f803e7267e564997972f1bcf23cb0bd450ea86b"}, + {file = "itk_core-5.4.0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:21d0d8e03b065088626fc38d3777c5d9865186f09accd6a3eab821e97f5f0310"}, + {file = "itk_core-5.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6e97d7f208181b33b53818f653eb76f80764a25bfb7a9763570b1152cae7951d"}, + {file = "itk_core-5.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:af71c672dd546c0a9eebd67a00e99264eeb0b80bb3d247c4b88f6a9e86dac814"}, + {file = "itk_core-5.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:87ab626a82b802ea951e915aab5c03f33e2f428136d7f77037629ea35379261e"}, ] [package.dependencies] @@ -1892,119 +1856,121 @@ numpy = "*" [[package]] name = "itk-filtering" -version = "5.3.0" +version = "5.4.0" description = "ITK is an open-source toolkit for multidimensional image analysis" optional = true -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "itk_filtering-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:235add39e26b69c5328fbd130c0767ffc93a2bdef7d7dd95e5d072d9e9596c36"}, - {file = "itk_filtering-5.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f52cdc3ab57f038d05ece473036b422f24d6c3cf1fb5bd29d16485d80ece088f"}, - {file = "itk_filtering-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8b52dd48f2f3b9c0cd0430cd6d406a78403432ca4d6780092149e1c68484344"}, - {file = "itk_filtering-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:4c3dea1d3e2d2adb53ecaf85a182ba1aa84ff6ed607c1a41516f78c520494250"}, - {file = "itk_filtering-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a10f3797e8da19225d4535a3d6241df4761bbd2e662f414aeb820a5b7e9759a2"}, - {file = "itk_filtering-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:b447d6b04b5e8f837d6d126f598ecfddc6a053c994a086b5fd15f3b51b4e9099"}, - {file = "itk_filtering-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70c30da55be721439d24c1be9696094e3637d853f7f9ba7265ff0faa92d9976a"}, - {file = "itk_filtering-5.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:221e767f921a1b2f2b768a0aef198b9bd059ae698cf9a65ee5c643df4dea48ad"}, - {file = "itk_filtering-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94ecd92c2d6ecf3ee248c579d824e8f19d73651ecf795b60f7fe12a6e8728108"}, - {file = "itk_filtering-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:35b21321f4bdfbbc799e4b2d5bbdcc435c02dcd03ea8cf064108d834d1b5c3a0"}, - {file = "itk_filtering-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:88810f999017ac032aeefa1bc0ee884c25089a5975eda7deeb68932568677a6b"}, - {file = "itk_filtering-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:fe0679a8044bf7336e86c9726620ff959a2b6effcf807813f6139030d3bf152c"}, - {file = "itk_filtering-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:56b79cfa4031884d77fdb64b9cd6801c9189f1edd94cc98accdcc06c8a1ff7e9"}, - {file = "itk_filtering-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:faa5f09ee154c14de96a802e84e9c12f383118f8d445fc7186b3ffccc03284a6"}, - {file = "itk_filtering-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:e622b9501a370bd1dea2e74c3f2562160077c18914bd67e02bb92edb40717be0"}, - {file = "itk_filtering-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:b027846f9204b0282a578aed20ae2b01b08ff55bf98ccf55f603f6d99a6415f7"}, - {file = "itk_filtering-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1d14f729cc393c44c39290b19446ca804f2bc2d4353413aebd6575c9c3190c79"}, - {file = "itk_filtering-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0a2da4187a43db7c545b82840d7b4fe57f00ad563b5e86de1b182d385f514845"}, - {file = "itk_filtering-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9881fd2fbab8e208ddbcd3c2634abe664db5c471bfd9999317486ba54db72b4f"}, - {file = "itk_filtering-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:d07c0fa5cce515c7d2f4a3699548fbfc9ac7f9c445d797888f0842fd7ee68be6"}, - {file = "itk_filtering-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cf39d183dbf1120183513c3930cce8d515e4cb4d98b9ad41f92c89de4a14e167"}, - {file = "itk_filtering-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:b65ca1dcf827bec3ede681e14b0f0b51e457e5ee59946b8834dd15c638f3dd53"}, - {file = "itk_filtering-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2f560b20dbc716da26d99ffd713b96bc19f3915590a9b785a9fd91a6e20cc6f7"}, - {file = "itk_filtering-5.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:953b4f5102e6c7e185d8b758b061a703cb6555791a3cb672b7e05aefa39be4c6"}, - {file = "itk_filtering-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aac486432bba982aea18243cffc28d97e035b40afba61279a17454cf04c87e37"}, - {file = "itk_filtering-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:77f0df5ac6f5c027c31f6ef14ce6b34ae0b0f90ea3703a580e0ce78505bcfb78"}, - {file = "itk_filtering-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c60f83f6504fab0ba42042bc994c6a6bb7198025dcadb98f6a027e29a0445fab"}, - {file = "itk_filtering-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:10ee7530b81bde6caef722f099ff202329ff85e3e9b8362e364d3628a7dcbd95"}, + {file = "itk_filtering-5.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d8a79d4094b09989760ac657bbe1fdcbcd3a493bf9c72cafda7b456d4ba539bd"}, + {file = "itk_filtering-5.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f22f7430b0547bfcbe90a841420df628bc694643cdb8657b8278a4c7167dd377"}, + {file = "itk_filtering-5.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08cc20490e01351731c325d211a3121cbab894c1f8b4f705e36c307029132f04"}, + {file = "itk_filtering-5.4.0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:5b67e3b0c8829060a388c387094a354abbad5735c934798f3eff58018db02514"}, + {file = "itk_filtering-5.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8f68f8a015c79712dddcc3d1910f4c6bcd84efac8566c6ac262722c8bbb45521"}, + {file = "itk_filtering-5.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:aee40337c3ac1fc6f91c171d369d62fa4ac9395f04a80af970263b070751e3b2"}, + {file = "itk_filtering-5.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:94d8fd96f74a94707ae9c45fd3b99b45dbfa46715888f7c78a0d1a9991f40b0e"}, + {file = "itk_filtering-5.4.0-cp311-abi3-macosx_10_9_x86_64.whl", hash = "sha256:e390e64861ea3670d13970e319c9d19d6f327134b5189aded7588298197f152d"}, + {file = "itk_filtering-5.4.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:e8d90842d703877c4ce777efece3db478c8ed5e3a18488e277a480f05d61ebb0"}, + {file = "itk_filtering-5.4.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b7274a15a692d5957ae1412aa54f42567308ff1c0bc288385a65de30f14c784"}, + {file = "itk_filtering-5.4.0-cp311-abi3-manylinux_2_17_x86_64.whl", hash = "sha256:746d4b5acbdbe7fbfee5bb46a6bf99a15bd3601282709f0e117aa31fc3c78b2b"}, + {file = "itk_filtering-5.4.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:6e8600df87c59233968013d162c5a353ca4c8f843c76117b52347aec20ff1620"}, + {file = "itk_filtering-5.4.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:86026c853f1fd0b13e282f952cff7455df0ac131cc608df8669ce335633eef0a"}, + {file = "itk_filtering-5.4.0-cp311-abi3-win_amd64.whl", hash = "sha256:ad59e6066dba25d6b0803023e95c7633a80e7b9c1a9ff89a41c97eae5a60e06f"}, + {file = "itk_filtering-5.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:893b21dd6a4170badd53c69c3fa068a08f822db6f7c00010e110972182d9eab7"}, + {file = "itk_filtering-5.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3304b6215ea3234624eedb3c5364419b5589248f41cfd709d9f9db3997801e6c"}, + {file = "itk_filtering-5.4.0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:76c599fa7f4d236003f5db3057b49fa3685d796e858e553d87748d1352e037eb"}, + {file = "itk_filtering-5.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:49ed5f96667ba9c29c5e8f9ae5dd4a1adbb34327a139c0a088a5682b3ccf0632"}, + {file = "itk_filtering-5.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:79982499ebcf87ce9ef8021c82fe7e7676442541f4fcda50a23610cc0f391e83"}, + {file = "itk_filtering-5.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a0fb79ae970ebf02582ab9cdff605fdf6af732223b86eeaece81225a9d0dfbd6"}, + {file = "itk_filtering-5.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:180a1f198d3a7500c0d0a76f1b4a316abfc7c3e7df903093a532a382a29154fd"}, + {file = "itk_filtering-5.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3cf91912aca63e24f95a2d3ef37a64ff94a5fbd2f4f9eb8ef2c740d39b07ef31"}, + {file = "itk_filtering-5.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae4c7dd50ba005fcb004f89f80e80f7253d7432499bc228d7f509a7bc495a8ce"}, + {file = "itk_filtering-5.4.0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:b35d00f1ad8e98237d81520a2de6679f8b2d98f806478644388ceaad060517c0"}, + {file = "itk_filtering-5.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:a33227621194d7b34c5b9bb96c6af7b40382e288d1dc1501b2e098bdb8aaae3e"}, + {file = "itk_filtering-5.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:d69ff7d72d8813df0d5b440d6c5cd1d3aad686b48f4622e045d8eed535ed711c"}, + {file = "itk_filtering-5.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:dfe936ec9d9f2dad8a5bbb1a0508053926c05acda3f2f90efc24c20ffe3ba5bd"}, ] [package.dependencies] -itk-numerics = "5.3.0" +itk-numerics = "5.4.0" [[package]] name = "itk-meshtopolydata" -version = "0.10.0" +version = "0.11.0" description = "Convert an ITK Mesh to a simple data structure compatible with vtkPolyData." optional = true -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "itk_meshtopolydata-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:585dab26fa43a2bbc58b9b7f7a461efba5a9bddd8dc8d9a103ec0f291c2910da"}, - {file = "itk_meshtopolydata-0.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46296db25ffcc1e3bd79520428198b8e34e824995262e5c4250c38a4d371ef1c"}, - {file = "itk_meshtopolydata-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0784da23c7e7f1b23a35ce670a2410ea0dbcf81e7846e5910d0199e43ccd5423"}, - {file = "itk_meshtopolydata-0.10.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:79970dae729b62d729e37976999986a48484454f670176f514fdffdbda00f348"}, - {file = "itk_meshtopolydata-0.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:f02b0499b61c009b9cb00e0615059cbd0c437885ec62daee160056dd8b70e3bd"}, - {file = "itk_meshtopolydata-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b38efc6fa169a294343cbed45b0a42a36c36b35436c4b6768ac9c5896fcbbe3a"}, - {file = "itk_meshtopolydata-0.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eaecb4ea61d5f70cc6696df64c536130a18265f41be1b7b8a614baee92e5072b"}, - {file = "itk_meshtopolydata-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99d93bea7a60cf1e1d70f27a7ee6e1c0ef577ca68eee41352c43a565f8eb476a"}, - {file = "itk_meshtopolydata-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:15b937b45dec1c8bae88826b95526355e1ba718f2e1854e4bd7095d2f73767d3"}, - {file = "itk_meshtopolydata-0.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:d3362dd38e7cd1ecd198650e9125b4067cbec9480032a7dcbb8b843627bb2089"}, - {file = "itk_meshtopolydata-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c85c2416d312e9d1ef9a97e95972828c44ff71a795dfacbcffbc92e774e8fcca"}, - {file = "itk_meshtopolydata-0.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5926e58c4b73b6dd970e11cb1c55d9330a333914f9f95da78515b32b6c5b6d0a"}, - {file = "itk_meshtopolydata-0.10.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:5269953e249c1a7d2819838b0618f586196b37f47ba8e7d00cc9a8f6c4abc3ce"}, - {file = "itk_meshtopolydata-0.10.0-cp37-cp37m-win_amd64.whl", hash = "sha256:6e4c6f692c1e70431a7746b47d39f52e31e72ea592c3c83c957c8b4a862783b9"}, - {file = "itk_meshtopolydata-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d55a07b1ba57cd65da0072f48dfb989d33a58e9487979f725946e89fd3e49e68"}, - {file = "itk_meshtopolydata-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8bf5ca6f6df8d4ee196cc8ae4a59b6cf5c9d843208bb5ad2391045f504a05604"}, - {file = "itk_meshtopolydata-0.10.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:be9cb2a47a6acf0ddc4fd47661898dd33d65cbf24cad74bf4a92350471521d56"}, - {file = "itk_meshtopolydata-0.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:643bb184fda0e9ed2fdbd1233f8ccbd8c4926f99e71d6c5dac492e14c154599c"}, - {file = "itk_meshtopolydata-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c0df6eddd827893173dca2ddf1e465eb2ace0ed342eb81185ac1c9f9f5e5657d"}, - {file = "itk_meshtopolydata-0.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8513c33491dcc0140f293bc8d1cced59f8cb34a96b9b12a23599c6e5cb476fe0"}, - {file = "itk_meshtopolydata-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49625e35014da884425c481ed1c93803f57a77dedf5a7e2f2fce5b913374f543"}, - {file = "itk_meshtopolydata-0.10.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:83f65011f1f5d99b4f2254d9ba79c6a7e847695275259a96d3eb18ebe5152c30"}, - {file = "itk_meshtopolydata-0.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:43354444fce37e1948d356c2813dc1c6b956dcccfc0cdebfa004e4b43b93076d"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cdd7653727877d2ca0afa5780ec810cb99cf305e8b4ec054467dafce4b7999ee"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ae95f633a169a6eaffb89041c12c456bc29f6b53955738698dff2f2cd628706f"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:425a94bd36690c72ba438e65864599966e0234c01739b304b81e5044a2e0b2ce"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:0df308aab685f1a9bbbab7f2aa6f29022376aa1acc8bcd9b0ccfaf63a6ff0de9"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:b5d133b4bda6a4af86b7ca570fa716c6c8bbc6c752b1121ba34abdf709ff4787"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:e5962a2e0a77cb36eb0c5fd7b1fd80c31476092603586ebf1ecd9e370c68870e"}, + {file = "itk_meshtopolydata-0.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:8bdb68419498a56b93c64463e818db8945625297629ca826c88d9c0fe9b6de45"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ea57c8eed3a86ee91abd3f4c2df30694c11125223e6c1bef7c487c82de6b2274"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:3c10f157bddbdf86b596ec2742f17bcc35cd6ce7bd64bba712a2a0c0858c2dc7"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f1cbbce12e6b9bc444d828699f791e7139b036e2a8c659d6fd0758fc5dc03cc"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-manylinux_2_17_x86_64.whl", hash = "sha256:d93b2c85192dad517e6c14da5465b0d04267002a608339422e9720c45f3d9429"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:914cae65049842affc820471e149b2cdd55d305ff1a740c34a47e1b1af567361"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:84bd859eeb17aed3de39f0b3357525a4bfac0db17263a8d36cd641e5f8c49b46"}, + {file = "itk_meshtopolydata-0.11.0-cp311-abi3-win_amd64.whl", hash = "sha256:b8b746f6d5597687d0b50dd81d650da0293f2c3c90f31212baefdf46edb727d6"}, + {file = "itk_meshtopolydata-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9c5160a0f2e73a4eae318a61115156695b5a45e443380b3f737f902d28003cae"}, + {file = "itk_meshtopolydata-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9ce0d53743b58247484d8ed954de3f4c6d1e11dfdd44fd7d251baf56762846b"}, + {file = "itk_meshtopolydata-0.11.0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:68a5dc49d17010f09b8af7baf2b10bb8b7cf909fb2efbdc8d9aa3a36ed564330"}, + {file = "itk_meshtopolydata-0.11.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:b1a3120c55fb0cf784748d2494698082eb1c6350ba37d423e43b483b1a1cf55c"}, + {file = "itk_meshtopolydata-0.11.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:0636ba65e094300dd8f40a6706286eef9673ae0d02fa36b49a69d83df5bd2bf5"}, + {file = "itk_meshtopolydata-0.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:efb7508cf1dc23a46b184044cf538212dc6cf35d5e3a3862c4aec58de10203cb"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db70c4a1f0e8cbe414c9078622790ee1647df5481e2076e8281d6bbfbf8b1b91"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a64597846bdabbae098233cebabd4e7e7e937de56450ac5eb25c329d8b38f2ba"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec5149cc80e5771057bf4d76e57f2237117398fc3a0c4e76e5a6fbaee497930e"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:43aab2513c028af0aa5c5d6fa6ddfc48d852017a3ea962df8c7e6737b789cdc7"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:a61974a8b69acce756f96b0b172027c6ef69332ebfbad6494baf52cd083d97ec"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c2645a688c50e0d82df10cdf3c1e6e727db0b55db60cd7f98a0661e5dc943303"}, + {file = "itk_meshtopolydata-0.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:4ba4996768294f1366ec42c181f1225f2e3903a9c47e115bee10fbb1c2ddf561"}, ] [package.dependencies] -itk-core = ">=5.3.0" +itk-core = ">=5.4.0,<5.5.0" numpy = "*" [[package]] name = "itk-numerics" -version = "5.3.0" +version = "5.4.0" description = "ITK is an open-source toolkit for multidimensional image analysis" optional = true -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "itk_numerics-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:776a75b0bb67dbf7be6a1281295d942d3835d7fba7e19d13d22de76048712b19"}, - {file = "itk_numerics-5.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1fbbff8a4d31d01e33a049bb36fcc64f9919a2549a1ef2ad130c88c33821e434"}, - {file = "itk_numerics-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2042fc1e16923c875d46181c2ac4ddbb4cbd616019e932e85feaf4be2692800"}, - {file = "itk_numerics-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:56a9433bc67b2e9485bc96c601022310c6352b5927dc52cb21ae188905dbfaed"}, - {file = "itk_numerics-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c857b9ed98c7f88639a2fa6de1872e5ad109804db255e7650c68347a194a7e4f"}, - {file = "itk_numerics-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:4d1edd278d155857efe85cca2bd02ab5053c71eeeec604eb8394e48edaa7c04c"}, - {file = "itk_numerics-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf35bbfd561df4901d122324c8cb12f2395bbd705f3e6b1bfc84ebe9e00cef12"}, - {file = "itk_numerics-5.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d69b23e429dd854653ff10bfb9853676305fb8f1e904c8ac6083dbaa7ab2f47c"}, - {file = "itk_numerics-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72da89f1c2d0d076a5accd04c07da0a5e45a1091b90da1b178c44dced7a2661b"}, - {file = "itk_numerics-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0225964ec26bbe5d3687a2238ae4f2069dc844c4d6b46723b7937b26402b2c1a"}, - {file = "itk_numerics-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:daf06148d7392c5a4d8a31c5e3a3267aeb684fc3aecce5a22c72afaf48f2c4af"}, - {file = "itk_numerics-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:ec683a55a6cebb705407c438b686a885b4529414f12d817510cecb898384be51"}, - {file = "itk_numerics-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c7253f4c3eea70162154c5070796633da2f75d1b693f5a239884dccc84643f29"}, - {file = "itk_numerics-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1223cca8014265edbf1a848f9a5b497a18b1904e3791a24ff8a6c88abe01dd61"}, - {file = "itk_numerics-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:313ccd4aee3cf797c7e2309ee252301dd706638266e4fb1c707357479aef5080"}, - {file = "itk_numerics-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:a246d445a6bd5163beada710b1bf73d89d7d6ac7a9072b9f777f5e772f5d7533"}, - {file = "itk_numerics-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:10fb0ba19e2a26ff10d95f61eefc2718ae959c6c3615e23cfc7d7dd2bc20793e"}, - {file = "itk_numerics-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b11cc7a8756994125cca9b6ddd46706d6cdae74ea91df6151edb26e366179e"}, - {file = "itk_numerics-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1af9fc0f8d32cf136b2be82feb5b59c4b1d271ea391b17987a79ed5ce1dce25"}, - {file = "itk_numerics-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0aaca8ba6630a9475f232929afcb5ebd6925333bfb311d9bc5a4d9a351b9a9bb"}, - {file = "itk_numerics-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:1422f1f92f1b392927cc7aa0c409a153356728688d221b6d422f2d7f5de00ba0"}, - {file = "itk_numerics-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:5e04b193b79a0424181e3aad6a35394f16892ce7be692399fc56825055f3422f"}, - {file = "itk_numerics-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c35bf9d59ed043d225835d7c01f37366581a4055024742de64124f095e778b62"}, - {file = "itk_numerics-5.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a97de21e0daf2838c9fbbac11b35580510df340bd4d4c83127c2de89908f5b4e"}, - {file = "itk_numerics-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da05b2bff8528c92c8b1c795de718e261f5f4fec9a9499fa1789cf99b94e2a2e"}, - {file = "itk_numerics-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:026a6f791a73685db507ec810ae0286817e782bf8d292f150aa7c04639db4212"}, - {file = "itk_numerics-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c3a7d36b424dc88ff7b576b79687090187c514423b9418adf1ac6099e1cd70fe"}, - {file = "itk_numerics-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:74670ff4030aeb05f8c928e67d28da6991b86361d4777f24d5e907c851ed4ad1"}, + {file = "itk_numerics-5.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:95726f8e085bd0e60b02b849ac64aec1e5693f9e51b970ae1784c755975748ac"}, + {file = "itk_numerics-5.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b64df7105090d583773cb87a3da9c792d3b01bb625e7c660b3de6a4acc2e8ba6"}, + {file = "itk_numerics-5.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:770d5f04a6901d9eff2a00cf5e6edd55d398b3e27c810d86d7f4bbb69383b025"}, + {file = "itk_numerics-5.4.0-cp310-cp310-manylinux_2_17_x86_64.whl", hash = "sha256:6542a9a067e5a2161e9eac906bfd077bb1416c3ef37a45724011f31d2ac0e015"}, + {file = "itk_numerics-5.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:107fc5c7b22cdd81128251d90067640670cd4f697536a15fb9285f122ad5037c"}, + {file = "itk_numerics-5.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:becbb4bce1ee35aef3333aa09a460f9ef89292c09368aaaf0a9a5de2d3d46c20"}, + {file = "itk_numerics-5.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5cb19fc96929730f1a3e393b11411ffa5851753169d66544e133f68294b5b5f"}, + {file = "itk_numerics-5.4.0-cp311-abi3-macosx_10_9_x86_64.whl", hash = "sha256:bb723387079926593602ad9c4ba12205c8385d51dad93b48172e8dc9fd354d28"}, + {file = "itk_numerics-5.4.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:583b665d6b8578ac93691afb796faf69e30b8db8a205754cdc746707f9589fcd"}, + {file = "itk_numerics-5.4.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d956851df9de82676635265f56cdb4fdd5354f4bc068431ec5f9df724197c410"}, + {file = "itk_numerics-5.4.0-cp311-abi3-manylinux_2_17_x86_64.whl", hash = "sha256:56b53dc4d99eace4114df24293310a9a0f94b42e8cc7c85d4a90d438d9ec0aca"}, + {file = "itk_numerics-5.4.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5cd8ab0781e08a4022e36094bb60652d0ee2b7cd1912f325e8f32d8bd5501fcf"}, + {file = "itk_numerics-5.4.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:e2dcda0a07ccb6b9b518d3cc4413387a44c30a313c22e15bf818af06c7da8bfd"}, + {file = "itk_numerics-5.4.0-cp311-abi3-win_amd64.whl", hash = "sha256:31f24c218c763b2c15953453cc366c5ba09e7a5c7d47d432a24c0b6b12249206"}, + {file = "itk_numerics-5.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:73ca47038008e71284c1dfe7ea84e7dbb9a2a022360a31d31b84eadabc185b4a"}, + {file = "itk_numerics-5.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3c685516dccab53bd028ea40b6633510f7f66cf9793798c87dd34259203628b"}, + {file = "itk_numerics-5.4.0-cp38-cp38-manylinux_2_17_x86_64.whl", hash = "sha256:4822eda36b3e32c2a3167db427794d116c0f2b7fca220b54b205f4271c6f4f8d"}, + {file = "itk_numerics-5.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:9eb77342a33165d2e379dba0aa4eff6a4e08ba2fa54344f5e8c5777c8392a957"}, + {file = "itk_numerics-5.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:766b92f3da28adaf2eacd2922eb7ddb2229930c5dbb2452cf89df0f724416b3a"}, + {file = "itk_numerics-5.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:749cd94bce199c26e082deb9a9061d3e13bfabbe62979c45c9262f5ffd9d0a19"}, + {file = "itk_numerics-5.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:49345a697539dabf4b0f95bfbd54bf7e80094e2ba86554d5f8f5f94a885c6d04"}, + {file = "itk_numerics-5.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7bfe1c02b592ba1d26f25ef7c04fd0d48affc5eb4076dd405b6af3dbfac206c7"}, + {file = "itk_numerics-5.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b0b19f5933138498dace7bf5e4c4fd65ee767ddc0d2ae17c839bb80099d70e"}, + {file = "itk_numerics-5.4.0-cp39-cp39-manylinux_2_17_x86_64.whl", hash = "sha256:066a3b4665291d7fb2d6c28645f8be5935e28f68d4cc18dc454ac9e78f741d29"}, + {file = "itk_numerics-5.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:d6da785dd5a8ec9a38d5b3b1895f3f1b0bad809041f87aa596943baad7cc5691"}, + {file = "itk_numerics-5.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:88b7eeae1d9ace072e3e8dfa846e9d12d85496eca0f7ff6398acc95426f539dd"}, + {file = "itk_numerics-5.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:f93148b80603231ada4489fc3d5da76e4ce9dca6b77bcd5d2fc21575bb63d3f5"}, ] [package.dependencies] -itk-core = "5.3.0" +itk-core = "5.4.0" [[package]] name = "itkwidgets" @@ -2054,13 +2020,13 @@ testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" -version = "3.1.3" +version = "3.1.4" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" files = [ - {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"}, - {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"}, + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, ] [package.dependencies] @@ -2071,24 +2037,24 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "joblib" -version = "1.4.0" +version = "1.4.2" description = "Lightweight pipelining with Python functions" optional = false python-versions = ">=3.8" files = [ - {file = "joblib-1.4.0-py3-none-any.whl", hash = "sha256:42942470d4062537be4d54c83511186da1fc14ba354961a2114da91efa9a4ed7"}, - {file = "joblib-1.4.0.tar.gz", hash = "sha256:1eb0dc091919cd384490de890cb5dfd538410a6d4b3b54eef09fb8c50b409b1c"}, + {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, + {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, ] [[package]] name = "jsonschema" -version = "4.21.1" +version = "4.23.0" description = "An implementation of JSON Schema validation for Python" optional = true python-versions = ">=3.8" files = [ - {file = "jsonschema-4.21.1-py3-none-any.whl", hash = "sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f"}, - {file = "jsonschema-4.21.1.tar.gz", hash = "sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"}, + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, ] [package.dependencies] @@ -2099,7 +2065,7 @@ rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] [[package]] name = "jsonschema-specifications" @@ -2117,13 +2083,13 @@ referencing = ">=0.31.0" [[package]] name = "jupyter-client" -version = "8.6.1" +version = "8.6.2" description = "Jupyter protocol implementation and client libraries" optional = true python-versions = ">=3.8" files = [ - {file = "jupyter_client-8.6.1-py3-none-any.whl", hash = "sha256:3b7bd22f058434e3b9a7ea4b1500ed47de2713872288c0d511d19926f99b459f"}, - {file = "jupyter_client-8.6.1.tar.gz", hash = "sha256:e842515e2bab8e19186d89fdfea7abd15e39dd581f94e399f00e2af5a1652d3f"}, + {file = "jupyter_client-8.6.2-py3-none-any.whl", hash = "sha256:50cbc5c66fd1b8f65ecb66bc490ab73217993632809b6e505687de18e9dea39f"}, + {file = "jupyter_client-8.6.2.tar.gz", hash = "sha256:2bda14d55ee5ba58552a8c53ae43d215ad9868853489213f37da060ced54d8df"}, ] [package.dependencies] @@ -2136,7 +2102,7 @@ traitlets = ">=5.3" [package.extras] docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] [[package]] name = "jupyter-core" @@ -2171,13 +2137,13 @@ files = [ [[package]] name = "jupyterlab-widgets" -version = "1.1.7" +version = "1.1.8" description = "A JupyterLab extension." optional = true python-versions = ">=3.6" files = [ - {file = "jupyterlab_widgets-1.1.7-py3-none-any.whl", hash = "sha256:0c4548cf42032e490447e4180f2c7d49ba5c30b42164992b38fb8c9d56c4e1b2"}, - {file = "jupyterlab_widgets-1.1.7.tar.gz", hash = "sha256:318dab34267915d658e7b0dc57433ff0ce0d52b3e283986b73b66f7ab9017ae8"}, + {file = "jupyterlab_widgets-1.1.8-py3-none-any.whl", hash = "sha256:0c2bfb266b6da013710618ab1263f347a730503d197c4a9f447f293d186544a2"}, + {file = "jupyterlab_widgets-1.1.8.tar.gz", hash = "sha256:3df97fed92fed52dd2e8de61d870eb692d3efcdb1b99ba7874ec738df97429f2"}, ] [[package]] @@ -2295,13 +2261,13 @@ files = [ [[package]] name = "limits" -version = "3.10.1" +version = "3.13.0" description = "Rate limiting utilities" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "limits-3.10.1-py3-none-any.whl", hash = "sha256:446242f5a6f7b8c7744e286a70793264ed81bca97860f94b821347284d14fbe9"}, - {file = "limits-3.10.1.tar.gz", hash = "sha256:1ee31d169d498da267a1b72183ae5940afc64b17b4ed4dfd977f6ea5607c2cfb"}, + {file = "limits-3.13.0-py3-none-any.whl", hash = "sha256:9767f7233da4255e9904b79908a728e8ec0984c0b086058b4cbbd309aea553f6"}, + {file = "limits-3.13.0.tar.gz", hash = "sha256:6571b0c567bfa175a35fed9f8a954c0c92f1c3200804282f1b8f1de4ad98a953"}, ] [package.dependencies] @@ -2344,32 +2310,32 @@ test = ["coverage", "pytest", "pytest-cov"] [[package]] name = "llvmlite" -version = "0.42.0" +version = "0.43.0" description = "lightweight wrapper around basic LLVM functionality" optional = false python-versions = ">=3.9" files = [ - {file = "llvmlite-0.42.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3366938e1bf63d26c34fbfb4c8e8d2ded57d11e0567d5bb243d89aab1eb56098"}, - {file = "llvmlite-0.42.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c35da49666a21185d21b551fc3caf46a935d54d66969d32d72af109b5e7d2b6f"}, - {file = "llvmlite-0.42.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70f44ccc3c6220bd23e0ba698a63ec2a7d3205da0d848804807f37fc243e3f77"}, - {file = "llvmlite-0.42.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763f8d8717a9073b9e0246998de89929071d15b47f254c10eef2310b9aac033d"}, - {file = "llvmlite-0.42.0-cp310-cp310-win_amd64.whl", hash = "sha256:8d90edf400b4ceb3a0e776b6c6e4656d05c7187c439587e06f86afceb66d2be5"}, - {file = "llvmlite-0.42.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ae511caed28beaf1252dbaf5f40e663f533b79ceb408c874c01754cafabb9cbf"}, - {file = "llvmlite-0.42.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81e674c2fe85576e6c4474e8c7e7aba7901ac0196e864fe7985492b737dbab65"}, - {file = "llvmlite-0.42.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb3975787f13eb97629052edb5017f6c170eebc1c14a0433e8089e5db43bcce6"}, - {file = "llvmlite-0.42.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5bece0cdf77f22379f19b1959ccd7aee518afa4afbd3656c6365865f84903f9"}, - {file = "llvmlite-0.42.0-cp311-cp311-win_amd64.whl", hash = "sha256:7e0c4c11c8c2aa9b0701f91b799cb9134a6a6de51444eff5a9087fc7c1384275"}, - {file = "llvmlite-0.42.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:08fa9ab02b0d0179c688a4216b8939138266519aaa0aa94f1195a8542faedb56"}, - {file = "llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b2fce7d355068494d1e42202c7aff25d50c462584233013eb4470c33b995e3ee"}, - {file = "llvmlite-0.42.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebe66a86dc44634b59a3bc860c7b20d26d9aaffcd30364ebe8ba79161a9121f4"}, - {file = "llvmlite-0.42.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d47494552559e00d81bfb836cf1c4d5a5062e54102cc5767d5aa1e77ccd2505c"}, - {file = "llvmlite-0.42.0-cp312-cp312-win_amd64.whl", hash = "sha256:05cb7e9b6ce69165ce4d1b994fbdedca0c62492e537b0cc86141b6e2c78d5888"}, - {file = "llvmlite-0.42.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bdd3888544538a94d7ec99e7c62a0cdd8833609c85f0c23fcb6c5c591aec60ad"}, - {file = "llvmlite-0.42.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d0936c2067a67fb8816c908d5457d63eba3e2b17e515c5fe00e5ee2bace06040"}, - {file = "llvmlite-0.42.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a78ab89f1924fc11482209f6799a7a3fc74ddc80425a7a3e0e8174af0e9e2301"}, - {file = "llvmlite-0.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7599b65c7af7abbc978dbf345712c60fd596aa5670496561cc10e8a71cebfb2"}, - {file = "llvmlite-0.42.0-cp39-cp39-win_amd64.whl", hash = "sha256:43d65cc4e206c2e902c1004dd5418417c4efa6c1d04df05c6c5675a27e8ca90e"}, - {file = "llvmlite-0.42.0.tar.gz", hash = "sha256:f92b09243c0cc3f457da8b983f67bd8e1295d0f5b3746c7a1861d7a99403854a"}, + {file = "llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761"}, + {file = "llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc"}, + {file = "llvmlite-0.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d434ec7e2ce3cc8f452d1cd9a28591745de022f931d67be688a737320dfcead"}, + {file = "llvmlite-0.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6912a87782acdff6eb8bf01675ed01d60ca1f2551f8176a300a886f09e836a6a"}, + {file = "llvmlite-0.43.0-cp310-cp310-win_amd64.whl", hash = "sha256:14f0e4bf2fd2d9a75a3534111e8ebeb08eda2f33e9bdd6dfa13282afacdde0ed"}, + {file = "llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8d0618cb9bfe40ac38a9633f2493d4d4e9fcc2f438d39a4e854f39cc0f5f98"}, + {file = "llvmlite-0.43.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0a9a1a39d4bf3517f2af9d23d479b4175ead205c592ceeb8b89af48a327ea57"}, + {file = "llvmlite-0.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1da416ab53e4f7f3bc8d4eeba36d801cc1894b9fbfbf2022b29b6bad34a7df2"}, + {file = "llvmlite-0.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977525a1e5f4059316b183fb4fd34fa858c9eade31f165427a3977c95e3ee749"}, + {file = "llvmlite-0.43.0-cp311-cp311-win_amd64.whl", hash = "sha256:d5bd550001d26450bd90777736c69d68c487d17bf371438f975229b2b8241a91"}, + {file = "llvmlite-0.43.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f99b600aa7f65235a5a05d0b9a9f31150c390f31261f2a0ba678e26823ec38f7"}, + {file = "llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:35d80d61d0cda2d767f72de99450766250560399edc309da16937b93d3b676e7"}, + {file = "llvmlite-0.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eccce86bba940bae0d8d48ed925f21dbb813519169246e2ab292b5092aba121f"}, + {file = "llvmlite-0.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df6509e1507ca0760787a199d19439cc887bfd82226f5af746d6977bd9f66844"}, + {file = "llvmlite-0.43.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a2872ee80dcf6b5dbdc838763d26554c2a18aa833d31a2635bff16aafefb9c9"}, + {file = "llvmlite-0.43.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cd2a7376f7b3367019b664c21f0c61766219faa3b03731113ead75107f3b66c"}, + {file = "llvmlite-0.43.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18e9953c748b105668487b7c81a3e97b046d8abf95c4ddc0cd3c94f4e4651ae8"}, + {file = "llvmlite-0.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74937acd22dc11b33946b67dca7680e6d103d6e90eeaaaf932603bec6fe7b03a"}, + {file = "llvmlite-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9efc739cc6ed760f795806f67889923f7274276f0eb45092a1473e40d9b867"}, + {file = "llvmlite-0.43.0-cp39-cp39-win_amd64.whl", hash = "sha256:47e147cdda9037f94b399bf03bfd8a6b6b1f2f90be94a454e3386f006455a9b4"}, + {file = "llvmlite-0.43.0.tar.gz", hash = "sha256:ae2b5b5c3ef67354824fb75517c8db5fbe93bc02cd9671f3c62271626bc041d5"}, ] [[package]] @@ -2385,168 +2351,154 @@ files = [ [[package]] name = "lxml" -version = "5.2.1" +version = "5.2.2" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false python-versions = ">=3.6" files = [ - {file = "lxml-5.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1f7785f4f789fdb522729ae465adcaa099e2a3441519df750ebdccc481d961a1"}, - {file = "lxml-5.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6cc6ee342fb7fa2471bd9b6d6fdfc78925a697bf5c2bcd0a302e98b0d35bfad3"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:794f04eec78f1d0e35d9e0c36cbbb22e42d370dda1609fb03bcd7aeb458c6377"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c817d420c60a5183953c783b0547d9eb43b7b344a2c46f69513d5952a78cddf3"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2213afee476546a7f37c7a9b4ad4d74b1e112a6fafffc9185d6d21f043128c81"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b070bbe8d3f0f6147689bed981d19bbb33070225373338df755a46893528104a"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e02c5175f63effbd7c5e590399c118d5db6183bbfe8e0d118bdb5c2d1b48d937"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:3dc773b2861b37b41a6136e0b72a1a44689a9c4c101e0cddb6b854016acc0aa8"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:d7520db34088c96cc0e0a3ad51a4fd5b401f279ee112aa2b7f8f976d8582606d"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:bcbf4af004f98793a95355980764b3d80d47117678118a44a80b721c9913436a"}, - {file = "lxml-5.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2b44bec7adf3e9305ce6cbfa47a4395667e744097faed97abb4728748ba7d47"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1c5bb205e9212d0ebddf946bc07e73fa245c864a5f90f341d11ce7b0b854475d"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2c9d147f754b1b0e723e6afb7ba1566ecb162fe4ea657f53d2139bbf894d050a"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:3545039fa4779be2df51d6395e91a810f57122290864918b172d5dc7ca5bb433"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a91481dbcddf1736c98a80b122afa0f7296eeb80b72344d7f45dc9f781551f56"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2ddfe41ddc81f29a4c44c8ce239eda5ade4e7fc305fb7311759dd6229a080052"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a7baf9ffc238e4bf401299f50e971a45bfcc10a785522541a6e3179c83eabf0a"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:31e9a882013c2f6bd2f2c974241bf4ba68c85eba943648ce88936d23209a2e01"}, - {file = "lxml-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0a15438253b34e6362b2dc41475e7f80de76320f335e70c5528b7148cac253a1"}, - {file = "lxml-5.2.1-cp310-cp310-win32.whl", hash = "sha256:6992030d43b916407c9aa52e9673612ff39a575523c5f4cf72cdef75365709a5"}, - {file = "lxml-5.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:da052e7962ea2d5e5ef5bc0355d55007407087392cf465b7ad84ce5f3e25fe0f"}, - {file = "lxml-5.2.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:70ac664a48aa64e5e635ae5566f5227f2ab7f66a3990d67566d9907edcbbf867"}, - {file = "lxml-5.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1ae67b4e737cddc96c99461d2f75d218bdf7a0c3d3ad5604d1f5e7464a2f9ffe"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f18a5a84e16886898e51ab4b1d43acb3083c39b14c8caeb3589aabff0ee0b270"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6f2c8372b98208ce609c9e1d707f6918cc118fea4e2c754c9f0812c04ca116d"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:394ed3924d7a01b5bd9a0d9d946136e1c2f7b3dc337196d99e61740ed4bc6fe1"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d077bc40a1fe984e1a9931e801e42959a1e6598edc8a3223b061d30fbd26bbc"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:764b521b75701f60683500d8621841bec41a65eb739b8466000c6fdbc256c240"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:3a6b45da02336895da82b9d472cd274b22dc27a5cea1d4b793874eead23dd14f"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:5ea7b6766ac2dfe4bcac8b8595107665a18ef01f8c8343f00710b85096d1b53a"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:e196a4ff48310ba62e53a8e0f97ca2bca83cdd2fe2934d8b5cb0df0a841b193a"}, - {file = "lxml-5.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:200e63525948e325d6a13a76ba2911f927ad399ef64f57898cf7c74e69b71095"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dae0ed02f6b075426accbf6b2863c3d0a7eacc1b41fb40f2251d931e50188dad"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:ab31a88a651039a07a3ae327d68ebdd8bc589b16938c09ef3f32a4b809dc96ef"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:df2e6f546c4df14bc81f9498bbc007fbb87669f1bb707c6138878c46b06f6510"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5dd1537e7cc06efd81371f5d1a992bd5ab156b2b4f88834ca852de4a8ea523fa"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9b9ec9c9978b708d488bec36b9e4c94d88fd12ccac3e62134a9d17ddba910ea9"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:8e77c69d5892cb5ba71703c4057091e31ccf534bd7f129307a4d084d90d014b8"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a8d5c70e04aac1eda5c829a26d1f75c6e5286c74743133d9f742cda8e53b9c2f"}, - {file = "lxml-5.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c94e75445b00319c1fad60f3c98b09cd63fe1134a8a953dcd48989ef42318534"}, - {file = "lxml-5.2.1-cp311-cp311-win32.whl", hash = "sha256:4951e4f7a5680a2db62f7f4ab2f84617674d36d2d76a729b9a8be4b59b3659be"}, - {file = "lxml-5.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:5c670c0406bdc845b474b680b9a5456c561c65cf366f8db5a60154088c92d102"}, - {file = "lxml-5.2.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:abc25c3cab9ec7fcd299b9bcb3b8d4a1231877e425c650fa1c7576c5107ab851"}, - {file = "lxml-5.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6935bbf153f9a965f1e07c2649c0849d29832487c52bb4a5c5066031d8b44fd5"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d793bebb202a6000390a5390078e945bbb49855c29c7e4d56a85901326c3b5d9"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afd5562927cdef7c4f5550374acbc117fd4ecc05b5007bdfa57cc5355864e0a4"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0e7259016bc4345a31af861fdce942b77c99049d6c2107ca07dc2bba2435c1d9"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:530e7c04f72002d2f334d5257c8a51bf409db0316feee7c87e4385043be136af"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59689a75ba8d7ffca577aefd017d08d659d86ad4585ccc73e43edbfc7476781a"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f9737bf36262046213a28e789cc82d82c6ef19c85a0cf05e75c670a33342ac2c"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:3a74c4f27167cb95c1d4af1c0b59e88b7f3e0182138db2501c353555f7ec57f4"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:68a2610dbe138fa8c5826b3f6d98a7cfc29707b850ddcc3e21910a6fe51f6ca0"}, - {file = "lxml-5.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:f0a1bc63a465b6d72569a9bba9f2ef0334c4e03958e043da1920299100bc7c08"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c2d35a1d047efd68027817b32ab1586c1169e60ca02c65d428ae815b593e65d4"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:79bd05260359170f78b181b59ce871673ed01ba048deef4bf49a36ab3e72e80b"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:865bad62df277c04beed9478fe665b9ef63eb28fe026d5dedcb89b537d2e2ea6"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:44f6c7caff88d988db017b9b0e4ab04934f11e3e72d478031efc7edcac6c622f"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:71e97313406ccf55d32cc98a533ee05c61e15d11b99215b237346171c179c0b0"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:057cdc6b86ab732cf361f8b4d8af87cf195a1f6dc5b0ff3de2dced242c2015e0"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:f3bbbc998d42f8e561f347e798b85513ba4da324c2b3f9b7969e9c45b10f6169"}, - {file = "lxml-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:491755202eb21a5e350dae00c6d9a17247769c64dcf62d8c788b5c135e179dc4"}, - {file = "lxml-5.2.1-cp312-cp312-win32.whl", hash = "sha256:8de8f9d6caa7f25b204fc861718815d41cbcf27ee8f028c89c882a0cf4ae4134"}, - {file = "lxml-5.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:f2a9efc53d5b714b8df2b4b3e992accf8ce5bbdfe544d74d5c6766c9e1146a3a"}, - {file = "lxml-5.2.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:70a9768e1b9d79edca17890175ba915654ee1725975d69ab64813dd785a2bd5c"}, - {file = "lxml-5.2.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c38d7b9a690b090de999835f0443d8aa93ce5f2064035dfc48f27f02b4afc3d0"}, - {file = "lxml-5.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5670fb70a828663cc37552a2a85bf2ac38475572b0e9b91283dc09efb52c41d1"}, - {file = "lxml-5.2.1-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:958244ad566c3ffc385f47dddde4145088a0ab893504b54b52c041987a8c1863"}, - {file = "lxml-5.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b6241d4eee5f89453307c2f2bfa03b50362052ca0af1efecf9fef9a41a22bb4f"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:2a66bf12fbd4666dd023b6f51223aed3d9f3b40fef06ce404cb75bafd3d89536"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:9123716666e25b7b71c4e1789ec829ed18663152008b58544d95b008ed9e21e9"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:0c3f67e2aeda739d1cc0b1102c9a9129f7dc83901226cc24dd72ba275ced4218"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:5d5792e9b3fb8d16a19f46aa8208987cfeafe082363ee2745ea8b643d9cc5b45"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_2_aarch64.whl", hash = "sha256:88e22fc0a6684337d25c994381ed8a1580a6f5ebebd5ad41f89f663ff4ec2885"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_2_ppc64le.whl", hash = "sha256:21c2e6b09565ba5b45ae161b438e033a86ad1736b8c838c766146eff8ceffff9"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_2_s390x.whl", hash = "sha256:afbbdb120d1e78d2ba8064a68058001b871154cc57787031b645c9142b937a62"}, - {file = "lxml-5.2.1-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:627402ad8dea044dde2eccde4370560a2b750ef894c9578e1d4f8ffd54000461"}, - {file = "lxml-5.2.1-cp36-cp36m-win32.whl", hash = "sha256:e89580a581bf478d8dcb97d9cd011d567768e8bc4095f8557b21c4d4c5fea7d0"}, - {file = "lxml-5.2.1-cp36-cp36m-win_amd64.whl", hash = "sha256:59565f10607c244bc4c05c0c5fa0c190c990996e0c719d05deec7030c2aa8289"}, - {file = "lxml-5.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:857500f88b17a6479202ff5fe5f580fc3404922cd02ab3716197adf1ef628029"}, - {file = "lxml-5.2.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:56c22432809085b3f3ae04e6e7bdd36883d7258fcd90e53ba7b2e463efc7a6af"}, - {file = "lxml-5.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a55ee573116ba208932e2d1a037cc4b10d2c1cb264ced2184d00b18ce585b2c0"}, - {file = "lxml-5.2.1-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:6cf58416653c5901e12624e4013708b6e11142956e7f35e7a83f1ab02f3fe456"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:64c2baa7774bc22dd4474248ba16fe1a7f611c13ac6123408694d4cc93d66dbd"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:74b28c6334cca4dd704e8004cba1955af0b778cf449142e581e404bd211fb619"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7221d49259aa1e5a8f00d3d28b1e0b76031655ca74bb287123ef56c3db92f213"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3dbe858ee582cbb2c6294dc85f55b5f19c918c2597855e950f34b660f1a5ede6"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:04ab5415bf6c86e0518d57240a96c4d1fcfc3cb370bb2ac2a732b67f579e5a04"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:6ab833e4735a7e5533711a6ea2df26459b96f9eec36d23f74cafe03631647c41"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f443cdef978430887ed55112b491f670bba6462cea7a7742ff8f14b7abb98d75"}, - {file = "lxml-5.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:9e2addd2d1866fe112bc6f80117bcc6bc25191c5ed1bfbcf9f1386a884252ae8"}, - {file = "lxml-5.2.1-cp37-cp37m-win32.whl", hash = "sha256:f51969bac61441fd31f028d7b3b45962f3ecebf691a510495e5d2cd8c8092dbd"}, - {file = "lxml-5.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:b0b58fbfa1bf7367dde8a557994e3b1637294be6cf2169810375caf8571a085c"}, - {file = "lxml-5.2.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:3e183c6e3298a2ed5af9d7a356ea823bccaab4ec2349dc9ed83999fd289d14d5"}, - {file = "lxml-5.2.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:804f74efe22b6a227306dd890eecc4f8c59ff25ca35f1f14e7482bbce96ef10b"}, - {file = "lxml-5.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:08802f0c56ed150cc6885ae0788a321b73505d2263ee56dad84d200cab11c07a"}, - {file = "lxml-5.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f8c09ed18ecb4ebf23e02b8e7a22a05d6411911e6fabef3a36e4f371f4f2585"}, - {file = "lxml-5.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3d30321949861404323c50aebeb1943461a67cd51d4200ab02babc58bd06a86"}, - {file = "lxml-5.2.1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:b560e3aa4b1d49e0e6c847d72665384db35b2f5d45f8e6a5c0072e0283430533"}, - {file = "lxml-5.2.1-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:058a1308914f20784c9f4674036527e7c04f7be6fb60f5d61353545aa7fcb739"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:adfb84ca6b87e06bc6b146dc7da7623395db1e31621c4785ad0658c5028b37d7"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:417d14450f06d51f363e41cace6488519038f940676ce9664b34ebf5653433a5"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a2dfe7e2473f9b59496247aad6e23b405ddf2e12ef0765677b0081c02d6c2c0b"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bf2e2458345d9bffb0d9ec16557d8858c9c88d2d11fed53998512504cd9df49b"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:58278b29cb89f3e43ff3e0c756abbd1518f3ee6adad9e35b51fb101c1c1daaec"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:64641a6068a16201366476731301441ce93457eb8452056f570133a6ceb15fca"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:78bfa756eab503673991bdcf464917ef7845a964903d3302c5f68417ecdc948c"}, - {file = "lxml-5.2.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:11a04306fcba10cd9637e669fd73aa274c1c09ca64af79c041aa820ea992b637"}, - {file = "lxml-5.2.1-cp38-cp38-win32.whl", hash = "sha256:66bc5eb8a323ed9894f8fa0ee6cb3e3fb2403d99aee635078fd19a8bc7a5a5da"}, - {file = "lxml-5.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:9676bfc686fa6a3fa10cd4ae6b76cae8be26eb5ec6811d2a325636c460da1806"}, - {file = "lxml-5.2.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cf22b41fdae514ee2f1691b6c3cdeae666d8b7fa9434de445f12bbeee0cf48dd"}, - {file = "lxml-5.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ec42088248c596dbd61d4ae8a5b004f97a4d91a9fd286f632e42e60b706718d7"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd53553ddad4a9c2f1f022756ae64abe16da1feb497edf4d9f87f99ec7cf86bd"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feaa45c0eae424d3e90d78823f3828e7dc42a42f21ed420db98da2c4ecf0a2cb"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddc678fb4c7e30cf830a2b5a8d869538bc55b28d6c68544d09c7d0d8f17694dc"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:853e074d4931dbcba7480d4dcab23d5c56bd9607f92825ab80ee2bd916edea53"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc4691d60512798304acb9207987e7b2b7c44627ea88b9d77489bbe3e6cc3bd4"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:beb72935a941965c52990f3a32d7f07ce869fe21c6af8b34bf6a277b33a345d3"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:6588c459c5627fefa30139be4d2e28a2c2a1d0d1c265aad2ba1935a7863a4913"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:588008b8497667f1ddca7c99f2f85ce8511f8f7871b4a06ceede68ab62dff64b"}, - {file = "lxml-5.2.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6787b643356111dfd4032b5bffe26d2f8331556ecb79e15dacb9275da02866e"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7c17b64b0a6ef4e5affae6a3724010a7a66bda48a62cfe0674dabd46642e8b54"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:27aa20d45c2e0b8cd05da6d4759649170e8dfc4f4e5ef33a34d06f2d79075d57"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d4f2cc7060dc3646632d7f15fe68e2fa98f58e35dd5666cd525f3b35d3fed7f8"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff46d772d5f6f73564979cd77a4fffe55c916a05f3cb70e7c9c0590059fb29ef"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:96323338e6c14e958d775700ec8a88346014a85e5de73ac7967db0367582049b"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:52421b41ac99e9d91934e4d0d0fe7da9f02bfa7536bb4431b4c05c906c8c6919"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:7a7efd5b6d3e30d81ec68ab8a88252d7c7c6f13aaa875009fe3097eb4e30b84c"}, - {file = "lxml-5.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ed777c1e8c99b63037b91f9d73a6aad20fd035d77ac84afcc205225f8f41188"}, - {file = "lxml-5.2.1-cp39-cp39-win32.whl", hash = "sha256:644df54d729ef810dcd0f7732e50e5ad1bd0a135278ed8d6bcb06f33b6b6f708"}, - {file = "lxml-5.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:9ca66b8e90daca431b7ca1408cae085d025326570e57749695d6a01454790e95"}, - {file = "lxml-5.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9b0ff53900566bc6325ecde9181d89afadc59c5ffa39bddf084aaedfe3b06a11"}, - {file = "lxml-5.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd6037392f2d57793ab98d9e26798f44b8b4da2f2464388588f48ac52c489ea1"}, - {file = "lxml-5.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b9c07e7a45bb64e21df4b6aa623cb8ba214dfb47d2027d90eac197329bb5e94"}, - {file = "lxml-5.2.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3249cc2989d9090eeac5467e50e9ec2d40704fea9ab72f36b034ea34ee65ca98"}, - {file = "lxml-5.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f42038016852ae51b4088b2862126535cc4fc85802bfe30dea3500fdfaf1864e"}, - {file = "lxml-5.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:533658f8fbf056b70e434dff7e7aa611bcacb33e01f75de7f821810e48d1bb66"}, - {file = "lxml-5.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:622020d4521e22fb371e15f580d153134bfb68d6a429d1342a25f051ec72df1c"}, - {file = "lxml-5.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efa7b51824aa0ee957ccd5a741c73e6851de55f40d807f08069eb4c5a26b2baa"}, - {file = "lxml-5.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c6ad0fbf105f6bcc9300c00010a2ffa44ea6f555df1a2ad95c88f5656104817"}, - {file = "lxml-5.2.1-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:e233db59c8f76630c512ab4a4daf5a5986da5c3d5b44b8e9fc742f2a24dbd460"}, - {file = "lxml-5.2.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6a014510830df1475176466b6087fc0c08b47a36714823e58d8b8d7709132a96"}, - {file = "lxml-5.2.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d38c8f50ecf57f0463399569aa388b232cf1a2ffb8f0a9a5412d0db57e054860"}, - {file = "lxml-5.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5aea8212fb823e006b995c4dda533edcf98a893d941f173f6c9506126188860d"}, - {file = "lxml-5.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff097ae562e637409b429a7ac958a20aab237a0378c42dabaa1e3abf2f896e5f"}, - {file = "lxml-5.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f5d65c39f16717a47c36c756af0fb36144069c4718824b7533f803ecdf91138"}, - {file = "lxml-5.2.1-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3d0c3dd24bb4605439bf91068598d00c6370684f8de4a67c2992683f6c309d6b"}, - {file = "lxml-5.2.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e32be23d538753a8adb6c85bd539f5fd3b15cb987404327c569dfc5fd8366e85"}, - {file = "lxml-5.2.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:cc518cea79fd1e2f6c90baafa28906d4309d24f3a63e801d855e7424c5b34144"}, - {file = "lxml-5.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a0af35bd8ebf84888373630f73f24e86bf016642fb8576fba49d3d6b560b7cbc"}, - {file = "lxml-5.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8aca2e3a72f37bfc7b14ba96d4056244001ddcc18382bd0daa087fd2e68a354"}, - {file = "lxml-5.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ca1e8188b26a819387b29c3895c47a5e618708fe6f787f3b1a471de2c4a94d9"}, - {file = "lxml-5.2.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c8ba129e6d3b0136a0f50345b2cb3db53f6bda5dd8c7f5d83fbccba97fb5dcb5"}, - {file = "lxml-5.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e998e304036198b4f6914e6a1e2b6f925208a20e2042563d9734881150c6c246"}, - {file = "lxml-5.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d3be9b2076112e51b323bdf6d5a7f8a798de55fb8d95fcb64bd179460cdc0704"}, - {file = "lxml-5.2.1.tar.gz", hash = "sha256:3f7765e69bbce0906a7c74d5fe46d2c7a7596147318dbc08e4a2431f3060e306"}, + {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632"}, + {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f"}, + {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393"}, + {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526"}, + {file = "lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30"}, + {file = "lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7"}, + {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545"}, + {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d"}, + {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa"}, + {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b"}, + {file = "lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438"}, + {file = "lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be"}, + {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391"}, + {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466"}, + {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c"}, + {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836"}, + {file = "lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a"}, + {file = "lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48"}, + {file = "lxml-5.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8"}, + {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706"}, + {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573"}, + {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce"}, + {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56"}, + {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9"}, + {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264"}, + {file = "lxml-5.2.2-cp36-cp36m-win32.whl", hash = "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3"}, + {file = "lxml-5.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196"}, + {file = "lxml-5.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b"}, + {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8"}, + {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716"}, + {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905"}, + {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6"}, + {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61"}, + {file = "lxml-5.2.2-cp37-cp37m-win32.whl", hash = "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f"}, + {file = "lxml-5.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40"}, + {file = "lxml-5.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3"}, + {file = "lxml-5.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421"}, + {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706"}, + {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f"}, + {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5"}, + {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48"}, + {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66"}, + {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3"}, + {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b"}, + {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1"}, + {file = "lxml-5.2.2-cp38-cp38-win32.whl", hash = "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30"}, + {file = "lxml-5.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6"}, + {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30"}, + {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a"}, + {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472"}, + {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9"}, + {file = "lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf"}, + {file = "lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425"}, + {file = "lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2"}, + {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9"}, + {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae"}, + {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1"}, + {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2"}, + {file = "lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b"}, + {file = "lxml-5.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b"}, + {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009"}, + {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07"}, + {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484"}, + {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8"}, + {file = "lxml-5.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b"}, + {file = "lxml-5.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525"}, + {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34"}, + {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6"}, + {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14"}, + {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db"}, + {file = "lxml-5.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511"}, + {file = "lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d"}, + {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0"}, + {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e"}, + {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182"}, + {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a"}, + {file = "lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324"}, + {file = "lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"}, ] +[package.dependencies] +lxml-html-clean = {version = "*", optional = true, markers = "extra == \"html-clean\""} + [package.extras] cssselect = ["cssselect (>=0.7)"] html-clean = ["lxml-html-clean"] @@ -2554,6 +2506,20 @@ html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] source = ["Cython (>=3.0.10)"] +[[package]] +name = "lxml-html-clean" +version = "0.1.1" +description = "HTML cleaner from lxml project" +optional = false +python-versions = "*" +files = [ + {file = "lxml_html_clean-0.1.1-py3-none-any.whl", hash = "sha256:58c04176593c9caf72ec92e033d2f38859e918b3eff0cc0f8051ad27dc2ab8ef"}, + {file = "lxml_html_clean-0.1.1.tar.gz", hash = "sha256:8a644ed01dbbe132fabddb9467f077f6dad12a1d4f3a6a553e280f3815fa46df"}, +] + +[package.dependencies] +lxml = "*" + [[package]] name = "markdown" version = "3.6" @@ -2667,39 +2633,40 @@ files = [ [[package]] name = "matplotlib" -version = "3.8.4" +version = "3.9.1" description = "Python plotting package" optional = false python-versions = ">=3.9" files = [ - {file = "matplotlib-3.8.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:abc9d838f93583650c35eca41cfcec65b2e7cb50fd486da6f0c49b5e1ed23014"}, - {file = "matplotlib-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f65c9f002d281a6e904976007b2d46a1ee2bcea3a68a8c12dda24709ddc9106"}, - {file = "matplotlib-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce1edd9f5383b504dbc26eeea404ed0a00656c526638129028b758fd43fc5f10"}, - {file = "matplotlib-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd79298550cba13a43c340581a3ec9c707bd895a6a061a78fa2524660482fc0"}, - {file = "matplotlib-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:90df07db7b599fe7035d2f74ab7e438b656528c68ba6bb59b7dc46af39ee48ef"}, - {file = "matplotlib-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:ac24233e8f2939ac4fd2919eed1e9c0871eac8057666070e94cbf0b33dd9c338"}, - {file = "matplotlib-3.8.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:72f9322712e4562e792b2961971891b9fbbb0e525011e09ea0d1f416c4645661"}, - {file = "matplotlib-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:232ce322bfd020a434caaffbd9a95333f7c2491e59cfc014041d95e38ab90d1c"}, - {file = "matplotlib-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6addbd5b488aedb7f9bc19f91cd87ea476206f45d7116fcfe3d31416702a82fa"}, - {file = "matplotlib-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc4ccdc64e3039fc303defd119658148f2349239871db72cd74e2eeaa9b80b71"}, - {file = "matplotlib-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b7a2a253d3b36d90c8993b4620183b55665a429da8357a4f621e78cd48b2b30b"}, - {file = "matplotlib-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:8080d5081a86e690d7688ffa542532e87f224c38a6ed71f8fbed34dd1d9fedae"}, - {file = "matplotlib-3.8.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:6485ac1f2e84676cff22e693eaa4fbed50ef5dc37173ce1f023daef4687df616"}, - {file = "matplotlib-3.8.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c89ee9314ef48c72fe92ce55c4e95f2f39d70208f9f1d9db4e64079420d8d732"}, - {file = "matplotlib-3.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50bac6e4d77e4262c4340d7a985c30912054745ec99756ce213bfbc3cb3808eb"}, - {file = "matplotlib-3.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f51c4c869d4b60d769f7b4406eec39596648d9d70246428745a681c327a8ad30"}, - {file = "matplotlib-3.8.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b12ba985837e4899b762b81f5b2845bd1a28f4fdd1a126d9ace64e9c4eb2fb25"}, - {file = "matplotlib-3.8.4-cp312-cp312-win_amd64.whl", hash = "sha256:7a6769f58ce51791b4cb8b4d7642489df347697cd3e23d88266aaaee93b41d9a"}, - {file = "matplotlib-3.8.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:843cbde2f0946dadd8c5c11c6d91847abd18ec76859dc319362a0964493f0ba6"}, - {file = "matplotlib-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1c13f041a7178f9780fb61cc3a2b10423d5e125480e4be51beaf62b172413b67"}, - {file = "matplotlib-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb44f53af0a62dc80bba4443d9b27f2fde6acfdac281d95bc872dc148a6509cc"}, - {file = "matplotlib-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:606e3b90897554c989b1e38a258c626d46c873523de432b1462f295db13de6f9"}, - {file = "matplotlib-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9bb0189011785ea794ee827b68777db3ca3f93f3e339ea4d920315a0e5a78d54"}, - {file = "matplotlib-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:6209e5c9aaccc056e63b547a8152661324404dd92340a6e479b3a7f24b42a5d0"}, - {file = "matplotlib-3.8.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c7064120a59ce6f64103c9cefba8ffe6fba87f2c61d67c401186423c9a20fd35"}, - {file = "matplotlib-3.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0e47eda4eb2614300fc7bb4657fced3e83d6334d03da2173b09e447418d499f"}, - {file = "matplotlib-3.8.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:493e9f6aa5819156b58fce42b296ea31969f2aab71c5b680b4ea7a3cb5c07d94"}, - {file = "matplotlib-3.8.4.tar.gz", hash = "sha256:8aac397d5e9ec158960e31c381c5ffc52ddd52bd9a47717e2a694038167dffea"}, + {file = "matplotlib-3.9.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:7ccd6270066feb9a9d8e0705aa027f1ff39f354c72a87efe8fa07632f30fc6bb"}, + {file = "matplotlib-3.9.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:591d3a88903a30a6d23b040c1e44d1afdd0d778758d07110eb7596f811f31842"}, + {file = "matplotlib-3.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd2a59ff4b83d33bca3b5ec58203cc65985367812cb8c257f3e101632be86d92"}, + {file = "matplotlib-3.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fc001516ffcf1a221beb51198b194d9230199d6842c540108e4ce109ac05cc0"}, + {file = "matplotlib-3.9.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:83c6a792f1465d174c86d06f3ae85a8fe36e6f5964633ae8106312ec0921fdf5"}, + {file = "matplotlib-3.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:421851f4f57350bcf0811edd754a708d2275533e84f52f6760b740766c6747a7"}, + {file = "matplotlib-3.9.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:b3fce58971b465e01b5c538f9d44915640c20ec5ff31346e963c9e1cd66fa812"}, + {file = "matplotlib-3.9.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a973c53ad0668c53e0ed76b27d2eeeae8799836fd0d0caaa4ecc66bf4e6676c0"}, + {file = "matplotlib-3.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82cd5acf8f3ef43f7532c2f230249720f5dc5dd40ecafaf1c60ac8200d46d7eb"}, + {file = "matplotlib-3.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab38a4f3772523179b2f772103d8030215b318fef6360cb40558f585bf3d017f"}, + {file = "matplotlib-3.9.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2315837485ca6188a4b632c5199900e28d33b481eb083663f6a44cfc8987ded3"}, + {file = "matplotlib-3.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:a0c977c5c382f6696caf0bd277ef4f936da7e2aa202ff66cad5f0ac1428ee15b"}, + {file = "matplotlib-3.9.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:565d572efea2b94f264dd86ef27919515aa6d629252a169b42ce5f570db7f37b"}, + {file = "matplotlib-3.9.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d397fd8ccc64af2ec0af1f0efc3bacd745ebfb9d507f3f552e8adb689ed730a"}, + {file = "matplotlib-3.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26040c8f5121cd1ad712abffcd4b5222a8aec3a0fe40bc8542c94331deb8780d"}, + {file = "matplotlib-3.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d12cb1837cffaac087ad6b44399d5e22b78c729de3cdae4629e252067b705e2b"}, + {file = "matplotlib-3.9.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0e835c6988edc3d2d08794f73c323cc62483e13df0194719ecb0723b564e0b5c"}, + {file = "matplotlib-3.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:44a21d922f78ce40435cb35b43dd7d573cf2a30138d5c4b709d19f00e3907fd7"}, + {file = "matplotlib-3.9.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:0c584210c755ae921283d21d01f03a49ef46d1afa184134dd0f95b0202ee6f03"}, + {file = "matplotlib-3.9.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:11fed08f34fa682c2b792942f8902e7aefeed400da71f9e5816bea40a7ce28fe"}, + {file = "matplotlib-3.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0000354e32efcfd86bda75729716b92f5c2edd5b947200be9881f0a671565c33"}, + {file = "matplotlib-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4db17fea0ae3aceb8e9ac69c7e3051bae0b3d083bfec932240f9bf5d0197a049"}, + {file = "matplotlib-3.9.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:208cbce658b72bf6a8e675058fbbf59f67814057ae78165d8a2f87c45b48d0ff"}, + {file = "matplotlib-3.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:dc23f48ab630474264276be156d0d7710ac6c5a09648ccdf49fef9200d8cbe80"}, + {file = "matplotlib-3.9.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3fda72d4d472e2ccd1be0e9ccb6bf0d2eaf635e7f8f51d737ed7e465ac020cb3"}, + {file = "matplotlib-3.9.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:84b3ba8429935a444f1fdc80ed930babbe06725bcf09fbeb5c8757a2cd74af04"}, + {file = "matplotlib-3.9.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b918770bf3e07845408716e5bbda17eadfc3fcbd9307dc67f37d6cf834bb3d98"}, + {file = "matplotlib-3.9.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:f1f2e5d29e9435c97ad4c36fb6668e89aee13d48c75893e25cef064675038ac9"}, + {file = "matplotlib-3.9.1.tar.gz", hash = "sha256:de06b19b8db95dd33d0dc17c926c7c9ebed9f572074b6fac4f65068a6814d010"}, ] [package.dependencies] @@ -2708,21 +2675,24 @@ cycler = ">=0.10" fonttools = ">=4.22.0" importlib-resources = {version = ">=3.2.0", markers = "python_version < \"3.10\""} kiwisolver = ">=1.3.1" -numpy = ">=1.21" +numpy = ">=1.23" packaging = ">=20.0" pillow = ">=8" pyparsing = ">=2.3.1" python-dateutil = ">=2.7" +[package.extras] +dev = ["meson-python (>=0.13.1)", "numpy (>=1.25)", "pybind11 (>=2.6)", "setuptools (>=64)", "setuptools_scm (>=7)"] + [[package]] name = "matplotlib-inline" -version = "0.1.6" +version = "0.1.7" description = "Inline Matplotlib backend for Jupyter" optional = true -python-versions = ">=3.5" +python-versions = ">=3.8" files = [ - {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, - {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, + {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"}, + {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"}, ] [package.dependencies] @@ -2730,12 +2700,12 @@ traitlets = "*" [[package]] name = "mayavi" -version = "4.8.1" +version = "4.8.2" description = "3D scientific data visualization library and application" optional = true -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mayavi-4.8.1.tar.gz", hash = "sha256:9f427ef2ca6c91ae78d92d3689ba6beca24c8460e2706d8a1c9b84289ad3fd9e"}, + {file = "mayavi-4.8.2.tar.gz", hash = "sha256:b10fe9145f21c48e4902f0e746b3603b3cb694d11456515a46820f21a0a74229"}, ] [package.dependencies] @@ -2754,13 +2724,13 @@ app = ["envisage"] [[package]] name = "mdit-py-plugins" -version = "0.4.0" +version = "0.4.1" description = "Collection of plugins for markdown-it-py" optional = true python-versions = ">=3.8" files = [ - {file = "mdit_py_plugins-0.4.0-py3-none-any.whl", hash = "sha256:b51b3bb70691f57f974e257e367107857a93b36f322a9e6d44ca5bf28ec2def9"}, - {file = "mdit_py_plugins-0.4.0.tar.gz", hash = "sha256:d8ab27e9aed6c38aa716819fedfde15ca275715955f8a185a8e1cf90fb1d2c1b"}, + {file = "mdit_py_plugins-0.4.1-py3-none-any.whl", hash = "sha256:1020dfe4e6bfc2c79fb49ae4e3f5b297f5ccd20f010187acc52af2921e27dc6a"}, + {file = "mdit_py_plugins-0.4.1.tar.gz", hash = "sha256:834b8ac23d1cd60cec703646ffd22ae97b7955a6d596eb1d304be1e251ae499c"}, ] [package.dependencies] @@ -2806,34 +2776,34 @@ files = [ [[package]] name = "mkdocs" -version = "1.5.3" +version = "1.6.0" description = "Project documentation with Markdown." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mkdocs-1.5.3-py3-none-any.whl", hash = "sha256:3b3a78e736b31158d64dbb2f8ba29bd46a379d0c6e324c2246c3bc3d2189cfc1"}, - {file = "mkdocs-1.5.3.tar.gz", hash = "sha256:eb7c99214dcb945313ba30426c2451b735992c73c2e10838f76d09e39ff4d0e2"}, + {file = "mkdocs-1.6.0-py3-none-any.whl", hash = "sha256:1eb5cb7676b7d89323e62b56235010216319217d4af5ddc543a91beb8d125ea7"}, + {file = "mkdocs-1.6.0.tar.gz", hash = "sha256:a73f735824ef83a4f3bcb7a231dcab23f5a838f88b7efc54a0eef5fbdbc3c512"}, ] [package.dependencies] click = ">=7.0" colorama = {version = ">=0.4", markers = "platform_system == \"Windows\""} ghp-import = ">=1.0" -importlib-metadata = {version = ">=4.3", markers = "python_version < \"3.10\""} +importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""} jinja2 = ">=2.11.1" -markdown = ">=3.2.1" +markdown = ">=3.3.6" markupsafe = ">=2.0.1" mergedeep = ">=1.3.4" +mkdocs-get-deps = ">=0.2.0" packaging = ">=20.5" pathspec = ">=0.11.1" -platformdirs = ">=2.2.0" pyyaml = ">=5.1" pyyaml-env-tag = ">=0.1" watchdog = ">=2.0" [package.extras] i18n = ["babel (>=2.9.0)"] -min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-import (==1.0)", "importlib-metadata (==4.3)", "jinja2 (==2.11.1)", "markdown (==3.2.1)", "markupsafe (==2.0.1)", "mergedeep (==1.3.4)", "packaging (==20.5)", "pathspec (==0.11.1)", "platformdirs (==2.2.0)", "pyyaml (==5.1)", "pyyaml-env-tag (==0.1)", "typing-extensions (==3.10)", "watchdog (==2.0)"] +min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-import (==1.0)", "importlib-metadata (==4.4)", "jinja2 (==2.11.1)", "markdown (==3.3.6)", "markupsafe (==2.0.1)", "mergedeep (==1.3.4)", "mkdocs-get-deps (==0.2.0)", "packaging (==20.5)", "pathspec (==0.11.1)", "pyyaml (==5.1)", "pyyaml-env-tag (==0.1)", "watchdog (==2.0)"] [[package]] name = "mkdocs-autorefs" @@ -2851,15 +2821,32 @@ Markdown = ">=3.3" markupsafe = ">=2.0.1" mkdocs = ">=1.1" +[[package]] +name = "mkdocs-get-deps" +version = "0.2.0" +description = "MkDocs extension that lists all dependencies according to a mkdocs.yml file" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134"}, + {file = "mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c"}, +] + +[package.dependencies] +importlib-metadata = {version = ">=4.3", markers = "python_version < \"3.10\""} +mergedeep = ">=1.3.4" +platformdirs = ">=2.2.0" +pyyaml = ">=5.1" + [[package]] name = "mkdocs-material" -version = "9.5.17" +version = "9.5.29" description = "Documentation that simply works" optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_material-9.5.17-py3-none-any.whl", hash = "sha256:14a2a60119a785e70e765dd033e6211367aca9fc70230e577c1cf6a326949571"}, - {file = "mkdocs_material-9.5.17.tar.gz", hash = "sha256:06ae1275a72db1989cf6209de9e9ecdfbcfdbc24c58353877b2bb927dbe413e4"}, + {file = "mkdocs_material-9.5.29-py3-none-any.whl", hash = "sha256:afc1f508e2662ded95f0a35a329e8a5acd73ee88ca07ba73836eb6fcdae5d8b4"}, + {file = "mkdocs_material-9.5.29.tar.gz", hash = "sha256:3e977598ec15a4ddad5c4dfc9e08edab6023edb51e88f0729bd27be77e3d322a"}, ] [package.dependencies] @@ -2867,7 +2854,7 @@ babel = ">=2.10,<3.0" colorama = ">=0.4,<1.0" jinja2 = ">=3.0,<4.0" markdown = ">=3.2,<4.0" -mkdocs = ">=1.5.3,<1.6.0" +mkdocs = ">=1.6,<2.0" mkdocs-material-extensions = ">=1.3,<2.0" paginate = ">=0.5,<1.0" pygments = ">=2.16,<3.0" @@ -2893,13 +2880,13 @@ files = [ [[package]] name = "mkdocstrings" -version = "0.24.3" +version = "0.25.1" description = "Automatic documentation from sources, for MkDocs." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocstrings-0.24.3-py3-none-any.whl", hash = "sha256:5c9cf2a32958cd161d5428699b79c8b0988856b0d4a8c5baf8395fc1bf4087c3"}, - {file = "mkdocstrings-0.24.3.tar.gz", hash = "sha256:f327b234eb8d2551a306735436e157d0a22d45f79963c60a8b585d5f7a94c1d2"}, + {file = "mkdocstrings-0.25.1-py3-none-any.whl", hash = "sha256:da01fcc2670ad61888e8fe5b60afe9fee5781017d67431996832d63e887c2e51"}, + {file = "mkdocstrings-0.25.1.tar.gz", hash = "sha256:c3a2515f31577f311a9ee58d089e4c51fc6046dbd9e9b4c3de4c3194667fe9bf"}, ] [package.dependencies] @@ -2965,13 +2952,13 @@ test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>= [[package]] name = "nbconvert" -version = "7.16.3" +version = "7.16.4" description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." optional = true python-versions = ">=3.8" files = [ - {file = "nbconvert-7.16.3-py3-none-any.whl", hash = "sha256:ddeff14beeeedf3dd0bc506623e41e4507e551736de59df69a91f86700292b3b"}, - {file = "nbconvert-7.16.3.tar.gz", hash = "sha256:a6733b78ce3d47c3f85e504998495b07e6ea9cf9bf6ec1c98dda63ec6ad19142"}, + {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, + {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, ] [package.dependencies] @@ -2993,9 +2980,9 @@ tinycss2 = "*" traitlets = ">=5.1" [package.extras] -all = ["nbconvert[docs,qtpdf,serve,test,webpdf]"] +all = ["flaky", "ipykernel", "ipython", "ipywidgets (>=7.5)", "myst-parser", "nbsphinx (>=0.2.12)", "playwright", "pydata-sphinx-theme", "pyqtwebengine (>=5.15)", "pytest (>=7)", "sphinx (==5.0.2)", "sphinxcontrib-spelling", "tornado (>=6.1)"] docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] -qtpdf = ["nbconvert[qtpng]"] +qtpdf = ["pyqtwebengine (>=5.15)"] qtpng = ["pyqtwebengine (>=5.15)"] serve = ["tornado (>=6.1)"] test = ["flaky", "ipykernel", "ipywidgets (>=7.5)", "pytest (>=7)"] @@ -3035,38 +3022,36 @@ files = [ [[package]] name = "netcdf4" -version = "1.6.5" +version = "1.7.1.post1" description = "Provides an object-oriented python interface to the netCDF version 4 library" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "netCDF4-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d23b97cbde2bf413fadc4697c5c255a0436511c02f811e127e0fb12f5b882a4c"}, - {file = "netCDF4-1.6.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e5edfed673005f47f8d2fbea9c72c382b085dd358ac3c20ca743a563ed7b90e"}, - {file = "netCDF4-1.6.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10d2ac9ae1308ca837d86c6dc304ec455a85bdba0f2175e222844a54589168dc"}, - {file = "netCDF4-1.6.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a63a2be2f80977ac23bb0aa736c565011fd4639097ce0922e01b0dc38015df2"}, - {file = "netCDF4-1.6.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aaceea2097d292bad398d9f9b4fe403efa7b1568fcfa6faba9b67b1630027f9"}, - {file = "netCDF4-1.6.5-cp310-cp310-win_amd64.whl", hash = "sha256:111357d9e12eb79e8d58bfd91bc6b230d35b17a0ebd8c546d17416e8ceebea49"}, - {file = "netCDF4-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1c5fede0b34c0a02a1b9e84116bfb3fcd2f80124a651d4836e72b785d10e2f15"}, - {file = "netCDF4-1.6.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3de5512b9270aa6472e4f3aa2bf895a7364c1d4f8667ce3b82e8232197d4fec8"}, - {file = "netCDF4-1.6.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b20971a164431f6eca1d24df8aa153db15c2c1b9630e83ccc5cf004e8ac8151d"}, - {file = "netCDF4-1.6.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad1101d538077152b866782e44458356981526bf2ea9cc07930bf28b589c82a7"}, - {file = "netCDF4-1.6.5-cp311-cp311-win_amd64.whl", hash = "sha256:de4dc973fae9e2bbdf42e094125e423a4c25393172a61958314969b055a38889"}, - {file = "netCDF4-1.6.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:19e16c63cdd7c0dbffe284a4a65f226ba1026f476f35cbedd099b4792b395f69"}, - {file = "netCDF4-1.6.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b994afce2ca4073f6b757385a6c0ffec25ecaae2b8821535b303c7cdbf6de42b"}, - {file = "netCDF4-1.6.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0187646e3348e7a8cd654617dda65517df138042c94c2fcc6682ff7c8c6654dc"}, - {file = "netCDF4-1.6.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1ab5dabac27d25fcc82c52dc29a74a6585e865208cce35f4e285df83d3df0b2"}, - {file = "netCDF4-1.6.5-cp312-cp312-win_amd64.whl", hash = "sha256:081e9043ac6160989f60570928eabe803c88ce7df1d3f79f2345dc48f68ef752"}, - {file = "netCDF4-1.6.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9b47b22dda5b25ba6291f97634d7ac67b0a843f8ae5c9d9d5813c15364f66d0a"}, - {file = "netCDF4-1.6.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4609dd62d14798c9524327287091875449d68588c128abb768fc0c76c4a28165"}, - {file = "netCDF4-1.6.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2455e9d35fde067e6a6bdc24aa9d44962235a071cec49904d1589e298c23dcd3"}, - {file = "netCDF4-1.6.5-cp38-cp38-win_amd64.whl", hash = "sha256:2c210794d96431d92b5992e46ad8a9f97237bf6d6956f8816978a03dc0fa18c3"}, - {file = "netCDF4-1.6.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:18255b8b283d32d3900092f29c67e53aa25bd8f0dfe7adde59fe782d865a381c"}, - {file = "netCDF4-1.6.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:53050562bac84738bbd121fbbee9593d074579f5d6fdaafcb981abeb5c964225"}, - {file = "netCDF4-1.6.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:938c062382406bca9198b16adddd87c09b00521766b138cdfd11c95546eefeb8"}, - {file = "netCDF4-1.6.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a8300451d7542d3c4ff1dcccf5fb1c7d44bdd1dc08ec77dab04416caf13cb1f"}, - {file = "netCDF4-1.6.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a27db2701feef31201c9b20b04a9579196edc20dfc339ca423c7b81e462d6e14"}, - {file = "netCDF4-1.6.5-cp39-cp39-win_amd64.whl", hash = "sha256:574d7742ab321e5f9f33b5b1296c4ad4e5c469152c17d4fc453d5070e413e596"}, - {file = "netCDF4-1.6.5.tar.gz", hash = "sha256:824881d0aacfde5bd982d6adedd8574259c85553781e7b83e0ce82b890bfa0ef"}, + {file = "netCDF4-1.7.1.post1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:5abdc8ab27bcb11325547841311717a0ba8f5b73a5fc5e93b933bc23285d0c03"}, + {file = "netCDF4-1.7.1.post1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:33f5d66ee9cedf43d3932d0e5447eb471f9c53332f93476133b4bfc6b682f790"}, + {file = "netCDF4-1.7.1.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d649fad9d1f63e25a191576c7de158c8c3afa8d4b4001e8683e20da90b49b939"}, + {file = "netCDF4-1.7.1.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:860222bc57bbc714e55705f263162be2c935129dcb700a944bda61aee785ff03"}, + {file = "netCDF4-1.7.1.post1-cp310-cp310-win_amd64.whl", hash = "sha256:d5420155ca6c768c070922d80acd9f4088a913afd25a9fd2f429e7af626374eb"}, + {file = "netCDF4-1.7.1.post1-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:a8d3209516aa8c58d70863ab1059af4ec82ef8ecb1c6b8cb4842d7825a6f64da"}, + {file = "netCDF4-1.7.1.post1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7a10da9b60d3358876d53a0cd691d2c900c2b39903bf25ad5235fd321d59eb2f"}, + {file = "netCDF4-1.7.1.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac99e03d6e28419b206444fd6dc80a5e21d0ae8e53ff37d756fbc16c5d3775"}, + {file = "netCDF4-1.7.1.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e15f3afa4e6910fc158a318ea73fdc6f9e41058c71bf98a99fd63994334d16b0"}, + {file = "netCDF4-1.7.1.post1-cp311-cp311-win_amd64.whl", hash = "sha256:115160fc8e09333754542c33d721d42625a7bd62381a74f2f759297e3e38810b"}, + {file = "netCDF4-1.7.1.post1-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:75bba24ef0354fb6913bc3acdcb3790534e86bf329bbeaaf54122b18e5fd05ea"}, + {file = "netCDF4-1.7.1.post1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:ce7f89b98dbb3acd9582db30e6478ce7a7003b2cb70dc20d85fe9506e65ab001"}, + {file = "netCDF4-1.7.1.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac4e30a0d5a8e227d6a890502cfa201388acf606c0c73a5a7594232f3a74e67e"}, + {file = "netCDF4-1.7.1.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:988c45f9122337a12267fb158953c0609e3ea50a557335a3105f104416a4821a"}, + {file = "netCDF4-1.7.1.post1-cp312-cp312-win_amd64.whl", hash = "sha256:8fb3ed3541fa1b5b46e9d92d7e803734a1a3f37d8f5adf5fdf7957c7750cb20e"}, + {file = "netCDF4-1.7.1.post1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:a4d05cc4c3628a7b88d623cb1a02908100a4938335a0289fa79c19016c21d7f9"}, + {file = "netCDF4-1.7.1.post1-cp38-cp38-macosx_14_0_arm64.whl", hash = "sha256:3a9ba8dc93f3d9019db921e42d40fa6791e7e244f3bb3a874bf2bfb96aea7380"}, + {file = "netCDF4-1.7.1.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fbbca82a822ba74b605254f7a267d258f13d67f8a4156a09e26322bfa002a82d"}, + {file = "netCDF4-1.7.1.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a09da245f4784421fb4d5740dae0367cdbb270d0a931a33474ec17a9433314d"}, + {file = "netCDF4-1.7.1.post1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:fdcec3a3150f9248e76301ad723f51955efc770edf015dfb61a6480cc7c04a70"}, + {file = "netCDF4-1.7.1.post1-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:0fed0eb65a7751a99a0cee08c6df383737d46d17c73cabae81d113f1b4fa3643"}, + {file = "netCDF4-1.7.1.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:daa6169fe6617a4612cb75a8ef61ee14011a012633ad1ace1b629a1ff87bf5cf"}, + {file = "netCDF4-1.7.1.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcad21e965978cc5530131bd7e73dcabe7dda1f681f9e4ebf940a65a176d25fe"}, + {file = "netCDF4-1.7.1.post1-cp39-cp39-win_amd64.whl", hash = "sha256:f24027ae19b68cc1274aad8b00d6d81879d506ddca011a080dff2117014398b9"}, + {file = "netcdf4-1.7.1.post1.tar.gz", hash = "sha256:797f0b25d87827fc6821e415d9e15a2068604b18c3be62563e72682bcba76548"}, ] [package.dependencies] @@ -3112,37 +3097,37 @@ test = ["coverage", "nbval", "pytest", "pytest-cov", "requests", "requests-unixs [[package]] name = "numba" -version = "0.59.1" +version = "0.60.0" description = "compiling Python code using LLVM" optional = true python-versions = ">=3.9" files = [ - {file = "numba-0.59.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:97385a7f12212c4f4bc28f648720a92514bee79d7063e40ef66c2d30600fd18e"}, - {file = "numba-0.59.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0b77aecf52040de2a1eb1d7e314497b9e56fba17466c80b457b971a25bb1576d"}, - {file = "numba-0.59.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3476a4f641bfd58f35ead42f4dcaf5f132569c4647c6f1360ccf18ee4cda3990"}, - {file = "numba-0.59.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:525ef3f820931bdae95ee5379c670d5c97289c6520726bc6937a4a7d4230ba24"}, - {file = "numba-0.59.1-cp310-cp310-win_amd64.whl", hash = "sha256:990e395e44d192a12105eca3083b61307db7da10e093972ca285c85bef0963d6"}, - {file = "numba-0.59.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:43727e7ad20b3ec23ee4fc642f5b61845c71f75dd2825b3c234390c6d8d64051"}, - {file = "numba-0.59.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:411df625372c77959570050e861981e9d196cc1da9aa62c3d6a836b5cc338966"}, - {file = "numba-0.59.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2801003caa263d1e8497fb84829a7ecfb61738a95f62bc05693fcf1733e978e4"}, - {file = "numba-0.59.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:dd2842fac03be4e5324ebbbd4d2d0c8c0fc6e0df75c09477dd45b288a0777389"}, - {file = "numba-0.59.1-cp311-cp311-win_amd64.whl", hash = "sha256:0594b3dfb369fada1f8bb2e3045cd6c61a564c62e50cf1f86b4666bc721b3450"}, - {file = "numba-0.59.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1cce206a3b92836cdf26ef39d3a3242fec25e07f020cc4feec4c4a865e340569"}, - {file = "numba-0.59.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8c8b4477763cb1fbd86a3be7050500229417bf60867c93e131fd2626edb02238"}, - {file = "numba-0.59.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d80bce4ef7e65bf895c29e3889ca75a29ee01da80266a01d34815918e365835"}, - {file = "numba-0.59.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f7ad1d217773e89a9845886401eaaab0a156a90aa2f179fdc125261fd1105096"}, - {file = "numba-0.59.1-cp312-cp312-win_amd64.whl", hash = "sha256:5bf68f4d69dd3a9f26a9b23548fa23e3bcb9042e2935257b471d2a8d3c424b7f"}, - {file = "numba-0.59.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4e0318ae729de6e5dbe64c75ead1a95eb01fabfe0e2ebed81ebf0344d32db0ae"}, - {file = "numba-0.59.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0f68589740a8c38bb7dc1b938b55d1145244c8353078eea23895d4f82c8b9ec1"}, - {file = "numba-0.59.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:649913a3758891c77c32e2d2a3bcbedf4a69f5fea276d11f9119677c45a422e8"}, - {file = "numba-0.59.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:9712808e4545270291d76b9a264839ac878c5eb7d8b6e02c970dc0ac29bc8187"}, - {file = "numba-0.59.1-cp39-cp39-win_amd64.whl", hash = "sha256:8d51ccd7008a83105ad6a0082b6a2b70f1142dc7cfd76deb8c5a862367eb8c86"}, - {file = "numba-0.59.1.tar.gz", hash = "sha256:76f69132b96028d2774ed20415e8c528a34e3299a40581bae178f0994a2f370b"}, + {file = "numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651"}, + {file = "numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b"}, + {file = "numba-0.60.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1527dc578b95c7c4ff248792ec33d097ba6bef9eda466c948b68dfc995c25781"}, + {file = "numba-0.60.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe0b28abb8d70f8160798f4de9d486143200f34458d34c4a214114e445d7124e"}, + {file = "numba-0.60.0-cp310-cp310-win_amd64.whl", hash = "sha256:19407ced081d7e2e4b8d8c36aa57b7452e0283871c296e12d798852bc7d7f198"}, + {file = "numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a17b70fc9e380ee29c42717e8cc0bfaa5556c416d94f9aa96ba13acb41bdece8"}, + {file = "numba-0.60.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fb02b344a2a80efa6f677aa5c40cd5dd452e1b35f8d1c2af0dfd9ada9978e4b"}, + {file = "numba-0.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5f4fde652ea604ea3c86508a3fb31556a6157b2c76c8b51b1d45eb40c8598703"}, + {file = "numba-0.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4142d7ac0210cc86432b818338a2bc368dc773a2f5cf1e32ff7c5b378bd63ee8"}, + {file = "numba-0.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cac02c041e9b5bc8cf8f2034ff6f0dbafccd1ae9590dc146b3a02a45e53af4e2"}, + {file = "numba-0.60.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7da4098db31182fc5ffe4bc42c6f24cd7d1cb8a14b59fd755bfee32e34b8404"}, + {file = "numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:38d6ea4c1f56417076ecf8fc327c831ae793282e0ff51080c5094cb726507b1c"}, + {file = "numba-0.60.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:62908d29fb6a3229c242e981ca27e32a6e606cc253fc9e8faeb0e48760de241e"}, + {file = "numba-0.60.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0ebaa91538e996f708f1ab30ef4d3ddc344b64b5227b67a57aa74f401bb68b9d"}, + {file = "numba-0.60.0-cp312-cp312-win_amd64.whl", hash = "sha256:f75262e8fe7fa96db1dca93d53a194a38c46da28b112b8a4aca168f0df860347"}, + {file = "numba-0.60.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:01ef4cd7d83abe087d644eaa3d95831b777aa21d441a23703d649e06b8e06b74"}, + {file = "numba-0.60.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:819a3dfd4630d95fd574036f99e47212a1af41cbcb019bf8afac63ff56834449"}, + {file = "numba-0.60.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b983bd6ad82fe868493012487f34eae8bf7dd94654951404114f23c3466d34b"}, + {file = "numba-0.60.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c151748cd269ddeab66334bd754817ffc0cabd9433acb0f551697e5151917d25"}, + {file = "numba-0.60.0-cp39-cp39-win_amd64.whl", hash = "sha256:3031547a015710140e8c87226b4cfe927cac199835e5bf7d4fe5cb64e814e3ab"}, + {file = "numba-0.60.0.tar.gz", hash = "sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16"}, ] [package.dependencies] -llvmlite = "==0.42.*" -numpy = ">=1.22,<1.27" +llvmlite = "==0.43.*" +numpy = ">=1.22,<2.1" [[package]] name = "numcodecs" @@ -3231,13 +3216,13 @@ files = [ [[package]] name = "packaging" -version = "24.0" +version = "24.1" description = "Core utilities for Python packages" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"}, - {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"}, + {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, + {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, ] [[package]] @@ -3252,47 +3237,45 @@ files = [ [[package]] name = "pandas" -version = "2.2.1" +version = "2.2.2" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.9" files = [ - {file = "pandas-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8df8612be9cd1c7797c93e1c5df861b2ddda0b48b08f2c3eaa0702cf88fb5f88"}, - {file = "pandas-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0f573ab277252ed9aaf38240f3b54cfc90fff8e5cab70411ee1d03f5d51f3944"}, - {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f02a3a6c83df4026e55b63c1f06476c9aa3ed6af3d89b4f04ea656ccdaaaa359"}, - {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38ce92cb22a4bea4e3929429aa1067a454dcc9c335799af93ba9be21b6beb51"}, - {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c2ce852e1cf2509a69e98358e8458775f89599566ac3775e70419b98615f4b06"}, - {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53680dc9b2519cbf609c62db3ed7c0b499077c7fefda564e330286e619ff0dd9"}, - {file = "pandas-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:94e714a1cca63e4f5939cdce5f29ba8d415d85166be3441165edd427dc9f6bc0"}, - {file = "pandas-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f821213d48f4ab353d20ebc24e4faf94ba40d76680642fb7ce2ea31a3ad94f9b"}, - {file = "pandas-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c70e00c2d894cb230e5c15e4b1e1e6b2b478e09cf27cc593a11ef955b9ecc81a"}, - {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97fbb5387c69209f134893abc788a6486dbf2f9e511070ca05eed4b930b1b02"}, - {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101d0eb9c5361aa0146f500773395a03839a5e6ecde4d4b6ced88b7e5a1a6403"}, - {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d2ed41c319c9fb4fd454fe25372028dfa417aacb9790f68171b2e3f06eae8cd"}, - {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:af5d3c00557d657c8773ef9ee702c61dd13b9d7426794c9dfeb1dc4a0bf0ebc7"}, - {file = "pandas-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:06cf591dbaefb6da9de8472535b185cba556d0ce2e6ed28e21d919704fef1a9e"}, - {file = "pandas-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:88ecb5c01bb9ca927ebc4098136038519aa5d66b44671861ffab754cae75102c"}, - {file = "pandas-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04f6ec3baec203c13e3f8b139fb0f9f86cd8c0b94603ae3ae8ce9a422e9f5bee"}, - {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a935a90a76c44fe170d01e90a3594beef9e9a6220021acfb26053d01426f7dc2"}, - {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c391f594aae2fd9f679d419e9a4d5ba4bce5bb13f6a989195656e7dc4b95c8f0"}, - {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9d1265545f579edf3f8f0cb6f89f234f5e44ba725a34d86535b1a1d38decbccc"}, - {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11940e9e3056576ac3244baef2fedade891977bcc1cb7e5cc8f8cc7d603edc89"}, - {file = "pandas-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4acf681325ee1c7f950d058b05a820441075b0dd9a2adf5c4835b9bc056bf4fb"}, - {file = "pandas-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9bd8a40f47080825af4317d0340c656744f2bfdb6819f818e6ba3cd24c0e1397"}, - {file = "pandas-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:df0c37ebd19e11d089ceba66eba59a168242fc6b7155cba4ffffa6eccdfb8f16"}, - {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:739cc70eaf17d57608639e74d63387b0d8594ce02f69e7a0b046f117974b3019"}, - {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d3558d263073ed95e46f4650becff0c5e1ffe0fc3a015de3c79283dfbdb3df"}, - {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4aa1d8707812a658debf03824016bf5ea0d516afdea29b7dc14cf687bc4d4ec6"}, - {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:76f27a809cda87e07f192f001d11adc2b930e93a2b0c4a236fde5429527423be"}, - {file = "pandas-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:1ba21b1d5c0e43416218db63037dbe1a01fc101dc6e6024bcad08123e48004ab"}, - {file = "pandas-2.2.1.tar.gz", hash = "sha256:0ab90f87093c13f3e8fa45b48ba9f39181046e8f3317d3aadb2fffbb1b978572"}, + {file = "pandas-2.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08"}, + {file = "pandas-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51"}, + {file = "pandas-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99"}, + {file = "pandas-2.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288"}, + {file = "pandas-2.2.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b"}, + {file = "pandas-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db"}, + {file = "pandas-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1"}, + {file = "pandas-2.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef"}, + {file = "pandas-2.2.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad"}, + {file = "pandas-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76"}, + {file = "pandas-2.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32"}, + {file = "pandas-2.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23"}, + {file = "pandas-2.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863"}, + {file = "pandas-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a"}, + {file = "pandas-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57"}, + {file = "pandas-2.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4"}, + {file = "pandas-2.2.2.tar.gz", hash = "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54"}, ] [package.dependencies] numpy = [ - {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, - {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, - {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}, + {version = ">=1.22.4", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -3336,13 +3319,13 @@ files = [ [[package]] name = "panel" -version = "1.4.0" +version = "1.4.4" description = "The powerful data exploration & web app framework for Python." optional = true python-versions = ">=3.9" files = [ - {file = "panel-1.4.0-py3-none-any.whl", hash = "sha256:98f62cdfb36f9bbed5c76967c488e5dd83ff1aadbe5f835057558a4524c31146"}, - {file = "panel-1.4.0.tar.gz", hash = "sha256:c2129d9d387423fa9f385600b945fe5279d0772f2ffa65c953e7139aee8ea01a"}, + {file = "panel-1.4.4-py3-none-any.whl", hash = "sha256:b49bb9676567b0c0730bf69348c057247080811aec56364dd4fcfba80e5e09a0"}, + {file = "panel-1.4.4.tar.gz", hash = "sha256:659e9fc5b495e6519c5d07e8148fa5eeed9bc648356ec83fc299381ba5a726ef"}, ] [package.dependencies] @@ -3353,7 +3336,7 @@ markdown = "*" markdown-it-py = "*" mdit-py-plugins = "*" pandas = ">=1.2" -param = ">=2.0.0,<3.0" +param = ">=2.1.0,<3.0" pyviz-comms = ">=2.0.0" requests = "*" tqdm = ">=4.48.0" @@ -3361,36 +3344,36 @@ typing-extensions = "*" xyzservices = ">=2021.09.1" [package.extras] -all = ["aiohttp", "altair", "anywidget", "channels", "croniter", "dask-expr", "datashader", "diskcache", "django (<4)", "fastparquet", "flake8", "folium", "graphviz", "holoviews (>=1.16.0)", "hvplot", "ipyleaflet", "ipympl", "ipython (>=7.0)", "ipyvolume", "ipyvuetify", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.7)", "jupyter-server", "jupyterlab", "lxml", "matplotlib", "nbsite (>=0.8.4)", "nbval", "networkx (>=2.5)", "numba (<0.58)", "numpy", "pandas (<2.1.0)", "pandas (>=1.3)", "parameterized", "pillow", "playwright", "plotly", "plotly (>=4.0)", "pre-commit", "psutil", "pydeck", "pygraphviz", "pyinstrument (>=4.0)", "pytest", "pytest-asyncio (<0.22)", "pytest-cov", "pytest-playwright", "pytest-rerunfailures", "pytest-xdist", "python-graphviz", "pyvista", "reacton", "scikit-image", "scikit-learn", "scipy", "seaborn", "streamz", "textual", "tomli", "twine", "vega-datasets", "vtk", "watchfiles", "xarray", "xgboost"] -all-pip = ["aiohttp", "altair", "anywidget", "channels", "croniter", "dask-expr", "datashader", "diskcache", "django (<4)", "fastparquet", "flake8", "folium", "graphviz", "holoviews (>=1.16.0)", "hvplot", "ipyleaflet", "ipympl", "ipython (>=7.0)", "ipyvolume", "ipyvuetify", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.7)", "jupyter-server", "jupyterlab", "lxml", "matplotlib", "nbsite (>=0.8.4)", "nbval", "networkx (>=2.5)", "numba (<0.58)", "numpy", "pandas (<2.1.0)", "pandas (>=1.3)", "parameterized", "pillow", "playwright", "plotly", "plotly (>=4.0)", "pre-commit", "psutil", "pydeck", "pyinstrument (>=4.0)", "pytest", "pytest-asyncio (<0.22)", "pytest-cov", "pytest-playwright", "pytest-rerunfailures", "pytest-xdist", "pyvista", "reacton", "scikit-image", "scikit-learn", "scipy", "seaborn", "streamz", "textual", "tomli", "twine", "vega-datasets", "vtk", "watchfiles", "xarray", "xgboost"] +all = ["aiohttp", "altair", "anywidget", "channels", "croniter", "dask-expr", "datashader", "diskcache", "django (<4)", "fastparquet", "flake8", "folium", "graphviz", "holoviews (>=1.16.0)", "hvplot", "ipyleaflet", "ipympl", "ipython (>=7.0)", "ipyvolume", "ipyvuetify", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.7)", "jupyter-server", "jupyterlab", "lxml", "matplotlib", "nbsite (>=0.8.4)", "nbval", "networkx (>=2.5)", "numba (<0.58)", "numpy", "pandas (<2.1.0)", "pandas (>=1.3)", "parameterized", "pillow", "playwright", "plotly", "plotly (>=4.0)", "pre-commit", "psutil", "pydeck", "pygraphviz", "pyinstrument (>=4.0)", "pytest", "pytest-asyncio", "pytest-cov", "pytest-playwright", "pytest-rerunfailures", "pytest-xdist", "python-graphviz", "pyvista", "reacton", "scikit-image", "scikit-learn", "scipy", "seaborn", "streamz", "textual", "tomli", "twine", "vega-datasets", "vtk", "watchfiles", "xarray", "xgboost"] +all-pip = ["aiohttp", "altair", "anywidget", "channels", "croniter", "dask-expr", "datashader", "diskcache", "django (<4)", "fastparquet", "flake8", "folium", "graphviz", "holoviews (>=1.16.0)", "hvplot", "ipyleaflet", "ipympl", "ipython (>=7.0)", "ipyvolume", "ipyvuetify", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.7)", "jupyter-server", "jupyterlab", "lxml", "matplotlib", "nbsite (>=0.8.4)", "nbval", "networkx (>=2.5)", "numba (<0.58)", "numpy", "pandas (<2.1.0)", "pandas (>=1.3)", "parameterized", "pillow", "playwright", "plotly", "plotly (>=4.0)", "pre-commit", "psutil", "pydeck", "pyinstrument (>=4.0)", "pytest", "pytest-asyncio", "pytest-cov", "pytest-playwright", "pytest-rerunfailures", "pytest-xdist", "pyvista", "reacton", "scikit-image", "scikit-learn", "scipy", "seaborn", "streamz", "textual", "tomli", "twine", "vega-datasets", "vtk", "watchfiles", "xarray", "xgboost"] build = ["bleach", "bokeh (>=3.4.0,<3.5.0)", "cryptography (<39)", "markdown", "packaging", "param (>=2.0.0)", "pyviz-comms (>=2.0.0)", "requests", "setuptools (>=42)", "tqdm (>=4.48.0)", "urllib3 (<2.0)"] doc = ["holoviews (>=1.16.0)", "jupyterlab", "lxml", "matplotlib", "nbsite (>=0.8.4)", "pandas (<2.1.0)", "pillow", "plotly"] examples = ["aiohttp", "altair", "channels", "croniter", "dask-expr", "datashader", "django (<4)", "fastparquet", "folium", "graphviz", "holoviews (>=1.16.0)", "hvplot", "ipyleaflet", "ipympl", "ipyvolume", "ipyvuetify", "ipywidgets", "ipywidgets-bokeh", "jupyter-bokeh (>=3.0.7)", "networkx (>=2.5)", "plotly (>=4.0)", "pydeck", "pygraphviz", "pyinstrument (>=4.0)", "python-graphviz", "pyvista", "reacton", "scikit-image", "scikit-learn", "seaborn", "streamz", "textual", "vega-datasets", "vtk", "xarray", "xgboost"] recommended = ["holoviews (>=1.16.0)", "jupyterlab", "matplotlib", "pillow", "plotly"] -tests = ["altair", "anywidget", "diskcache", "flake8", "folium", "holoviews (>=1.16.0)", "ipympl", "ipython (>=7.0)", "ipyvuetify", "ipywidgets-bokeh", "nbval", "numba (<0.58)", "numpy", "pandas (>=1.3)", "parameterized", "pre-commit", "psutil", "pytest", "pytest-asyncio (<0.22)", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "reacton", "scipy", "textual", "twine", "watchfiles"] -tests-core = ["altair", "anywidget", "diskcache", "flake8", "folium", "holoviews (>=1.16.0)", "ipython (>=7.0)", "nbval", "numpy", "pandas (>=1.3)", "parameterized", "pre-commit", "psutil", "pytest", "pytest-asyncio (<0.22)", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "scipy", "textual", "watchfiles"] +tests = ["altair", "anywidget", "diskcache", "flake8", "folium", "holoviews (>=1.16.0)", "ipympl", "ipython (>=7.0)", "ipyvuetify", "ipywidgets-bokeh", "nbval", "numba (<0.58)", "numpy", "pandas (>=1.3)", "parameterized", "pre-commit", "psutil", "pytest", "pytest-asyncio", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "reacton", "scipy", "textual", "twine", "watchfiles"] +tests-core = ["altair", "anywidget", "diskcache", "flake8", "folium", "holoviews (>=1.16.0)", "ipython (>=7.0)", "nbval", "numpy", "pandas (>=1.3)", "parameterized", "pre-commit", "psutil", "pytest", "pytest-asyncio", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "scipy", "textual", "watchfiles"] ui = ["jupyter-server", "playwright", "pytest-playwright", "tomli"] [[package]] name = "param" -version = "2.1.0" +version = "2.1.1" description = "Make your Python code clearer and more reliable by declaring Parameters." optional = true python-versions = ">=3.8" files = [ - {file = "param-2.1.0-py3-none-any.whl", hash = "sha256:f31d3745d227347d29b5868c4e4e3077df07463889b91d3bb28e634fde211e1c"}, - {file = "param-2.1.0.tar.gz", hash = "sha256:a7b30b08b547e2b78b02aeba6ed34e3c6a638f8e4824a76a96ffa2d7cf57e71f"}, + {file = "param-2.1.1-py3-none-any.whl", hash = "sha256:81066d040526fbaa44b6419f3e92348fa8856ea44c8d3915e9245937ddabe2d6"}, + {file = "param-2.1.1.tar.gz", hash = "sha256:3b1da14abafa75bfd908572378a58696826b3719a723bc31b40ffff2e9a5c852"}, ] [package.extras] -all = ["param[doc]", "param[lint]", "param[tests-full]"] -doc = ["nbsite (==0.8.4)", "param[examples]", "sphinx-remove-toctrees"] +all = ["aiohttp", "cloudpickle", "coverage[toml]", "flake8", "gmpy", "ipython", "jsonschema", "nbsite (==0.8.4)", "nbval", "nest-asyncio", "numpy", "odfpy", "openpyxl", "pandas", "panel", "pre-commit", "pyarrow", "pytest", "pytest-asyncio", "pytest-xdist", "sphinx-remove-toctrees", "tables", "xlrd"] +doc = ["aiohttp", "nbsite (==0.8.4)", "pandas", "panel", "sphinx-remove-toctrees"] examples = ["aiohttp", "pandas", "panel"] lint = ["flake8", "pre-commit"] tests = ["coverage[toml]", "pytest", "pytest-asyncio"] tests-deser = ["odfpy", "openpyxl", "pyarrow", "tables", "xlrd"] -tests-examples = ["nbval", "param[examples]", "pytest (<8.1)", "pytest-asyncio", "pytest-xdist"] -tests-full = ["cloudpickle", "gmpy", "ipython", "jsonschema", "nest-asyncio", "numpy", "pandas", "param[tests-deser]", "param[tests-examples]", "param[tests]"] +tests-examples = ["aiohttp", "nbval", "pandas", "panel", "pytest", "pytest-asyncio", "pytest-xdist"] +tests-full = ["aiohttp", "cloudpickle", "coverage[toml]", "gmpy", "ipython", "jsonschema", "nbval", "nest-asyncio", "numpy", "odfpy", "openpyxl", "pandas", "panel", "pyarrow", "pytest", "pytest-asyncio", "pytest-xdist", "tables", "xlrd"] [[package]] name = "parso" @@ -3409,13 +3392,13 @@ testing = ["docopt", "pytest"] [[package]] name = "partd" -version = "1.4.1" +version = "1.4.2" description = "Appendable key-value storage" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "partd-1.4.1-py3-none-any.whl", hash = "sha256:27e766663d36c161e2827aa3e28541c992f0b9527d3cca047e13fb3acdb989e6"}, - {file = "partd-1.4.1.tar.gz", hash = "sha256:56c25dd49e6fea5727e731203c466c6e092f308d8f0024e199d02f6aa2167f67"}, + {file = "partd-1.4.2-py3-none-any.whl", hash = "sha256:978e4ac767ec4ba5b86c6eaa52e5a2a3bc748a2ca839e8cc798f1cc6ce6efb0f"}, + {file = "partd-1.4.2.tar.gz", hash = "sha256:d022c33afbdc8405c226621b015e8067888173d85f7f5ecebb3cafed9a20f02c"}, ] [package.dependencies] @@ -3423,7 +3406,7 @@ locket = "*" toolz = "*" [package.extras] -complete = ["blosc", "numpy (>=1.9.0)", "pandas (>=0.19.0)", "pyzmq"] +complete = ["blosc", "numpy (>=1.20.0)", "pandas (>=1.3)", "pyzmq"] [[package]] name = "pathspec" @@ -3452,84 +3435,95 @@ ptyprocess = ">=0.5" [[package]] name = "pillow" -version = "10.3.0" +version = "10.4.0" description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.8" files = [ - {file = "pillow-10.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45"}, - {file = "pillow-10.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475"}, - {file = "pillow-10.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf"}, - {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3"}, - {file = "pillow-10.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5"}, - {file = "pillow-10.3.0-cp310-cp310-win32.whl", hash = "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2"}, - {file = "pillow-10.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f"}, - {file = "pillow-10.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b"}, - {file = "pillow-10.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795"}, - {file = "pillow-10.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451"}, - {file = "pillow-10.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd"}, - {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad"}, - {file = "pillow-10.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c"}, - {file = "pillow-10.3.0-cp311-cp311-win32.whl", hash = "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09"}, - {file = "pillow-10.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d"}, - {file = "pillow-10.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f"}, - {file = "pillow-10.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84"}, - {file = "pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462"}, - {file = "pillow-10.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a"}, - {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef"}, - {file = "pillow-10.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3"}, - {file = "pillow-10.3.0-cp312-cp312-win32.whl", hash = "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d"}, - {file = "pillow-10.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b"}, - {file = "pillow-10.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a"}, - {file = "pillow-10.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b"}, - {file = "pillow-10.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d"}, - {file = "pillow-10.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd"}, - {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d"}, - {file = "pillow-10.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3"}, - {file = "pillow-10.3.0-cp38-cp38-win32.whl", hash = "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b"}, - {file = "pillow-10.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999"}, - {file = "pillow-10.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936"}, - {file = "pillow-10.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57"}, - {file = "pillow-10.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8"}, - {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9"}, - {file = "pillow-10.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb"}, - {file = "pillow-10.3.0-cp39-cp39-win32.whl", hash = "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572"}, - {file = "pillow-10.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb"}, - {file = "pillow-10.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3"}, - {file = "pillow-10.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a"}, - {file = "pillow-10.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591"}, - {file = "pillow-10.3.0.tar.gz", hash = "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d"}, + {file = "pillow-10.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e"}, + {file = "pillow-10.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b"}, + {file = "pillow-10.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc"}, + {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e"}, + {file = "pillow-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46"}, + {file = "pillow-10.4.0-cp310-cp310-win32.whl", hash = "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984"}, + {file = "pillow-10.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141"}, + {file = "pillow-10.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1"}, + {file = "pillow-10.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c"}, + {file = "pillow-10.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe"}, + {file = "pillow-10.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319"}, + {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d"}, + {file = "pillow-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696"}, + {file = "pillow-10.4.0-cp311-cp311-win32.whl", hash = "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496"}, + {file = "pillow-10.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91"}, + {file = "pillow-10.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22"}, + {file = "pillow-10.4.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94"}, + {file = "pillow-10.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef"}, + {file = "pillow-10.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a"}, + {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b"}, + {file = "pillow-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9"}, + {file = "pillow-10.4.0-cp312-cp312-win32.whl", hash = "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42"}, + {file = "pillow-10.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a"}, + {file = "pillow-10.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9"}, + {file = "pillow-10.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3"}, + {file = "pillow-10.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0"}, + {file = "pillow-10.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc"}, + {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a"}, + {file = "pillow-10.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309"}, + {file = "pillow-10.4.0-cp313-cp313-win32.whl", hash = "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060"}, + {file = "pillow-10.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea"}, + {file = "pillow-10.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d"}, + {file = "pillow-10.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736"}, + {file = "pillow-10.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b"}, + {file = "pillow-10.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd"}, + {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84"}, + {file = "pillow-10.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0"}, + {file = "pillow-10.4.0-cp38-cp38-win32.whl", hash = "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e"}, + {file = "pillow-10.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab"}, + {file = "pillow-10.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d"}, + {file = "pillow-10.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b"}, + {file = "pillow-10.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c"}, + {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1"}, + {file = "pillow-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df"}, + {file = "pillow-10.4.0-cp39-cp39-win32.whl", hash = "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef"}, + {file = "pillow-10.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5"}, + {file = "pillow-10.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885"}, + {file = "pillow-10.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27"}, + {file = "pillow-10.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3"}, + {file = "pillow-10.4.0.tar.gz", hash = "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=7.3)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] @@ -3538,28 +3532,29 @@ xmp = ["defusedxml"] [[package]] name = "platformdirs" -version = "4.2.0" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +version = "4.2.2" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"}, - {file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"}, + {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, + {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, ] [package.extras] docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] +type = ["mypy (>=1.8)"] [[package]] name = "pluggy" -version = "1.4.0" +version = "1.5.0" description = "plugin and hook calling mechanisms for python" optional = false python-versions = ">=3.8" files = [ - {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"}, - {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"}, + {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, + {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, ] [package.extras] @@ -3568,13 +3563,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pooch" -version = "1.8.1" -description = "\"Pooch manages your Python library's sample data files: it automatically downloads and stores them in a local directory, with support for versioning and corruption checks.\"" +version = "1.8.2" +description = "A friend to fetch your data files" optional = true python-versions = ">=3.7" files = [ - {file = "pooch-1.8.1-py3-none-any.whl", hash = "sha256:6b56611ac320c239faece1ac51a60b25796792599ce5c0b1bb87bf01df55e0a9"}, - {file = "pooch-1.8.1.tar.gz", hash = "sha256:27ef63097dd9a6e4f9d2694f5cfbf2f0a5defa44fccafec08d601e731d746270"}, + {file = "pooch-1.8.2-py3-none-any.whl", hash = "sha256:3529a57096f7198778a5ceefd5ac3ef0e4d06a6ddaf9fc2d609b806f25302c47"}, + {file = "pooch-1.8.2.tar.gz", hash = "sha256:76561f0de68a01da4df6af38e9955c4c9d1a5c90da73f7e40276a5728ec83d10"}, ] [package.dependencies] @@ -3603,13 +3598,13 @@ twisted = ["twisted"] [[package]] name = "prompt-toolkit" -version = "3.0.43" +version = "3.0.47" description = "Library for building powerful interactive command lines in Python" optional = true python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.43-py3-none-any.whl", hash = "sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6"}, - {file = "prompt_toolkit-3.0.43.tar.gz", hash = "sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d"}, + {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"}, + {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"}, ] [package.dependencies] @@ -3617,27 +3612,28 @@ wcwidth = "*" [[package]] name = "psutil" -version = "5.9.8" +version = "6.0.0" description = "Cross-platform lib for process and system monitoring in Python." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" -files = [ - {file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"}, - {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"}, - {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7"}, - {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36"}, - {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d"}, - {file = "psutil-5.9.8-cp27-none-win32.whl", hash = "sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e"}, - {file = "psutil-5.9.8-cp27-none-win_amd64.whl", hash = "sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631"}, - {file = "psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81"}, - {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421"}, - {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4"}, - {file = "psutil-5.9.8-cp36-cp36m-win32.whl", hash = "sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee"}, - {file = "psutil-5.9.8-cp36-cp36m-win_amd64.whl", hash = "sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2"}, - {file = "psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0"}, - {file = "psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf"}, - {file = "psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8"}, - {file = "psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c"}, +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.0.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a021da3e881cd935e64a3d0a20983bda0bb4cf80e4f74fa9bfcb1bc5785360c6"}, + {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:1287c2b95f1c0a364d23bc6f2ea2365a8d4d9b726a3be7294296ff7ba97c17f0"}, + {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a9a3dbfb4de4f18174528d87cc352d1f788b7496991cca33c6996f40c9e3c92c"}, + {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6ec7588fb3ddaec7344a825afe298db83fe01bfaaab39155fa84cf1c0d6b13c3"}, + {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:1e7c870afcb7d91fdea2b37c24aeb08f98b6d67257a5cb0a8bc3ac68d0f1a68c"}, + {file = "psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35"}, + {file = "psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1"}, + {file = "psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0"}, + {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0"}, + {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd"}, + {file = "psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132"}, + {file = "psutil-6.0.0-cp36-cp36m-win32.whl", hash = "sha256:fc8c9510cde0146432bbdb433322861ee8c3efbf8589865c8bf8d21cb30c4d14"}, + {file = "psutil-6.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:34859b8d8f423b86e4385ff3665d3f4d94be3cdf48221fbe476e883514fdb71c"}, + {file = "psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d"}, + {file = "psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3"}, + {file = "psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0"}, + {file = "psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2"}, ] [package.extras] @@ -3670,51 +3666,51 @@ tests = ["pytest"] [[package]] name = "pyarrow" -version = "15.0.2" +version = "16.1.0" description = "Python library for Apache Arrow" optional = true python-versions = ">=3.8" files = [ - {file = "pyarrow-15.0.2-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:88b340f0a1d05b5ccc3d2d986279045655b1fe8e41aba6ca44ea28da0d1455d8"}, - {file = "pyarrow-15.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eaa8f96cecf32da508e6c7f69bb8401f03745c050c1dd42ec2596f2e98deecac"}, - {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23c6753ed4f6adb8461e7c383e418391b8d8453c5d67e17f416c3a5d5709afbd"}, - {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f639c059035011db8c0497e541a8a45d98a58dbe34dc8fadd0ef128f2cee46e5"}, - {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:290e36a59a0993e9a5224ed2fb3e53375770f07379a0ea03ee2fce2e6d30b423"}, - {file = "pyarrow-15.0.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:06c2bb2a98bc792f040bef31ad3e9be6a63d0cb39189227c08a7d955db96816e"}, - {file = "pyarrow-15.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:f7a197f3670606a960ddc12adbe8075cea5f707ad7bf0dffa09637fdbb89f76c"}, - {file = "pyarrow-15.0.2-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:5f8bc839ea36b1f99984c78e06e7a06054693dc2af8920f6fb416b5bca9944e4"}, - {file = "pyarrow-15.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f5e81dfb4e519baa6b4c80410421528c214427e77ca0ea9461eb4097c328fa33"}, - {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a4f240852b302a7af4646c8bfe9950c4691a419847001178662a98915fd7ee7"}, - {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e7d9cfb5a1e648e172428c7a42b744610956f3b70f524aa3a6c02a448ba853e"}, - {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2d4f905209de70c0eb5b2de6763104d5a9a37430f137678edfb9a675bac9cd98"}, - {file = "pyarrow-15.0.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:90adb99e8ce5f36fbecbbc422e7dcbcbed07d985eed6062e459e23f9e71fd197"}, - {file = "pyarrow-15.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:b116e7fd7889294cbd24eb90cd9bdd3850be3738d61297855a71ac3b8124ee38"}, - {file = "pyarrow-15.0.2-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:25335e6f1f07fdaa026a61c758ee7d19ce824a866b27bba744348fa73bb5a440"}, - {file = "pyarrow-15.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:90f19e976d9c3d8e73c80be84ddbe2f830b6304e4c576349d9360e335cd627fc"}, - {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a22366249bf5fd40ddacc4f03cd3160f2d7c247692945afb1899bab8a140ddfb"}, - {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2a335198f886b07e4b5ea16d08ee06557e07db54a8400cc0d03c7f6a22f785f"}, - {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e6d459c0c22f0b9c810a3917a1de3ee704b021a5fb8b3bacf968eece6df098f"}, - {file = "pyarrow-15.0.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:033b7cad32198754d93465dcfb71d0ba7cb7cd5c9afd7052cab7214676eec38b"}, - {file = "pyarrow-15.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:29850d050379d6e8b5a693098f4de7fd6a2bea4365bfd073d7c57c57b95041ee"}, - {file = "pyarrow-15.0.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:7167107d7fb6dcadb375b4b691b7e316f4368f39f6f45405a05535d7ad5e5058"}, - {file = "pyarrow-15.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e85241b44cc3d365ef950432a1b3bd44ac54626f37b2e3a0cc89c20e45dfd8bf"}, - {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:248723e4ed3255fcd73edcecc209744d58a9ca852e4cf3d2577811b6d4b59818"}, - {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ff3bdfe6f1b81ca5b73b70a8d482d37a766433823e0c21e22d1d7dde76ca33f"}, - {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:f3d77463dee7e9f284ef42d341689b459a63ff2e75cee2b9302058d0d98fe142"}, - {file = "pyarrow-15.0.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:8c1faf2482fb89766e79745670cbca04e7018497d85be9242d5350cba21357e1"}, - {file = "pyarrow-15.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:28f3016958a8e45a1069303a4a4f6a7d4910643fc08adb1e2e4a7ff056272ad3"}, - {file = "pyarrow-15.0.2-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:89722cb64286ab3d4daf168386f6968c126057b8c7ec3ef96302e81d8cdb8ae4"}, - {file = "pyarrow-15.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cd0ba387705044b3ac77b1b317165c0498299b08261d8122c96051024f953cd5"}, - {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad2459bf1f22b6a5cdcc27ebfd99307d5526b62d217b984b9f5c974651398832"}, - {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58922e4bfece8b02abf7159f1f53a8f4d9f8e08f2d988109126c17c3bb261f22"}, - {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:adccc81d3dc0478ea0b498807b39a8d41628fa9210729b2f718b78cb997c7c91"}, - {file = "pyarrow-15.0.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:8bd2baa5fe531571847983f36a30ddbf65261ef23e496862ece83bdceb70420d"}, - {file = "pyarrow-15.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6669799a1d4ca9da9c7e06ef48368320f5856f36f9a4dd31a11839dda3f6cc8c"}, - {file = "pyarrow-15.0.2.tar.gz", hash = "sha256:9c9bc803cb3b7bfacc1e96ffbfd923601065d9d3f911179d81e72d99fd74a3d9"}, + {file = "pyarrow-16.1.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:17e23b9a65a70cc733d8b738baa6ad3722298fa0c81d88f63ff94bf25eaa77b9"}, + {file = "pyarrow-16.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4740cc41e2ba5d641071d0ab5e9ef9b5e6e8c7611351a5cb7c1d175eaf43674a"}, + {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98100e0268d04e0eec47b73f20b39c45b4006f3c4233719c3848aa27a03c1aef"}, + {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68f409e7b283c085f2da014f9ef81e885d90dcd733bd648cfba3ef265961848"}, + {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a8914cd176f448e09746037b0c6b3a9d7688cef451ec5735094055116857580c"}, + {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:48be160782c0556156d91adbdd5a4a7e719f8d407cb46ae3bb4eaee09b3111bd"}, + {file = "pyarrow-16.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9cf389d444b0f41d9fe1444b70650fea31e9d52cfcb5f818b7888b91b586efff"}, + {file = "pyarrow-16.1.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:d0ebea336b535b37eee9eee31761813086d33ed06de9ab6fc6aaa0bace7b250c"}, + {file = "pyarrow-16.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e73cfc4a99e796727919c5541c65bb88b973377501e39b9842ea71401ca6c1c"}, + {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf9251264247ecfe93e5f5a0cd43b8ae834f1e61d1abca22da55b20c788417f6"}, + {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddf5aace92d520d3d2a20031d8b0ec27b4395cab9f74e07cc95edf42a5cc0147"}, + {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:25233642583bf658f629eb230b9bb79d9af4d9f9229890b3c878699c82f7d11e"}, + {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a33a64576fddfbec0a44112eaf844c20853647ca833e9a647bfae0582b2ff94b"}, + {file = "pyarrow-16.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:185d121b50836379fe012753cf15c4ba9638bda9645183ab36246923875f8d1b"}, + {file = "pyarrow-16.1.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:2e51ca1d6ed7f2e9d5c3c83decf27b0d17bb207a7dea986e8dc3e24f80ff7d6f"}, + {file = "pyarrow-16.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06ebccb6f8cb7357de85f60d5da50e83507954af617d7b05f48af1621d331c9a"}, + {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b04707f1979815f5e49824ce52d1dceb46e2f12909a48a6a753fe7cafbc44a0c"}, + {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d32000693deff8dc5df444b032b5985a48592c0697cb6e3071a5d59888714e2"}, + {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:8785bb10d5d6fd5e15d718ee1d1f914fe768bf8b4d1e5e9bf253de8a26cb1628"}, + {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:e1369af39587b794873b8a307cc6623a3b1194e69399af0efd05bb202195a5a7"}, + {file = "pyarrow-16.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:febde33305f1498f6df85e8020bca496d0e9ebf2093bab9e0f65e2b4ae2b3444"}, + {file = "pyarrow-16.1.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b5f5705ab977947a43ac83b52ade3b881eb6e95fcc02d76f501d549a210ba77f"}, + {file = "pyarrow-16.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0d27bf89dfc2576f6206e9cd6cf7a107c9c06dc13d53bbc25b0bd4556f19cf5f"}, + {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d07de3ee730647a600037bc1d7b7994067ed64d0eba797ac74b2bc77384f4c2"}, + {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fbef391b63f708e103df99fbaa3acf9f671d77a183a07546ba2f2c297b361e83"}, + {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19741c4dbbbc986d38856ee7ddfdd6a00fc3b0fc2d928795b95410d38bb97d15"}, + {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f2c5fb249caa17b94e2b9278b36a05ce03d3180e6da0c4c3b3ce5b2788f30eed"}, + {file = "pyarrow-16.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:e6b6d3cd35fbb93b70ade1336022cc1147b95ec6af7d36906ca7fe432eb09710"}, + {file = "pyarrow-16.1.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:18da9b76a36a954665ccca8aa6bd9f46c1145f79c0bb8f4f244f5f8e799bca55"}, + {file = "pyarrow-16.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:99f7549779b6e434467d2aa43ab2b7224dd9e41bdde486020bae198978c9e05e"}, + {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f07fdffe4fd5b15f5ec15c8b64584868d063bc22b86b46c9695624ca3505b7b4"}, + {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddfe389a08ea374972bd4065d5f25d14e36b43ebc22fc75f7b951f24378bf0b5"}, + {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3b20bd67c94b3a2ea0a749d2a5712fc845a69cb5d52e78e6449bbd295611f3aa"}, + {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:ba8ac20693c0bb0bf4b238751d4409e62852004a8cf031c73b0e0962b03e45e3"}, + {file = "pyarrow-16.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:31a1851751433d89a986616015841977e0a188662fcffd1a5677453f1df2de0a"}, + {file = "pyarrow-16.1.0.tar.gz", hash = "sha256:15fbb22ea96d11f0b5768504a3f961edab25eaf4197c341720c4a387f6c60315"}, ] [package.dependencies] -numpy = ">=1.16.6,<2" +numpy = ">=1.16.6" [[package]] name = "pycparser" @@ -3749,109 +3745,122 @@ tests = ["flake8", "pytest"] [[package]] name = "pydantic" -version = "2.6.4" +version = "2.8.2" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.6.4-py3-none-any.whl", hash = "sha256:cc46fce86607580867bdc3361ad462bab9c222ef042d3da86f2fb333e1d916c5"}, - {file = "pydantic-2.6.4.tar.gz", hash = "sha256:b1704e0847db01817624a6b86766967f552dd9dbf3afba4004409f908dcc84e6"}, + {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"}, + {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"}, ] [package.dependencies] annotated-types = ">=0.4.0" -pydantic-core = "2.16.3" -typing-extensions = ">=4.6.1" +pydantic-core = "2.20.1" +typing-extensions = [ + {version = ">=4.6.1", markers = "python_version < \"3.13\""}, + {version = ">=4.12.2", markers = "python_version >= \"3.13\""}, +] [package.extras] email = ["email-validator (>=2.0.0)"] [[package]] name = "pydantic-core" -version = "2.16.3" -description = "" +version = "2.20.1" +description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.16.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:75b81e678d1c1ede0785c7f46690621e4c6e63ccd9192af1f0bd9d504bbb6bf4"}, - {file = "pydantic_core-2.16.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9c865a7ee6f93783bd5d781af5a4c43dadc37053a5b42f7d18dc019f8c9d2bd1"}, - {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:162e498303d2b1c036b957a1278fa0899d02b2842f1ff901b6395104c5554a45"}, - {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f583bd01bbfbff4eaee0868e6fc607efdfcc2b03c1c766b06a707abbc856187"}, - {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b926dd38db1519ed3043a4de50214e0d600d404099c3392f098a7f9d75029ff8"}, - {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:716b542728d4c742353448765aa7cdaa519a7b82f9564130e2b3f6766018c9ec"}, - {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc4ad7f7ee1a13d9cb49d8198cd7d7e3aa93e425f371a68235f784e99741561f"}, - {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bd87f48924f360e5d1c5f770d6155ce0e7d83f7b4e10c2f9ec001c73cf475c99"}, - {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0df446663464884297c793874573549229f9eca73b59360878f382a0fc085979"}, - {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4df8a199d9f6afc5ae9a65f8f95ee52cae389a8c6b20163762bde0426275b7db"}, - {file = "pydantic_core-2.16.3-cp310-none-win32.whl", hash = "sha256:456855f57b413f077dff513a5a28ed838dbbb15082ba00f80750377eed23d132"}, - {file = "pydantic_core-2.16.3-cp310-none-win_amd64.whl", hash = "sha256:732da3243e1b8d3eab8c6ae23ae6a58548849d2e4a4e03a1924c8ddf71a387cb"}, - {file = "pydantic_core-2.16.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:519ae0312616026bf4cedc0fe459e982734f3ca82ee8c7246c19b650b60a5ee4"}, - {file = "pydantic_core-2.16.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b3992a322a5617ded0a9f23fd06dbc1e4bd7cf39bc4ccf344b10f80af58beacd"}, - {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d62da299c6ecb04df729e4b5c52dc0d53f4f8430b4492b93aa8de1f541c4aac"}, - {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2acca2be4bb2f2147ada8cac612f8a98fc09f41c89f87add7256ad27332c2fda"}, - {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1b662180108c55dfbf1280d865b2d116633d436cfc0bba82323554873967b340"}, - {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7c6ed0dc9d8e65f24f5824291550139fe6f37fac03788d4580da0d33bc00c97"}, - {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6b1bb0827f56654b4437955555dc3aeeebeddc47c2d7ed575477f082622c49e"}, - {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e56f8186d6210ac7ece503193ec84104da7ceb98f68ce18c07282fcc2452e76f"}, - {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:936e5db01dd49476fa8f4383c259b8b1303d5dd5fb34c97de194560698cc2c5e"}, - {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33809aebac276089b78db106ee692bdc9044710e26f24a9a2eaa35a0f9fa70ba"}, - {file = "pydantic_core-2.16.3-cp311-none-win32.whl", hash = "sha256:ded1c35f15c9dea16ead9bffcde9bb5c7c031bff076355dc58dcb1cb436c4721"}, - {file = "pydantic_core-2.16.3-cp311-none-win_amd64.whl", hash = "sha256:d89ca19cdd0dd5f31606a9329e309d4fcbb3df860960acec32630297d61820df"}, - {file = "pydantic_core-2.16.3-cp311-none-win_arm64.whl", hash = "sha256:6162f8d2dc27ba21027f261e4fa26f8bcb3cf9784b7f9499466a311ac284b5b9"}, - {file = "pydantic_core-2.16.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:0f56ae86b60ea987ae8bcd6654a887238fd53d1384f9b222ac457070b7ac4cff"}, - {file = "pydantic_core-2.16.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9bd22a2a639e26171068f8ebb5400ce2c1bc7d17959f60a3b753ae13c632975"}, - {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4204e773b4b408062960e65468d5346bdfe139247ee5f1ca2a378983e11388a2"}, - {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f651dd19363c632f4abe3480a7c87a9773be27cfe1341aef06e8759599454120"}, - {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf09e615a0bf98d406657e0008e4a8701b11481840be7d31755dc9f97c44053"}, - {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8e47755d8152c1ab5b55928ab422a76e2e7b22b5ed8e90a7d584268dd49e9c6b"}, - {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:500960cb3a0543a724a81ba859da816e8cf01b0e6aaeedf2c3775d12ee49cade"}, - {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cf6204fe865da605285c34cf1172879d0314ff267b1c35ff59de7154f35fdc2e"}, - {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d33dd21f572545649f90c38c227cc8631268ba25c460b5569abebdd0ec5974ca"}, - {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49d5d58abd4b83fb8ce763be7794d09b2f50f10aa65c0f0c1696c677edeb7cbf"}, - {file = "pydantic_core-2.16.3-cp312-none-win32.whl", hash = "sha256:f53aace168a2a10582e570b7736cc5bef12cae9cf21775e3eafac597e8551fbe"}, - {file = "pydantic_core-2.16.3-cp312-none-win_amd64.whl", hash = "sha256:0d32576b1de5a30d9a97f300cc6a3f4694c428d956adbc7e6e2f9cad279e45ed"}, - {file = "pydantic_core-2.16.3-cp312-none-win_arm64.whl", hash = "sha256:ec08be75bb268473677edb83ba71e7e74b43c008e4a7b1907c6d57e940bf34b6"}, - {file = "pydantic_core-2.16.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:b1f6f5938d63c6139860f044e2538baeee6f0b251a1816e7adb6cbce106a1f01"}, - {file = "pydantic_core-2.16.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2a1ef6a36fdbf71538142ed604ad19b82f67b05749512e47f247a6ddd06afdc7"}, - {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704d35ecc7e9c31d48926150afada60401c55efa3b46cd1ded5a01bdffaf1d48"}, - {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d937653a696465677ed583124b94a4b2d79f5e30b2c46115a68e482c6a591c8a"}, - {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9803edf8e29bd825f43481f19c37f50d2b01899448273b3a7758441b512acf8"}, - {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:72282ad4892a9fb2da25defeac8c2e84352c108705c972db82ab121d15f14e6d"}, - {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f752826b5b8361193df55afcdf8ca6a57d0232653494ba473630a83ba50d8c9"}, - {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4384a8f68ddb31a0b0c3deae88765f5868a1b9148939c3f4121233314ad5532c"}, - {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4b2bf78342c40b3dc830880106f54328928ff03e357935ad26c7128bbd66ce8"}, - {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:13dcc4802961b5f843a9385fc821a0b0135e8c07fc3d9949fd49627c1a5e6ae5"}, - {file = "pydantic_core-2.16.3-cp38-none-win32.whl", hash = "sha256:e3e70c94a0c3841e6aa831edab1619ad5c511199be94d0c11ba75fe06efe107a"}, - {file = "pydantic_core-2.16.3-cp38-none-win_amd64.whl", hash = "sha256:ecdf6bf5f578615f2e985a5e1f6572e23aa632c4bd1dc67f8f406d445ac115ed"}, - {file = "pydantic_core-2.16.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:bda1ee3e08252b8d41fa5537413ffdddd58fa73107171a126d3b9ff001b9b820"}, - {file = "pydantic_core-2.16.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:21b888c973e4f26b7a96491c0965a8a312e13be108022ee510248fe379a5fa23"}, - {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be0ec334369316fa73448cc8c982c01e5d2a81c95969d58b8f6e272884df0074"}, - {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5b6079cc452a7c53dd378c6f881ac528246b3ac9aae0f8eef98498a75657805"}, - {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ee8d5f878dccb6d499ba4d30d757111847b6849ae07acdd1205fffa1fc1253c"}, - {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7233d65d9d651242a68801159763d09e9ec96e8a158dbf118dc090cd77a104c9"}, - {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6119dc90483a5cb50a1306adb8d52c66e447da88ea44f323e0ae1a5fcb14256"}, - {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:578114bc803a4c1ff9946d977c221e4376620a46cf78da267d946397dc9514a8"}, - {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d8f99b147ff3fcf6b3cc60cb0c39ea443884d5559a30b1481e92495f2310ff2b"}, - {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4ac6b4ce1e7283d715c4b729d8f9dab9627586dafce81d9eaa009dd7f25dd972"}, - {file = "pydantic_core-2.16.3-cp39-none-win32.whl", hash = "sha256:e7774b570e61cb998490c5235740d475413a1f6de823169b4cf94e2fe9e9f6b2"}, - {file = "pydantic_core-2.16.3-cp39-none-win_amd64.whl", hash = "sha256:9091632a25b8b87b9a605ec0e61f241c456e9248bfdcf7abdf344fdb169c81cf"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:36fa178aacbc277bc6b62a2c3da95226520da4f4e9e206fdf076484363895d2c"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:dcca5d2bf65c6fb591fff92da03f94cd4f315972f97c21975398bd4bd046854a"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a72fb9963cba4cd5793854fd12f4cfee731e86df140f59ff52a49b3552db241"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b60cc1a081f80a2105a59385b92d82278b15d80ebb3adb200542ae165cd7d183"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cbcc558401de90a746d02ef330c528f2e668c83350f045833543cd57ecead1ad"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fee427241c2d9fb7192b658190f9f5fd6dfe41e02f3c1489d2ec1e6a5ab1e04a"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f4cb85f693044e0f71f394ff76c98ddc1bc0953e48c061725e540396d5c8a2e1"}, - {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b29eeb887aa931c2fcef5aa515d9d176d25006794610c264ddc114c053bf96fe"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a425479ee40ff021f8216c9d07a6a3b54b31c8267c6e17aa88b70d7ebd0e5e5b"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5c5cbc703168d1b7a838668998308018a2718c2130595e8e190220238addc96f"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b6add4c0b39a513d323d3b93bc173dac663c27b99860dd5bf491b240d26137"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f76ee558751746d6a38f89d60b6228fa174e5172d143886af0f85aa306fd89"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:00ee1c97b5364b84cb0bd82e9bbf645d5e2871fb8c58059d158412fee2d33d8a"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:287073c66748f624be4cef893ef9174e3eb88fe0b8a78dc22e88eca4bc357ca6"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed25e1835c00a332cb10c683cd39da96a719ab1dfc08427d476bce41b92531fc"}, - {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:86b3d0033580bd6bbe07590152007275bd7af95f98eaa5bd36f3da219dcd93da"}, - {file = "pydantic_core-2.16.3.tar.gz", hash = "sha256:1cac689f80a3abab2d3c0048b29eea5751114054f032a941a32de4c852c59cad"}, + {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"}, + {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"}, + {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"}, + {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"}, + {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"}, + {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"}, + {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"}, + {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"}, + {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"}, + {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"}, + {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"}, + {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"}, + {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"}, + {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"}, + {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"}, + {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"}, + {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"}, + {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"}, + {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"}, + {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"}, + {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"}, + {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"}, + {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"}, + {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"}, + {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"}, + {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"}, + {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"}, + {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"}, + {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"}, + {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"}, + {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"}, + {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"}, + {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"}, + {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"}, + {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"}, ] [package.dependencies] @@ -3917,73 +3926,92 @@ wx = ["numpy", "wxPython (>=4)"] [[package]] name = "pygments" -version = "2.17.2" +version = "2.18.0" description = "Pygments is a syntax highlighting package written in Python." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, - {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, + {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, + {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, ] [package.extras] -plugins = ["importlib-metadata"] windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pykdtree" -version = "1.3.11" +version = "1.3.12" description = "Fast kd-tree implementation with OpenMP-enabled queries" optional = false python-versions = ">=3.9" files = [ - {file = "pykdtree-1.3.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:69018aa08c47604a893e745357b705a9426409d4daefc7167458c21dd9e51e1f"}, - {file = "pykdtree-1.3.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c00d3623494debeabe8622cd3fe3e45f1a740df6b53752c09f75fee2a071e5ec"}, - {file = "pykdtree-1.3.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ebe5ffc81c644201bfe4654fb3947403e7cfefb9e422f86c4101c71f8b12e34"}, - {file = "pykdtree-1.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea145ae0a33560282c82e21117e4bd995e6b8434d6a86465be6d7d497b41f474"}, - {file = "pykdtree-1.3.11-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:cf18379fa179b4583e1e1caa80f2d4be3496d1af3ef4f379d47b49759f404b52"}, - {file = "pykdtree-1.3.11-cp310-cp310-win_amd64.whl", hash = "sha256:5642f595d8ef68a3a1845e2ac3e858e6cf375e6d746e8d013f9ff6de80772161"}, - {file = "pykdtree-1.3.11-cp310-cp310-win_arm64.whl", hash = "sha256:97d902acf0cdb0134e1ce063f7d5b3a8698bce154d484df91908ab7b0bd29a3d"}, - {file = "pykdtree-1.3.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9226b7f1448a37e0215e30110e9d4373c173ce5f4d48f191b7fbd959c40b3f2e"}, - {file = "pykdtree-1.3.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6c8d30672506cf88ec82fd0a267ab433603e824d24b0dc903eea38818ec4c21a"}, - {file = "pykdtree-1.3.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df4ea9f2a6b41a3044f5196051e771da278a0506ec74b90b7b3e668e8705e9c2"}, - {file = "pykdtree-1.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee7efe507fe829fa01e001108ff1021f5ae2b2694cfc710c589c2e5ce7b78b80"}, - {file = "pykdtree-1.3.11-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:efd53b31134e2897eb3a127d3fced087da009d8f73eea3f46043d5cd452cfbc6"}, - {file = "pykdtree-1.3.11-cp311-cp311-win_amd64.whl", hash = "sha256:ea760210105cf28c92cdc277043f70cb0f1b7577de61bbcf5326224774c15cf5"}, - {file = "pykdtree-1.3.11-cp311-cp311-win_arm64.whl", hash = "sha256:e8be81b9d246fb1e1dfafb2e65273a9ce806f57bf115d86f6d1200c85532768f"}, - {file = "pykdtree-1.3.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ef49d3f61187720dbbdc2bf14cf3bb120cc8c4ca6e4a08e7f922ebe8e7cd3268"}, - {file = "pykdtree-1.3.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bcda95a6ea6f7258ad4469de23dff7185e7209eb341ddd02d5be15e78f5991de"}, - {file = "pykdtree-1.3.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56043a31ddb5b2a781b85636fcf41d1437d15698ad2833b773243f46839b3ead"}, - {file = "pykdtree-1.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21dfcb44e4dcbb01348a010095024b55719e41a824a21f876a62193b27453b49"}, - {file = "pykdtree-1.3.11-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:22f892293462bb6ae90eb65cc44ff370cd824d3fafc3010286344c8f43bfa2ab"}, - {file = "pykdtree-1.3.11-cp312-cp312-win_amd64.whl", hash = "sha256:70399c6d3fb9071b5b18107e73986f0582b6f9fc3e8c8ecca73c61bed6f0f756"}, - {file = "pykdtree-1.3.11-cp312-cp312-win_arm64.whl", hash = "sha256:ef3ac55d8e9e7f525d76704b2aadfe3bdd8db9e0ac84043558d2d9686a492d9a"}, - {file = "pykdtree-1.3.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f19533f636407cf87dc40d7c0c01904700dfb25e10461a80721b3619ea94c071"}, - {file = "pykdtree-1.3.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4497b842270343fab67215926e2516f34a58cfd15b189c5c93b0542dc6c6a971"}, - {file = "pykdtree-1.3.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8273ddef4fe1cce26072148f8c4a0c6f73561466fa26e596f5826515e437243"}, - {file = "pykdtree-1.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39f1cb92fdd60834daaad7c9d2757a4afef99089f0c153fcf92adfa9cf54a61d"}, - {file = "pykdtree-1.3.11-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e34c3ab17a4a3a3b842941a0b5e57b524eb3f084a1aec30b95350348f1aecd7"}, - {file = "pykdtree-1.3.11-cp39-cp39-win_amd64.whl", hash = "sha256:709f69876598c33e884a86020ce4f2947668df65ba7744575c413645b9982eb3"}, - {file = "pykdtree-1.3.11-cp39-cp39-win_arm64.whl", hash = "sha256:f083491f94635a22ab05cec2d88cb3855ea3732126ccc01fa3caa243e000dbcd"}, - {file = "pykdtree-1.3.11.tar.gz", hash = "sha256:6c123c7bae5213af223c529a8b4161c07eb854a6fe4038b36952bada2131ebcb"}, + {file = "pykdtree-1.3.12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a072b845cc2983eb79fbfa9baeda4f4b3c3e6db0a54e1c89434d353246e66104"}, + {file = "pykdtree-1.3.12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76d7f9ba21864701ac1206038abaf7613f35e96312731df770327e763ebb8d3a"}, + {file = "pykdtree-1.3.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:431194955fd4f2be298a778643e36392bda9c43101dcb719146a050f3455d8cc"}, + {file = "pykdtree-1.3.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7437e854b976c51fb1781392d148d6d9244945e1504e49bf490370464848260"}, + {file = "pykdtree-1.3.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:046efd4607208d6edeedee3d67754c60118086c6ca6a83c33ee01ec70749ea51"}, + {file = "pykdtree-1.3.12-cp310-cp310-win_amd64.whl", hash = "sha256:e3ef09d033e4af683b08cde01a4f3c96d4a96329aa6e3135095325befac28007"}, + {file = "pykdtree-1.3.12-cp310-cp310-win_arm64.whl", hash = "sha256:3ebab60fa3dab12791fd04987aef53315b8acae196f45e6bad58a2086c1b3436"}, + {file = "pykdtree-1.3.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:83263e154871934423850d3b6eaaba6eb38463806d76313cbfa8798ecd7ca0a3"}, + {file = "pykdtree-1.3.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b8079f357d2358d4c20b2cb779d36add251626ebab1aaf2e03ce4e70355eff49"}, + {file = "pykdtree-1.3.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7771f1151e97080c3efb38e444ed6912dede203ca7e1d415f9b43f880cf92bcb"}, + {file = "pykdtree-1.3.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7882706b092b501dd4e74d7658d9ab06d1eac2f88e819877a52cd7441b21a806"}, + {file = "pykdtree-1.3.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f64e2dcc603c436ec7fd00c975f38537930cf1097e6ae4d9a80e1e900de528"}, + {file = "pykdtree-1.3.12-cp311-cp311-win_amd64.whl", hash = "sha256:1b9473cc5c62f1a7e61f3cabe5d4098b9ec61a63040e1bbd74e5d4482c3603d9"}, + {file = "pykdtree-1.3.12-cp311-cp311-win_arm64.whl", hash = "sha256:199585ff5a41c5f383bef3a68cff5c651b342045a8c7409576e3b17fd8a57f4e"}, + {file = "pykdtree-1.3.12-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1d20a8f54d29d255fad4bac26e80231067d9331bb9aacc2ee6743e4325b346fa"}, + {file = "pykdtree-1.3.12-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f985d1b742452ff597fe9c9a0ea2c89cd85b298bcf3f6a565fa0d7ce66eb313f"}, + {file = "pykdtree-1.3.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41020443270ef8aee5caf513d8a060126743a0aee19d33d35a6684fa2d37c13a"}, + {file = "pykdtree-1.3.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88f52541f094ada031cee6ab44864d25d41ede97dbdb78cf55f5e9919e366841"}, + {file = "pykdtree-1.3.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3fd826f886bff82b4c25cdc61df5142e309a45421388de2922bd315995d7fe8f"}, + {file = "pykdtree-1.3.12-cp312-cp312-win_amd64.whl", hash = "sha256:c79d6db009714c1b2092366c78c5ffc645cfe5b7103ed4f94eabba3833b70088"}, + {file = "pykdtree-1.3.12-cp312-cp312-win_arm64.whl", hash = "sha256:67a87b1a4f9ea484a3269cb7f468e3993bc03bc984ce63215302280061e5b691"}, + {file = "pykdtree-1.3.12-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8c72357382c37e8d9af7e6b0257340a4c37bc20c9034559af11527034ba3e7b2"}, + {file = "pykdtree-1.3.12-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9ba445012613a5284bfb57e119019138b15b363d39246a618d2e9994505baa2e"}, + {file = "pykdtree-1.3.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dfe19bab0e7bf92e69657d5c03b3fabc89c2afed64ae394700d09e00b86b07f"}, + {file = "pykdtree-1.3.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba7d8dbd5976a029b59d5c9893fe0448f9c452ca3b08aaf9be4d8262fbeab42f"}, + {file = "pykdtree-1.3.12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1e171cc813c54ff4cffce844230575334c7298aea0c78c1b33a533995608fce5"}, + {file = "pykdtree-1.3.12-cp39-cp39-win_amd64.whl", hash = "sha256:b6cc13f4cc1a5ec967d47db088b6423a629127c43184e5857c631ccc64a8c590"}, + {file = "pykdtree-1.3.12-cp39-cp39-win_arm64.whl", hash = "sha256:2e23bdaff080affc415b614f2cb230616fc4c4095b56bbb614c56b67f11f3ed1"}, + {file = "pykdtree-1.3.12.tar.gz", hash = "sha256:cc20b2a67c64056485a314d2c2b6dba354af7ee1c8fb8dae1be6f2936a374341"}, ] [package.dependencies] numpy = "*" +[[package]] +name = "pymap3d" +version = "3.1.0" +description = "pure Python (no prereqs) coordinate conversions, following convention of several popular Matlab routines." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pymap3d-3.1.0-py3-none-any.whl", hash = "sha256:8231b7dde0289ae8e2681261a79c80a990dba0a4bdfc443717dd02d1fd37c522"}, + {file = "pymap3d-3.1.0.tar.gz", hash = "sha256:c1a83fc2732234b6763f0372ad2628dd24b13a1e6a64e9f7825be4112463f369"}, +] + +[package.extras] +core = ["numpy (>=1.10.0)", "python-dateutil"] +coverage = ["pytest-cov"] +format = ["black[jupyter]", "isort"] +full = ["astropy", "xarray"] +lint = ["flake8", "flake8-blind-except", "flake8-bugbear", "flake8-builtins", "mypy", "types-python-dateutil", "types-requests"] +proj = ["pyproj"] +tests = ["pytest", "pytest-timeout"] + [[package]] name = "pymdown-extensions" -version = "10.7.1" +version = "10.8.1" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.7.1-py3-none-any.whl", hash = "sha256:f5cc7000d7ff0d1ce9395d216017fa4df3dde800afb1fb72d1c7d3fd35e710f4"}, - {file = "pymdown_extensions-10.7.1.tar.gz", hash = "sha256:c70e146bdd83c744ffc766b4671999796aba18842b268510a329f7f64700d584"}, + {file = "pymdown_extensions-10.8.1-py3-none-any.whl", hash = "sha256:f938326115884f48c6059c67377c46cf631c733ef3629b6eed1349989d1b30cb"}, + {file = "pymdown_extensions-10.8.1.tar.gz", hash = "sha256:3ab1db5c9e21728dabf75192d71471f8e50f216627e9a1fa9535ecb0231b9940"}, ] [package.dependencies] -markdown = ">=3.5" +markdown = ">=3.6" pyyaml = "*" [package.extras] @@ -3991,36 +4019,37 @@ extra = ["pygments (>=2.12)"] [[package]] name = "pyogrio" -version = "0.7.2" +version = "0.9.0" description = "Vectorized spatial vector file format I/O using GDAL/OGR" optional = false python-versions = ">=3.8" files = [ - {file = "pyogrio-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba386a02c9b5934c568b40acc95c9863f92075f6990167635e51368976569c66"}, - {file = "pyogrio-0.7.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:860b04ddf23b8c253ceb3621e4b0e0dc0f293eab66cb14f799a5c9f9fe0a882c"}, - {file = "pyogrio-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caaf61d473ac207f170082e602ea57c096e8dd4c4be51de58fba96f1a5944096"}, - {file = "pyogrio-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bee556ca305b7e8c68aada259d925c612131205074fb2373badafacbef610b77"}, - {file = "pyogrio-0.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:7e2c856961efdc6cb3809b97b49016cbbcee17c8a1e85fc4000b5fcb3cfcb9b1"}, - {file = "pyogrio-0.7.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5654e7c33442cbd98e7a56f705e160415d7503b2420d724d4f81b8cc88360b3e"}, - {file = "pyogrio-0.7.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b9a8a4854c7af2c76683ce5666ee765b207901b362576465219d75deb6159821"}, - {file = "pyogrio-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a23136d1bffa9d811263807b850c6e9854201710276f09de650131e89f2486aa"}, - {file = "pyogrio-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:234b0d1d22e9680229b0618c25077a0cb2428cbbc2939b4bb9bdd8ee77e0f3e0"}, - {file = "pyogrio-0.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:33ae5aafcf3a557e107a33f5b3e878750d2e467b8cc911dc4bf261c1a602b534"}, - {file = "pyogrio-0.7.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:73577fecebeecf0d06e78c1a4bddd460a4d57c6d918affab7594c0bc72f5fa14"}, - {file = "pyogrio-0.7.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f2ff58184020da39540a2f5d4a5412005a01b0c4cd03c7b8294bc670d1f3fe50"}, - {file = "pyogrio-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31112bb0b6a4a3f80ec3252d7eeb7be81045860d49fd76e297c073759450652b"}, - {file = "pyogrio-0.7.2-cp312-cp312-win_amd64.whl", hash = "sha256:1b7197c72f034ac7187da2a8d50a063a5f1256aab732b154f11f887a7652dc3d"}, - {file = "pyogrio-0.7.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7e39bb6bfdd74e63ae96acced7297bbe8a157f85c0107f1cbb395d2a937f3a38"}, - {file = "pyogrio-0.7.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:436de39f57e8f8cc41682981518b9490d64d3a1c48bf78d415e5747c296790dc"}, - {file = "pyogrio-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5feeb7a0da7ee82580f6aa6508a80602413675b99c60c822929e0e8b925e0517"}, - {file = "pyogrio-0.7.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:429dcff4c36f0e0a15ba4a20f2d4478b9c6d095e70c4bcc007a536ea420a1a93"}, - {file = "pyogrio-0.7.2-cp38-cp38-win_amd64.whl", hash = "sha256:f219c1edb010d0248891a3d27d15faf17c91cfe69daef84d7471e22e4ed4fcff"}, - {file = "pyogrio-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cc6db2e5dc50dfe23554d10502920eafa0648c365725e552aaa523432a9bf35"}, - {file = "pyogrio-0.7.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:be46be43c4148a3ad09da38670411485ec544a51cbd6b7d004a0eca5035023fc"}, - {file = "pyogrio-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3001efd5dfee36459d0cfdafbe91ed88fc5ae734353d771cdb75546ef1427735"}, - {file = "pyogrio-0.7.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:892fdab0e1c44c0125254d92928081c14f93ac553f371addc2c9a1d4bde41cad"}, - {file = "pyogrio-0.7.2-cp39-cp39-win_amd64.whl", hash = "sha256:d5fc2304aeb927564f77caaa4da9a47e2d77a8ceb1c624ea84c505140886b221"}, - {file = "pyogrio-0.7.2.tar.gz", hash = "sha256:33afb7d211c6434613f24174722347a5cb11d22a212f28c817f67c89d30d0c0d"}, + {file = "pyogrio-0.9.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:1a495ca4fb77c69595747dd688f8f17bb7d2ea9cd86603aa71c7fc98cc8b4174"}, + {file = "pyogrio-0.9.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:6dc94a67163218581c7df275223488ac9b31dc582ccd756da607c3338908566c"}, + {file = "pyogrio-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e38c3c6d37cf2cc969407e4d051dcb507cfd948eb26c7b0840c4f7d7d4a71bd4"}, + {file = "pyogrio-0.9.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:f47c9b6818cc0f420015b672d5dcc488530a5ee63e5ba35a184957b21ea3922a"}, + {file = "pyogrio-0.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb04bd80964428491951766452f0071b0bc37c7d38c45ef02502dbd83e5d74a0"}, + {file = "pyogrio-0.9.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:f5d80eb846be4fc4e642cbedc1ed0c143e8d241653382ecc76a7620bbd2a5c3a"}, + {file = "pyogrio-0.9.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:2f2ec57ab74785db9c2bf47c0a6731e5175595a13f8253f06fa84136adb310a9"}, + {file = "pyogrio-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a289584da6df7ca318947301fe0ba9177e7f863f63110e087c80ac5f3658de8"}, + {file = "pyogrio-0.9.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:13642608a1cd67797ae8b5d792b0518d8ef3eb76506c8232ab5eaa1ea1159dff"}, + {file = "pyogrio-0.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:9440466c0211ac81f3417f274da5903f15546b486f76b2f290e74a56aaf0e737"}, + {file = "pyogrio-0.9.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2e98913fa183f7597c609e774820a149e9329fd2a0f8d33978252fbd00ae87e6"}, + {file = "pyogrio-0.9.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:f8bf193269ea9d347ac3ddada960a59f1ab2e4a5c009be95dc70e6505346b2fc"}, + {file = "pyogrio-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f964002d445521ad5b8e732a6b5ef0e2d2be7fe566768e5075c1d71398da64a"}, + {file = "pyogrio-0.9.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:083351b258b3e08b6c6085dac560bd321b68de5cb4a66229095da68d5f3d696b"}, + {file = "pyogrio-0.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:796e4f6a4e769b2eb6fea9a10546ea4bdee16182d1e29802b4d6349363c3c1d7"}, + {file = "pyogrio-0.9.0-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:7fcafed24371fe6e23bcf5abebbb29269f8d79915f1dd818ac85453657ea714a"}, + {file = "pyogrio-0.9.0-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:30cbeeaedb9bced7012487e7438919aa0c7dfba18ac3d4315182b46eb3139b9d"}, + {file = "pyogrio-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4da0b9deb380bd9a200fee13182c4f95b02b4c554c923e2e0032f32aaf1439ed"}, + {file = "pyogrio-0.9.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:4e0f90a6c3771ee1f1fea857778b4b6a1b64000d851b819f435f9091b3c38c60"}, + {file = "pyogrio-0.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:959022f3ad04053f8072dc9a2ad110c46edd9e4f92352061ba835fc91df3ca96"}, + {file = "pyogrio-0.9.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:2829615cf58b1b24a9f96fea42abedaa1a800dd351c67374cc2f6341138608f3"}, + {file = "pyogrio-0.9.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:17420febc17651876d5140b54b24749aa751d482b5f9ef6267b8053e6e962876"}, + {file = "pyogrio-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a2fcaa269031dbbc8ebd91243c6452c5d267d6df939c008ab7533413c9cf92d"}, + {file = "pyogrio-0.9.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:019731a856a9abfe909e86f50eb13f8362f6742337caf757c54b7c8acfe75b89"}, + {file = "pyogrio-0.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:d668cb10f2bf6ccd7c402f91e8b06290722dd09dbe265ae95b2c13db29ebeba0"}, + {file = "pyogrio-0.9.0.tar.gz", hash = "sha256:6a6fa2e8cf95b3d4a7c0fac48bce6e5037579e28d3eb33b53349d6e11f15e5a8"}, ] [package.dependencies] @@ -4089,30 +4118,36 @@ certifi = "*" [[package]] name = "pyresample" -version = "1.28.2" +version = "1.28.4" description = "Geospatial image resampling in Python" optional = false python-versions = ">=3.9" files = [ - {file = "pyresample-1.28.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:26598c3f7d09bf134b4fdf37b852e08ddcc4d2e70ef01405d10ead16f712e5a4"}, - {file = "pyresample-1.28.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2c5d9e0d500c9d9a5841b12786fb6468a279f242ce339ea7d3518ca47364d7d"}, - {file = "pyresample-1.28.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b46558e7a75733f6e0d743a38977ff916b156628e624ed8a825a0dd4836e0dbd"}, - {file = "pyresample-1.28.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:130e7cd7c9dfcea86e2fc1c7822ed8ef9e4169a51c93c86ec625063bcf37c2c1"}, - {file = "pyresample-1.28.2-cp310-cp310-win_amd64.whl", hash = "sha256:5499eba739f7c3f75413dfd68d9b01b76437bb69bfa0916bce818bf3967ec055"}, - {file = "pyresample-1.28.2-cp310-cp310-win_arm64.whl", hash = "sha256:3ebfef22faab719872f701e7c80fef2acc30bab5bef3a8aa51435343ca8cb75b"}, - {file = "pyresample-1.28.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38526315a47f41a7e01c77bf52872241b7e49b67db7d5ce48d64addf0064b13f"}, - {file = "pyresample-1.28.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d1c3460b99c46f5d83a7f1fbcf95b3fd28a7e52893ea42952d868a195b90e348"}, - {file = "pyresample-1.28.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7563da90a92d898240d7aef0fc7e86d0ef01a12eb6a850b597a823c444335eb"}, - {file = "pyresample-1.28.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23162aafea5283886a2f6d2b1eae7d9555b9e8f0f6d706b403b23ca6aea60c3f"}, - {file = "pyresample-1.28.2-cp311-cp311-win_amd64.whl", hash = "sha256:f50a554e751ad67d1b97b678899be57fe7091949eb83044a511c12081a88eb4c"}, - {file = "pyresample-1.28.2-cp311-cp311-win_arm64.whl", hash = "sha256:a0eaf00430cdf990319748b30d6fca582e8f5454201808e711d90be4026e9084"}, - {file = "pyresample-1.28.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f53fe0b084488e5704ae2d7bc89be219a282fbfb9008e12328f1dfeb1f921dd"}, - {file = "pyresample-1.28.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:38c34fab466317cd5757d0ad5ff149886f2adaf6cc11af4c80f99bc01d9b9d91"}, - {file = "pyresample-1.28.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:499113034b3dc88f69592ced531272528ddede4563c7435e23da5a12d3a4e712"}, - {file = "pyresample-1.28.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95828deaf6a67aa592ab6315a2a64cdef15139dcac1ae18602f4bd838c9875d4"}, - {file = "pyresample-1.28.2-cp39-cp39-win_amd64.whl", hash = "sha256:9f63cc9418462c7de43c381b72adae5088203447340bdf8e69cac1f6e8ecd9eb"}, - {file = "pyresample-1.28.2-cp39-cp39-win_arm64.whl", hash = "sha256:d22a13af4a23ece0baf030529fb411a142d08737e01e683989c511a686824611"}, - {file = "pyresample-1.28.2.tar.gz", hash = "sha256:3f48da510148d9c649dd689ff43ea4a57eb3eae90428b737312fc0502beb3532"}, + {file = "pyresample-1.28.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1184fd5553e734a3e9e64c3964c040edd9d7e43ab5f53f7bffc6de7cd8b411c8"}, + {file = "pyresample-1.28.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cb49be2ebeab6a200cb81f03ab0e9f65af7f9e5a68dd2c5efd2113dda9d5a6cf"}, + {file = "pyresample-1.28.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c2b19961dae1ccb8ac7296e6fefe40590181ac8f97fd1089b223b3cda04bab07"}, + {file = "pyresample-1.28.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:152845d0c105f5617ffda96ed993fa91e28391d58bdc786b1b293cc0cf9332d6"}, + {file = "pyresample-1.28.4-cp310-cp310-win_amd64.whl", hash = "sha256:6e9fd55d7098757e88d6ea298541c1cdf6acebfe14171547787031e5ed126984"}, + {file = "pyresample-1.28.4-cp310-cp310-win_arm64.whl", hash = "sha256:534d25f1d5c69113713bb6e4cb0b8f99a325431d185025c1cd6dc8dac9722c1f"}, + {file = "pyresample-1.28.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:948b82102a097159fd8e664aaa315d316db4da82a340fc78cf518ddf18f9e161"}, + {file = "pyresample-1.28.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3aa34ab3532a968adc14ec9d0d909204cc28f475cbc6a24fda7dc97362cd739"}, + {file = "pyresample-1.28.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:891fa471c6844bc78926b23059503abf1d7848620223043a8d461b804fae34b6"}, + {file = "pyresample-1.28.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627874822332428483cebe656104b9a0b42d28e94a2b31b610d5ab79e90da875"}, + {file = "pyresample-1.28.4-cp311-cp311-win_amd64.whl", hash = "sha256:a8baae466c11816e6c361ad7bf17bc4741dc4e79f62b0d6399042b02fa84075c"}, + {file = "pyresample-1.28.4-cp311-cp311-win_arm64.whl", hash = "sha256:128af462f190150a34ae7e070d0c16be4c4c12fb732cb9dcbb3e9e07e31fe452"}, + {file = "pyresample-1.28.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3136a8563673e4bab5b21ed4de1936e55f13deae8a55d41873cacfd573f466d7"}, + {file = "pyresample-1.28.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:284b852a15d1f42137a64ab494202e85d19bcb2eb7d09457308c00779fb51a07"}, + {file = "pyresample-1.28.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b7c243d9e3c195c1c8fa7389f26067f0365e9d90fdc3e6218cc62a0836bfb06"}, + {file = "pyresample-1.28.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb078550ec3c90e08c7c5890fed3623e9a340ac0bc59816e5897420b78137be3"}, + {file = "pyresample-1.28.4-cp312-cp312-win_amd64.whl", hash = "sha256:784cb68a0f09d4e984282753403adaa44cfc4573873b113563e00abe944718ab"}, + {file = "pyresample-1.28.4-cp312-cp312-win_arm64.whl", hash = "sha256:d4b6434236ac124d9b48596cc69cf3d615962fc4413f329f7c09b6d2c7d9a8ea"}, + {file = "pyresample-1.28.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bcc253a710c22905f7f53add8b69eafc3bcbc5e63bc9bb48e6ad70b993fa41c1"}, + {file = "pyresample-1.28.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87fbb9e2ab331e4dc1e5458009159dbd58979a407b604269fb91e6dd8b71dfc6"}, + {file = "pyresample-1.28.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9174ab4781875ef14a528e791188c3db3bd5597e27cf65f32c38764bbbe4da4e"}, + {file = "pyresample-1.28.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07740db69065ee3078d38c4afff87a7849a1f94c4a1fa18511fe16d22e33eb49"}, + {file = "pyresample-1.28.4-cp39-cp39-win_amd64.whl", hash = "sha256:aedff7188e937cd0e8fb9ecef3ca9ae371f032c8a31a0f82b918b0b9bbceb4d2"}, + {file = "pyresample-1.28.4-cp39-cp39-win_arm64.whl", hash = "sha256:5309808cf03c89e340c187cb3dbf99604f39048c045918e27b1b3711e6f01772"}, + {file = "pyresample-1.28.4.tar.gz", hash = "sha256:0326f6aaacec22a39ccfc558c3214f204ffac9fe1d15d0e0ffbff505e18bdeb3"}, ] [package.dependencies] @@ -4151,13 +4186,13 @@ files = [ [[package]] name = "pytest" -version = "8.1.1" +version = "8.2.2" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.1.1-py3-none-any.whl", hash = "sha256:2a8386cfc11fa9d2c50ee7b2a57e7d898ef90470a7a34c4b949ff59662bb78b7"}, - {file = "pytest-8.1.1.tar.gz", hash = "sha256:ac978141a75948948817d360297b7aae0fcb9d6ff6bc9ec6d514b85d5a65c044"}, + {file = "pytest-8.2.2-py3-none-any.whl", hash = "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343"}, + {file = "pytest-8.2.2.tar.gz", hash = "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977"}, ] [package.dependencies] @@ -4165,11 +4200,11 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.4,<2.0" +pluggy = ">=1.5,<2.0" tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-cov" @@ -4191,18 +4226,18 @@ testing = ["fields", "hunter", "process-tests", "pytest-xdist", "virtualenv"] [[package]] name = "pytest-xdist" -version = "3.5.0" +version = "3.6.1" description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pytest-xdist-3.5.0.tar.gz", hash = "sha256:cbb36f3d67e0c478baa57fa4edc8843887e0f6cfc42d677530a36d7472b32d8a"}, - {file = "pytest_xdist-3.5.0-py3-none-any.whl", hash = "sha256:d075629c7e00b611df89f490a5063944bee7a4362a5ff11c7cc7824a03dfce24"}, + {file = "pytest_xdist-3.6.1-py3-none-any.whl", hash = "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7"}, + {file = "pytest_xdist-3.6.1.tar.gz", hash = "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d"}, ] [package.dependencies] -execnet = ">=1.1" -pytest = ">=6.2.0" +execnet = ">=2.1" +pytest = ">=7.0.0" [package.extras] psutil = ["psutil (>=3.0)"] @@ -4366,104 +4401,99 @@ pyyaml = "*" [[package]] name = "pyzmq" -version = "25.1.2" +version = "26.0.3" description = "Python bindings for 0MQ" optional = true -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:e624c789359f1a16f83f35e2c705d07663ff2b4d4479bad35621178d8f0f6ea4"}, - {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49151b0efece79f6a79d41a461d78535356136ee70084a1c22532fc6383f4ad0"}, - {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9a5f194cf730f2b24d6af1f833c14c10f41023da46a7f736f48b6d35061e76e"}, - {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:faf79a302f834d9e8304fafdc11d0d042266667ac45209afa57e5efc998e3872"}, - {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f51a7b4ead28d3fca8dda53216314a553b0f7a91ee8fc46a72b402a78c3e43d"}, - {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0ddd6d71d4ef17ba5a87becf7ddf01b371eaba553c603477679ae817a8d84d75"}, - {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:246747b88917e4867e2367b005fc8eefbb4a54b7db363d6c92f89d69abfff4b6"}, - {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:00c48ae2fd81e2a50c3485de1b9d5c7c57cd85dc8ec55683eac16846e57ac979"}, - {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a68d491fc20762b630e5db2191dd07ff89834086740f70e978bb2ef2668be08"}, - {file = "pyzmq-25.1.2-cp310-cp310-win32.whl", hash = "sha256:09dfe949e83087da88c4a76767df04b22304a682d6154de2c572625c62ad6886"}, - {file = "pyzmq-25.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:fa99973d2ed20417744fca0073390ad65ce225b546febb0580358e36aa90dba6"}, - {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:82544e0e2d0c1811482d37eef297020a040c32e0687c1f6fc23a75b75db8062c"}, - {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:01171fc48542348cd1a360a4b6c3e7d8f46cdcf53a8d40f84db6707a6768acc1"}, - {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc69c96735ab501419c432110016329bf0dea8898ce16fab97c6d9106dc0b348"}, - {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3e124e6b1dd3dfbeb695435dff0e383256655bb18082e094a8dd1f6293114642"}, - {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7598d2ba821caa37a0f9d54c25164a4fa351ce019d64d0b44b45540950458840"}, - {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d1299d7e964c13607efd148ca1f07dcbf27c3ab9e125d1d0ae1d580a1682399d"}, - {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e6f689880d5ad87918430957297c975203a082d9a036cc426648fcbedae769b"}, - {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cc69949484171cc961e6ecd4a8911b9ce7a0d1f738fcae717177c231bf77437b"}, - {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9880078f683466b7f567b8624bfc16cad65077be046b6e8abb53bed4eeb82dd3"}, - {file = "pyzmq-25.1.2-cp311-cp311-win32.whl", hash = "sha256:4e5837af3e5aaa99a091302df5ee001149baff06ad22b722d34e30df5f0d9097"}, - {file = "pyzmq-25.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:25c2dbb97d38b5ac9fd15586e048ec5eb1e38f3d47fe7d92167b0c77bb3584e9"}, - {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:11e70516688190e9c2db14fcf93c04192b02d457b582a1f6190b154691b4c93a"}, - {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:313c3794d650d1fccaaab2df942af9f2c01d6217c846177cfcbc693c7410839e"}, - {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b3cbba2f47062b85fe0ef9de5b987612140a9ba3a9c6d2543c6dec9f7c2ab27"}, - {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc31baa0c32a2ca660784d5af3b9487e13b61b3032cb01a115fce6588e1bed30"}, - {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02c9087b109070c5ab0b383079fa1b5f797f8d43e9a66c07a4b8b8bdecfd88ee"}, - {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:f8429b17cbb746c3e043cb986328da023657e79d5ed258b711c06a70c2ea7537"}, - {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5074adeacede5f810b7ef39607ee59d94e948b4fd954495bdb072f8c54558181"}, - {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:7ae8f354b895cbd85212da245f1a5ad8159e7840e37d78b476bb4f4c3f32a9fe"}, - {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b264bf2cc96b5bc43ce0e852be995e400376bd87ceb363822e2cb1964fcdc737"}, - {file = "pyzmq-25.1.2-cp312-cp312-win32.whl", hash = "sha256:02bbc1a87b76e04fd780b45e7f695471ae6de747769e540da909173d50ff8e2d"}, - {file = "pyzmq-25.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:ced111c2e81506abd1dc142e6cd7b68dd53747b3b7ae5edbea4578c5eeff96b7"}, - {file = "pyzmq-25.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:7b6d09a8962a91151f0976008eb7b29b433a560fde056ec7a3db9ec8f1075438"}, - {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967668420f36878a3c9ecb5ab33c9d0ff8d054f9c0233d995a6d25b0e95e1b6b"}, - {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5edac3f57c7ddaacdb4d40f6ef2f9e299471fc38d112f4bc6d60ab9365445fb0"}, - {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0dabfb10ef897f3b7e101cacba1437bd3a5032ee667b7ead32bbcdd1a8422fe7"}, - {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:2c6441e0398c2baacfe5ba30c937d274cfc2dc5b55e82e3749e333aabffde561"}, - {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:16b726c1f6c2e7625706549f9dbe9b06004dfbec30dbed4bf50cbdfc73e5b32a"}, - {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:a86c2dd76ef71a773e70551a07318b8e52379f58dafa7ae1e0a4be78efd1ff16"}, - {file = "pyzmq-25.1.2-cp36-cp36m-win32.whl", hash = "sha256:359f7f74b5d3c65dae137f33eb2bcfa7ad9ebefd1cab85c935f063f1dbb245cc"}, - {file = "pyzmq-25.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:55875492f820d0eb3417b51d96fea549cde77893ae3790fd25491c5754ea2f68"}, - {file = "pyzmq-25.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b8c8a419dfb02e91b453615c69568442e897aaf77561ee0064d789705ff37a92"}, - {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8807c87fa893527ae8a524c15fc505d9950d5e856f03dae5921b5e9aa3b8783b"}, - {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5e319ed7d6b8f5fad9b76daa0a68497bc6f129858ad956331a5835785761e003"}, - {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:3c53687dde4d9d473c587ae80cc328e5b102b517447456184b485587ebd18b62"}, - {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9add2e5b33d2cd765ad96d5eb734a5e795a0755f7fc49aa04f76d7ddda73fd70"}, - {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e690145a8c0c273c28d3b89d6fb32c45e0d9605b2293c10e650265bf5c11cfec"}, - {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:00a06faa7165634f0cac1abb27e54d7a0b3b44eb9994530b8ec73cf52e15353b"}, - {file = "pyzmq-25.1.2-cp37-cp37m-win32.whl", hash = "sha256:0f97bc2f1f13cb16905a5f3e1fbdf100e712d841482b2237484360f8bc4cb3d7"}, - {file = "pyzmq-25.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6cc0020b74b2e410287e5942e1e10886ff81ac77789eb20bec13f7ae681f0fdd"}, - {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:bef02cfcbded83473bdd86dd8d3729cd82b2e569b75844fb4ea08fee3c26ae41"}, - {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e10a4b5a4b1192d74853cc71a5e9fd022594573926c2a3a4802020360aa719d8"}, - {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8c5f80e578427d4695adac6fdf4370c14a2feafdc8cb35549c219b90652536ae"}, - {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5dde6751e857910c1339890f3524de74007958557593b9e7e8c5f01cd919f8a7"}, - {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea1608dd169da230a0ad602d5b1ebd39807ac96cae1845c3ceed39af08a5c6df"}, - {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0f513130c4c361201da9bc69df25a086487250e16b5571ead521b31ff6b02220"}, - {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:019744b99da30330798bb37df33549d59d380c78e516e3bab9c9b84f87a9592f"}, - {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2e2713ef44be5d52dd8b8e2023d706bf66cb22072e97fc71b168e01d25192755"}, - {file = "pyzmq-25.1.2-cp38-cp38-win32.whl", hash = "sha256:07cd61a20a535524906595e09344505a9bd46f1da7a07e504b315d41cd42eb07"}, - {file = "pyzmq-25.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb7e49a17fb8c77d3119d41a4523e432eb0c6932187c37deb6fbb00cc3028088"}, - {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:94504ff66f278ab4b7e03e4cba7e7e400cb73bfa9d3d71f58d8972a8dc67e7a6"}, - {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6dd0d50bbf9dca1d0bdea219ae6b40f713a3fb477c06ca3714f208fd69e16fd8"}, - {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:004ff469d21e86f0ef0369717351073e0e577428e514c47c8480770d5e24a565"}, - {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c0b5ca88a8928147b7b1e2dfa09f3b6c256bc1135a1338536cbc9ea13d3b7add"}, - {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c9a79f1d2495b167119d02be7448bfba57fad2a4207c4f68abc0bab4b92925b"}, - {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:518efd91c3d8ac9f9b4f7dd0e2b7b8bf1a4fe82a308009016b07eaa48681af82"}, - {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1ec23bd7b3a893ae676d0e54ad47d18064e6c5ae1fadc2f195143fb27373f7f6"}, - {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db36c27baed588a5a8346b971477b718fdc66cf5b80cbfbd914b4d6d355e44e2"}, - {file = "pyzmq-25.1.2-cp39-cp39-win32.whl", hash = "sha256:39b1067f13aba39d794a24761e385e2eddc26295826530a8c7b6c6c341584289"}, - {file = "pyzmq-25.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:8e9f3fabc445d0ce320ea2c59a75fe3ea591fdbdeebec5db6de530dd4b09412e"}, - {file = "pyzmq-25.1.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a8c1d566344aee826b74e472e16edae0a02e2a044f14f7c24e123002dcff1c05"}, - {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:759cfd391a0996345ba94b6a5110fca9c557ad4166d86a6e81ea526c376a01e8"}, - {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c61e346ac34b74028ede1c6b4bcecf649d69b707b3ff9dc0fab453821b04d1e"}, - {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cb8fc1f8d69b411b8ec0b5f1ffbcaf14c1db95b6bccea21d83610987435f1a4"}, - {file = "pyzmq-25.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3c00c9b7d1ca8165c610437ca0c92e7b5607b2f9076f4eb4b095c85d6e680a1d"}, - {file = "pyzmq-25.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:df0c7a16ebb94452d2909b9a7b3337940e9a87a824c4fc1c7c36bb4404cb0cde"}, - {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:45999e7f7ed5c390f2e87ece7f6c56bf979fb213550229e711e45ecc7d42ccb8"}, - {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ac170e9e048b40c605358667aca3d94e98f604a18c44bdb4c102e67070f3ac9b"}, - {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1b604734bec94f05f81b360a272fc824334267426ae9905ff32dc2be433ab96"}, - {file = "pyzmq-25.1.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:a793ac733e3d895d96f865f1806f160696422554e46d30105807fdc9841b9f7d"}, - {file = "pyzmq-25.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0806175f2ae5ad4b835ecd87f5f85583316b69f17e97786f7443baaf54b9bb98"}, - {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ef12e259e7bc317c7597d4f6ef59b97b913e162d83b421dd0db3d6410f17a244"}, - {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea253b368eb41116011add00f8d5726762320b1bda892f744c91997b65754d73"}, - {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b9b1f2ad6498445a941d9a4fee096d387fee436e45cc660e72e768d3d8ee611"}, - {file = "pyzmq-25.1.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:8b14c75979ce932c53b79976a395cb2a8cd3aaf14aef75e8c2cb55a330b9b49d"}, - {file = "pyzmq-25.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:889370d5174a741a62566c003ee8ddba4b04c3f09a97b8000092b7ca83ec9c49"}, - {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a18fff090441a40ffda8a7f4f18f03dc56ae73f148f1832e109f9bffa85df15"}, - {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99a6b36f95c98839ad98f8c553d8507644c880cf1e0a57fe5e3a3f3969040882"}, - {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4345c9a27f4310afbb9c01750e9461ff33d6fb74cd2456b107525bbeebcb5be3"}, - {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3516e0b6224cf6e43e341d56da15fd33bdc37fa0c06af4f029f7d7dfceceabbc"}, - {file = "pyzmq-25.1.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:146b9b1f29ead41255387fb07be56dc29639262c0f7344f570eecdcd8d683314"}, - {file = "pyzmq-25.1.2.tar.gz", hash = "sha256:93f1aa311e8bb912e34f004cf186407a4e90eec4f0ecc0efd26056bf7eda0226"}, + {file = "pyzmq-26.0.3-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:44dd6fc3034f1eaa72ece33588867df9e006a7303725a12d64c3dff92330f625"}, + {file = "pyzmq-26.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:acb704195a71ac5ea5ecf2811c9ee19ecdc62b91878528302dd0be1b9451cc90"}, + {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dbb9c997932473a27afa93954bb77a9f9b786b4ccf718d903f35da3232317de"}, + {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6bcb34f869d431799c3ee7d516554797f7760cb2198ecaa89c3f176f72d062be"}, + {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38ece17ec5f20d7d9b442e5174ae9f020365d01ba7c112205a4d59cf19dc38ee"}, + {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:ba6e5e6588e49139a0979d03a7deb9c734bde647b9a8808f26acf9c547cab1bf"}, + {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3bf8b000a4e2967e6dfdd8656cd0757d18c7e5ce3d16339e550bd462f4857e59"}, + {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2136f64fbb86451dbbf70223635a468272dd20075f988a102bf8a3f194a411dc"}, + {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e8918973fbd34e7814f59143c5f600ecd38b8038161239fd1a3d33d5817a38b8"}, + {file = "pyzmq-26.0.3-cp310-cp310-win32.whl", hash = "sha256:0aaf982e68a7ac284377d051c742610220fd06d330dcd4c4dbb4cdd77c22a537"}, + {file = "pyzmq-26.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:f1a9b7d00fdf60b4039f4455afd031fe85ee8305b019334b72dcf73c567edc47"}, + {file = "pyzmq-26.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:80b12f25d805a919d53efc0a5ad7c0c0326f13b4eae981a5d7b7cc343318ebb7"}, + {file = "pyzmq-26.0.3-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:a72a84570f84c374b4c287183debc776dc319d3e8ce6b6a0041ce2e400de3f32"}, + {file = "pyzmq-26.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7ca684ee649b55fd8f378127ac8462fb6c85f251c2fb027eb3c887e8ee347bcd"}, + {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e222562dc0f38571c8b1ffdae9d7adb866363134299264a1958d077800b193b7"}, + {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f17cde1db0754c35a91ac00b22b25c11da6eec5746431d6e5092f0cd31a3fea9"}, + {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b7c0c0b3244bb2275abe255d4a30c050d541c6cb18b870975553f1fb6f37527"}, + {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ac97a21de3712afe6a6c071abfad40a6224fd14fa6ff0ff8d0c6e6cd4e2f807a"}, + {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:88b88282e55fa39dd556d7fc04160bcf39dea015f78e0cecec8ff4f06c1fc2b5"}, + {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:72b67f966b57dbd18dcc7efbc1c7fc9f5f983e572db1877081f075004614fcdd"}, + {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f4b6cecbbf3b7380f3b61de3a7b93cb721125dc125c854c14ddc91225ba52f83"}, + {file = "pyzmq-26.0.3-cp311-cp311-win32.whl", hash = "sha256:eed56b6a39216d31ff8cd2f1d048b5bf1700e4b32a01b14379c3b6dde9ce3aa3"}, + {file = "pyzmq-26.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:3191d312c73e3cfd0f0afdf51df8405aafeb0bad71e7ed8f68b24b63c4f36500"}, + {file = "pyzmq-26.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:b6907da3017ef55139cf0e417c5123a84c7332520e73a6902ff1f79046cd3b94"}, + {file = "pyzmq-26.0.3-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:068ca17214038ae986d68f4a7021f97e187ed278ab6dccb79f837d765a54d753"}, + {file = "pyzmq-26.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7821d44fe07335bea256b9f1f41474a642ca55fa671dfd9f00af8d68a920c2d4"}, + {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eeb438a26d87c123bb318e5f2b3d86a36060b01f22fbdffd8cf247d52f7c9a2b"}, + {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:69ea9d6d9baa25a4dc9cef5e2b77b8537827b122214f210dd925132e34ae9b12"}, + {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7daa3e1369355766dea11f1d8ef829905c3b9da886ea3152788dc25ee6079e02"}, + {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6ca7a9a06b52d0e38ccf6bca1aeff7be178917893f3883f37b75589d42c4ac20"}, + {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1b7d0e124948daa4d9686d421ef5087c0516bc6179fdcf8828b8444f8e461a77"}, + {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:e746524418b70f38550f2190eeee834db8850088c834d4c8406fbb9bc1ae10b2"}, + {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6b3146f9ae6af82c47a5282ac8803523d381b3b21caeae0327ed2f7ecb718798"}, + {file = "pyzmq-26.0.3-cp312-cp312-win32.whl", hash = "sha256:2b291d1230845871c00c8462c50565a9cd6026fe1228e77ca934470bb7d70ea0"}, + {file = "pyzmq-26.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:926838a535c2c1ea21c903f909a9a54e675c2126728c21381a94ddf37c3cbddf"}, + {file = "pyzmq-26.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:5bf6c237f8c681dfb91b17f8435b2735951f0d1fad10cc5dfd96db110243370b"}, + {file = "pyzmq-26.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c0991f5a96a8e620f7691e61178cd8f457b49e17b7d9cfa2067e2a0a89fc1d5"}, + {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dbf012d8fcb9f2cf0643b65df3b355fdd74fc0035d70bb5c845e9e30a3a4654b"}, + {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:01fbfbeb8249a68d257f601deb50c70c929dc2dfe683b754659569e502fbd3aa"}, + {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c8eb19abe87029c18f226d42b8a2c9efdd139d08f8bf6e085dd9075446db450"}, + {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:5344b896e79800af86ad643408ca9aa303a017f6ebff8cee5a3163c1e9aec987"}, + {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:204e0f176fd1d067671157d049466869b3ae1fc51e354708b0dc41cf94e23a3a"}, + {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a42db008d58530efa3b881eeee4991146de0b790e095f7ae43ba5cc612decbc5"}, + {file = "pyzmq-26.0.3-cp37-cp37m-win32.whl", hash = "sha256:8d7a498671ca87e32b54cb47c82a92b40130a26c5197d392720a1bce1b3c77cf"}, + {file = "pyzmq-26.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:3b4032a96410bdc760061b14ed6a33613ffb7f702181ba999df5d16fb96ba16a"}, + {file = "pyzmq-26.0.3-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2cc4e280098c1b192c42a849de8de2c8e0f3a84086a76ec5b07bfee29bda7d18"}, + {file = "pyzmq-26.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5bde86a2ed3ce587fa2b207424ce15b9a83a9fa14422dcc1c5356a13aed3df9d"}, + {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:34106f68e20e6ff253c9f596ea50397dbd8699828d55e8fa18bd4323d8d966e6"}, + {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ebbbd0e728af5db9b04e56389e2299a57ea8b9dd15c9759153ee2455b32be6ad"}, + {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6b1d1c631e5940cac5a0b22c5379c86e8df6a4ec277c7a856b714021ab6cfad"}, + {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e891ce81edd463b3b4c3b885c5603c00141151dd9c6936d98a680c8c72fe5c67"}, + {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9b273ecfbc590a1b98f014ae41e5cf723932f3b53ba9367cfb676f838038b32c"}, + {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b32bff85fb02a75ea0b68f21e2412255b5731f3f389ed9aecc13a6752f58ac97"}, + {file = "pyzmq-26.0.3-cp38-cp38-win32.whl", hash = "sha256:f6c21c00478a7bea93caaaef9e7629145d4153b15a8653e8bb4609d4bc70dbfc"}, + {file = "pyzmq-26.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:3401613148d93ef0fd9aabdbddb212de3db7a4475367f49f590c837355343972"}, + {file = "pyzmq-26.0.3-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:2ed8357f4c6e0daa4f3baf31832df8a33334e0fe5b020a61bc8b345a3db7a606"}, + {file = "pyzmq-26.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c1c8f2a2ca45292084c75bb6d3a25545cff0ed931ed228d3a1810ae3758f975f"}, + {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b63731993cdddcc8e087c64e9cf003f909262b359110070183d7f3025d1c56b5"}, + {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b3cd31f859b662ac5d7f4226ec7d8bd60384fa037fc02aee6ff0b53ba29a3ba8"}, + {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:115f8359402fa527cf47708d6f8a0f8234f0e9ca0cab7c18c9c189c194dbf620"}, + {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:715bdf952b9533ba13dfcf1f431a8f49e63cecc31d91d007bc1deb914f47d0e4"}, + {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e1258c639e00bf5e8a522fec6c3eaa3e30cf1c23a2f21a586be7e04d50c9acab"}, + {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:15c59e780be8f30a60816a9adab900c12a58d79c1ac742b4a8df044ab2a6d920"}, + {file = "pyzmq-26.0.3-cp39-cp39-win32.whl", hash = "sha256:d0cdde3c78d8ab5b46595054e5def32a755fc028685add5ddc7403e9f6de9879"}, + {file = "pyzmq-26.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:ce828058d482ef860746bf532822842e0ff484e27f540ef5c813d516dd8896d2"}, + {file = "pyzmq-26.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:788f15721c64109cf720791714dc14afd0f449d63f3a5487724f024345067381"}, + {file = "pyzmq-26.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c18645ef6294d99b256806e34653e86236eb266278c8ec8112622b61db255de"}, + {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e6bc96ebe49604df3ec2c6389cc3876cabe475e6bfc84ced1bf4e630662cb35"}, + {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:971e8990c5cc4ddcff26e149398fc7b0f6a042306e82500f5e8db3b10ce69f84"}, + {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8416c23161abd94cc7da80c734ad7c9f5dbebdadfdaa77dad78244457448223"}, + {file = "pyzmq-26.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:082a2988364b60bb5de809373098361cf1dbb239623e39e46cb18bc035ed9c0c"}, + {file = "pyzmq-26.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d57dfbf9737763b3a60d26e6800e02e04284926329aee8fb01049635e957fe81"}, + {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:77a85dca4c2430ac04dc2a2185c2deb3858a34fe7f403d0a946fa56970cf60a1"}, + {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4c82a6d952a1d555bf4be42b6532927d2a5686dd3c3e280e5f63225ab47ac1f5"}, + {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4496b1282c70c442809fc1b151977c3d967bfb33e4e17cedbf226d97de18f709"}, + {file = "pyzmq-26.0.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:e4946d6bdb7ba972dfda282f9127e5756d4f299028b1566d1245fa0d438847e6"}, + {file = "pyzmq-26.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:03c0ae165e700364b266876d712acb1ac02693acd920afa67da2ebb91a0b3c09"}, + {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:3e3070e680f79887d60feeda051a58d0ac36622e1759f305a41059eff62c6da7"}, + {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6ca08b840fe95d1c2bd9ab92dac5685f949fc6f9ae820ec16193e5ddf603c3b2"}, + {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e76654e9dbfb835b3518f9938e565c7806976c07b37c33526b574cc1a1050480"}, + {file = "pyzmq-26.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:871587bdadd1075b112e697173e946a07d722459d20716ceb3d1bd6c64bd08ce"}, + {file = "pyzmq-26.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d0a2d1bd63a4ad79483049b26514e70fa618ce6115220da9efdff63688808b17"}, + {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0270b49b6847f0d106d64b5086e9ad5dc8a902413b5dbbb15d12b60f9c1747a4"}, + {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:703c60b9910488d3d0954ca585c34f541e506a091a41930e663a098d3b794c67"}, + {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74423631b6be371edfbf7eabb02ab995c2563fee60a80a30829176842e71722a"}, + {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4adfbb5451196842a88fda3612e2c0414134874bffb1c2ce83ab4242ec9e027d"}, + {file = "pyzmq-26.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3516119f4f9b8671083a70b6afaa0a070f5683e431ab3dc26e9215620d7ca1ad"}, + {file = "pyzmq-26.0.3.tar.gz", hash = "sha256:dba7d9f2e047dfa2bca3b01f4f84aa5246725203d6284e3790f2ca15fba6b40a"}, ] [package.dependencies] @@ -4471,32 +4501,32 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "rasterio" -version = "1.3.9" +version = "1.3.10" description = "Fast and direct raster I/O for use with Numpy and SciPy" optional = false python-versions = ">=3.8" files = [ - {file = "rasterio-1.3.9-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:04247da9f4002587ac2bec967c3a72f63fc0e6654101c06850bae3d8131b700d"}, - {file = "rasterio-1.3.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c9edce37b70f4cd4be5d3f5d314877e3130aeebb612120405cd28f83fe200865"}, - {file = "rasterio-1.3.9-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:fd6a850a37840ba590ddcf7ff90ba007b1e231b04434d8b4ac5ce0f746ada91a"}, - {file = "rasterio-1.3.9-cp310-cp310-win_amd64.whl", hash = "sha256:0c83156a44f8fda11876ff9f2ff1b602d7e7434447f7d621353f2929cefb1bf1"}, - {file = "rasterio-1.3.9-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:0172dbd80bd9adc105ec2c9bd207dbd5519ea06b438a4d965c6290ae8ed6ff9f"}, - {file = "rasterio-1.3.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0ea5b42597d85868ee88c750cc33f2ae729e1b5e3fe28f99071f39e1417bf1c0"}, - {file = "rasterio-1.3.9-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:be9b343bd08245df22115775dc9513c912afb4134d832662fa165d70cb805c34"}, - {file = "rasterio-1.3.9-cp311-cp311-win_amd64.whl", hash = "sha256:06d53e2e0885f039f960beb7c861400b92ea3e0e5abc2c67483fb56b1e5cbc13"}, - {file = "rasterio-1.3.9-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:a34bb9eef67b7896e2dfb39e10ba6372f9894226fb790bd7a46f5748f205b7d8"}, - {file = "rasterio-1.3.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:67b144b9678f9ad4cf5f2c3f455cbc6a7166c0523179249cee8f2e2c57d76c5b"}, - {file = "rasterio-1.3.9-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:99b72fccb702a921f43e56a4507b4cafe2a9196b478b993b98e82ec6851916d7"}, - {file = "rasterio-1.3.9-cp312-cp312-win_amd64.whl", hash = "sha256:6777fad3c31eb3e5da0ccaa28a032ad07c20d003bcd14f8bc13e16ca2f62348c"}, - {file = "rasterio-1.3.9-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:55bb1a2701dd67c1952b261a2ffbabd947a435d4457f13c25092a32ab7a4b36e"}, - {file = "rasterio-1.3.9-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:726d8e8884359c34f672312171310052d5483af550ef00fb4f2562cc022a6f5a"}, - {file = "rasterio-1.3.9-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:f65879415df188fdc9388ccf2ee01e0659abae370d12518a17b60151e7d04efe"}, - {file = "rasterio-1.3.9-cp38-cp38-win_amd64.whl", hash = "sha256:89771b70ee722c4cc808e2a6139b367bef1a736ecd497b311b3515d78a5d16bc"}, - {file = "rasterio-1.3.9-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:14df8413c030b04e54d478d6ecec4e5958b46585c3cb970bf0dc19b4831146c8"}, - {file = "rasterio-1.3.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:911e54e0bb97c456a045f6d8e24b00aeb055a235d2aa7c2c1f9128f4c6c7a52d"}, - {file = "rasterio-1.3.9-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:01e428ee5ba8444f5cb4fff56225acb1ab9bc8b77209b6e4198e04565d8a8509"}, - {file = "rasterio-1.3.9-cp39-cp39-win_amd64.whl", hash = "sha256:26d9aea05b035927647bb32cc04fad0a68346a2f5186224dc1c2555c33515183"}, - {file = "rasterio-1.3.9.tar.gz", hash = "sha256:fc6d0d290492fa1a5068711cfebb21cc936968891b7ed9da0690c8a7388885c5"}, + {file = "rasterio-1.3.10-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:2ef27c3eff6f44f8b5d5de228003367c1843593edf648d85c0dc1319c00dc57d"}, + {file = "rasterio-1.3.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c711b497e9ef0c4f5e1c01e34ba910708e066e1c4a69c25df18d1bcc04481287"}, + {file = "rasterio-1.3.10-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:d1ac85857144cb8075e332e9d908b65426d30ddc1f59f7a04bcf6ed6fd3c0d47"}, + {file = "rasterio-1.3.10-cp310-cp310-win_amd64.whl", hash = "sha256:ef8a496740df1e68f7a3d3449aa3be9c3210c22f4bb78a4a9e1c290183abd9b1"}, + {file = "rasterio-1.3.10-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:97d867cada29f16cb83f1743217f775f8b982676fcdda77671d25abb26698159"}, + {file = "rasterio-1.3.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:505b3e659eb3b137192c25233bf7954bc4997b1a474bae9e129fbd5ac2619404"}, + {file = "rasterio-1.3.10-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:30f27e309a14a70c821d10a0ea18b110968dc2e2186b06a900aebd92094f4e00"}, + {file = "rasterio-1.3.10-cp311-cp311-win_amd64.whl", hash = "sha256:cbb2eea127328302f9e3158a000363a7d9eea22537378dee4f824a7fa2d78c05"}, + {file = "rasterio-1.3.10-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:3a9c4fb63e050e11bcd23e53f084ca186b445f976df1f70e7abd851c4072837f"}, + {file = "rasterio-1.3.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7c7ddca79444fd3b933f4cd1a1773e9f7839d0ce5d76e600bdf92ee9a79b95f8"}, + {file = "rasterio-1.3.10-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:f9cd757e11cfb07ef39b1cc79a32497bf22aff7fec41fe330b868cb3043b4db5"}, + {file = "rasterio-1.3.10-cp312-cp312-win_amd64.whl", hash = "sha256:7e653968f64840654d277e0f86f8666ed8f3030ba36fa865f420f9bc38d619ee"}, + {file = "rasterio-1.3.10-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:7a22c0e0cf07dbed6576faf9a49bc4afa1afedd5a14441b64a3d3dd6d10dc274"}, + {file = "rasterio-1.3.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d29d30c2271fa265913bd3db93fa213d3a0894362ec704e7273cf30443098a90"}, + {file = "rasterio-1.3.10-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:287e8d0d0472c778aa0b6392e9c00894a80f2bace28fa6eddb76c0a895097947"}, + {file = "rasterio-1.3.10-cp38-cp38-win_amd64.whl", hash = "sha256:a420e5f25108b1c92c5d071cfd6518b3766f20a6eddb1b322d06c3d46a89fab6"}, + {file = "rasterio-1.3.10-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:73ea4d0e584f696ef115601bbb97ba8d2b68a67c2bb3b40999414d31b6c7cf89"}, + {file = "rasterio-1.3.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e6eece6420d7d6ef9b9830633b8fcd15e86b8702cb13419abe251c16ca502cf3"}, + {file = "rasterio-1.3.10-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:0bbd62b45a35cab53cb7fe72419e823e47ab31ee2d055af8e21dc7f37fe5ed6c"}, + {file = "rasterio-1.3.10-cp39-cp39-win_amd64.whl", hash = "sha256:450f2bd45335308829da90566fbcbdb8e8aa0251a9d1f6ebb60667855dfb7554"}, + {file = "rasterio-1.3.10.tar.gz", hash = "sha256:ce182c735b4f9e8735d90600607ecab15ef895eb8aa660bf665751529477e326"}, ] [package.dependencies] @@ -4506,6 +4536,7 @@ certifi = "*" click = ">=4.0" click-plugins = "*" cligj = ">=0.5" +importlib-metadata = {version = "*", markers = "python_version < \"3.10\""} numpy = "*" setuptools = "*" snuggs = ">=1.4.1" @@ -4520,13 +4551,13 @@ test = ["boto3 (>=1.2.4)", "hypothesis", "packaging", "pytest (>=2.8.2)", "pytes [[package]] name = "referencing" -version = "0.34.0" +version = "0.35.1" description = "JSON Referencing + Python" optional = true python-versions = ">=3.8" files = [ - {file = "referencing-0.34.0-py3-none-any.whl", hash = "sha256:d53ae300ceddd3169f1ffa9caf2cb7b769e92657e4fafb23d34b93679116dfd4"}, - {file = "referencing-0.34.0.tar.gz", hash = "sha256:5773bd84ef41799a5a8ca72dc34590c041eb01bf9aa02632b4a973fb0181a844"}, + {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, + {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, ] [package.dependencies] @@ -4535,115 +4566,101 @@ rpds-py = ">=0.7.0" [[package]] name = "regex" -version = "2023.12.25" +version = "2024.5.15" description = "Alternative regular expression module, to replace re." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, - {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, - {file = "regex-2023.12.25-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d865984b3f71f6d0af64d0d88f5733521698f6c16f445bb09ce746c92c97c586"}, - {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e0eabac536b4cc7f57a5f3d095bfa557860ab912f25965e08fe1545e2ed8b4c"}, - {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25a8ad70e716f96e13a637802813f65d8a6760ef48672aa3502f4c24ea8b400"}, - {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9b6d73353f777630626f403b0652055ebfe8ff142a44ec2cf18ae470395766e"}, - {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9cc99d6946d750eb75827cb53c4371b8b0fe89c733a94b1573c9dd16ea6c9e4"}, - {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88d1f7bef20c721359d8675f7d9f8e414ec5003d8f642fdfd8087777ff7f94b5"}, - {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cb3fe77aec8f1995611f966d0c656fdce398317f850d0e6e7aebdfe61f40e1cd"}, - {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7aa47c2e9ea33a4a2a05f40fcd3ea36d73853a2aae7b4feab6fc85f8bf2c9704"}, - {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:df26481f0c7a3f8739fecb3e81bc9da3fcfae34d6c094563b9d4670b047312e1"}, - {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c40281f7d70baf6e0db0c2f7472b31609f5bc2748fe7275ea65a0b4601d9b392"}, - {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:d94a1db462d5690ebf6ae86d11c5e420042b9898af5dcf278bd97d6bda065423"}, - {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ba1b30765a55acf15dce3f364e4928b80858fa8f979ad41f862358939bdd1f2f"}, - {file = "regex-2023.12.25-cp310-cp310-win32.whl", hash = "sha256:150c39f5b964e4d7dba46a7962a088fbc91f06e606f023ce57bb347a3b2d4630"}, - {file = "regex-2023.12.25-cp310-cp310-win_amd64.whl", hash = "sha256:09da66917262d9481c719599116c7dc0c321ffcec4b1f510c4f8a066f8768105"}, - {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1b9d811f72210fa9306aeb88385b8f8bcef0dfbf3873410413c00aa94c56c2b6"}, - {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d902a43085a308cef32c0d3aea962524b725403fd9373dea18110904003bac97"}, - {file = "regex-2023.12.25-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d166eafc19f4718df38887b2bbe1467a4f74a9830e8605089ea7a30dd4da8887"}, - {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7ad32824b7f02bb3c9f80306d405a1d9b7bb89362d68b3c5a9be53836caebdb"}, - {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:636ba0a77de609d6510235b7f0e77ec494d2657108f777e8765efc060094c98c"}, - {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fda75704357805eb953a3ee15a2b240694a9a514548cd49b3c5124b4e2ad01b"}, - {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f72cbae7f6b01591f90814250e636065850c5926751af02bb48da94dfced7baa"}, - {file = "regex-2023.12.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db2a0b1857f18b11e3b0e54ddfefc96af46b0896fb678c85f63fb8c37518b3e7"}, - {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7502534e55c7c36c0978c91ba6f61703faf7ce733715ca48f499d3dbbd7657e0"}, - {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e8c7e08bb566de4faaf11984af13f6bcf6a08f327b13631d41d62592681d24fe"}, - {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:283fc8eed679758de38fe493b7d7d84a198b558942b03f017b1f94dda8efae80"}, - {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:f44dd4d68697559d007462b0a3a1d9acd61d97072b71f6d1968daef26bc744bd"}, - {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:67d3ccfc590e5e7197750fcb3a2915b416a53e2de847a728cfa60141054123d4"}, - {file = "regex-2023.12.25-cp311-cp311-win32.whl", hash = "sha256:68191f80a9bad283432385961d9efe09d783bcd36ed35a60fb1ff3f1ec2efe87"}, - {file = "regex-2023.12.25-cp311-cp311-win_amd64.whl", hash = "sha256:7d2af3f6b8419661a0c421584cfe8aaec1c0e435ce7e47ee2a97e344b98f794f"}, - {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8a0ccf52bb37d1a700375a6b395bff5dd15c50acb745f7db30415bae3c2b0715"}, - {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c3c4a78615b7762740531c27cf46e2f388d8d727d0c0c739e72048beb26c8a9d"}, - {file = "regex-2023.12.25-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ad83e7545b4ab69216cef4cc47e344d19622e28aabec61574b20257c65466d6a"}, - {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7a635871143661feccce3979e1727c4e094f2bdfd3ec4b90dfd4f16f571a87a"}, - {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d498eea3f581fbe1b34b59c697512a8baef88212f92e4c7830fcc1499f5b45a5"}, - {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:43f7cd5754d02a56ae4ebb91b33461dc67be8e3e0153f593c509e21d219c5060"}, - {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51f4b32f793812714fd5307222a7f77e739b9bc566dc94a18126aba3b92b98a3"}, - {file = "regex-2023.12.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba99d8077424501b9616b43a2d208095746fb1284fc5ba490139651f971d39d9"}, - {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4bfc2b16e3ba8850e0e262467275dd4d62f0d045e0e9eda2bc65078c0110a11f"}, - {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8c2c19dae8a3eb0ea45a8448356ed561be843b13cbc34b840922ddf565498c1c"}, - {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:60080bb3d8617d96f0fb7e19796384cc2467447ef1c491694850ebd3670bc457"}, - {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b77e27b79448e34c2c51c09836033056a0547aa360c45eeeb67803da7b0eedaf"}, - {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:518440c991f514331f4850a63560321f833979d145d7d81186dbe2f19e27ae3d"}, - {file = "regex-2023.12.25-cp312-cp312-win32.whl", hash = "sha256:e2610e9406d3b0073636a3a2e80db05a02f0c3169b5632022b4e81c0364bcda5"}, - {file = "regex-2023.12.25-cp312-cp312-win_amd64.whl", hash = "sha256:cc37b9aeebab425f11f27e5e9e6cf580be7206c6582a64467a14dda211abc232"}, - {file = "regex-2023.12.25-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:da695d75ac97cb1cd725adac136d25ca687da4536154cdc2815f576e4da11c69"}, - {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d126361607b33c4eb7b36debc173bf25d7805847346dd4d99b5499e1fef52bc7"}, - {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4719bb05094d7d8563a450cf8738d2e1061420f79cfcc1fa7f0a44744c4d8f73"}, - {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dd58946bce44b53b06d94aa95560d0b243eb2fe64227cba50017a8d8b3cd3e2"}, - {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22a86d9fff2009302c440b9d799ef2fe322416d2d58fc124b926aa89365ec482"}, - {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2aae8101919e8aa05ecfe6322b278f41ce2994c4a430303c4cd163fef746e04f"}, - {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e692296c4cc2873967771345a876bcfc1c547e8dd695c6b89342488b0ea55cd8"}, - {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:263ef5cc10979837f243950637fffb06e8daed7f1ac1e39d5910fd29929e489a"}, - {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d6f7e255e5fa94642a0724e35406e6cb7001c09d476ab5fce002f652b36d0c39"}, - {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:88ad44e220e22b63b0f8f81f007e8abbb92874d8ced66f32571ef8beb0643b2b"}, - {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:3a17d3ede18f9cedcbe23d2daa8a2cd6f59fe2bf082c567e43083bba3fb00347"}, - {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d15b274f9e15b1a0b7a45d2ac86d1f634d983ca40d6b886721626c47a400bf39"}, - {file = "regex-2023.12.25-cp37-cp37m-win32.whl", hash = "sha256:ed19b3a05ae0c97dd8f75a5d8f21f7723a8c33bbc555da6bbe1f96c470139d3c"}, - {file = "regex-2023.12.25-cp37-cp37m-win_amd64.whl", hash = "sha256:a6d1047952c0b8104a1d371f88f4ab62e6275567d4458c1e26e9627ad489b445"}, - {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b43523d7bc2abd757119dbfb38af91b5735eea45537ec6ec3a5ec3f9562a1c53"}, - {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:efb2d82f33b2212898f1659fb1c2e9ac30493ac41e4d53123da374c3b5541e64"}, - {file = "regex-2023.12.25-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7fca9205b59c1a3d5031f7e64ed627a1074730a51c2a80e97653e3e9fa0d415"}, - {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086dd15e9435b393ae06f96ab69ab2d333f5d65cbe65ca5a3ef0ec9564dfe770"}, - {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e81469f7d01efed9b53740aedd26085f20d49da65f9c1f41e822a33992cb1590"}, - {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34e4af5b27232f68042aa40a91c3b9bb4da0eeb31b7632e0091afc4310afe6cb"}, - {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9852b76ab558e45b20bf1893b59af64a28bd3820b0c2efc80e0a70a4a3ea51c1"}, - {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff100b203092af77d1a5a7abe085b3506b7eaaf9abf65b73b7d6905b6cb76988"}, - {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cc038b2d8b1470364b1888a98fd22d616fba2b6309c5b5f181ad4483e0017861"}, - {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:094ba386bb5c01e54e14434d4caabf6583334090865b23ef58e0424a6286d3dc"}, - {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5cd05d0f57846d8ba4b71d9c00f6f37d6b97d5e5ef8b3c3840426a475c8f70f4"}, - {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:9aa1a67bbf0f957bbe096375887b2505f5d8ae16bf04488e8b0f334c36e31360"}, - {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:98a2636994f943b871786c9e82bfe7883ecdaba2ef5df54e1450fa9869d1f756"}, - {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:37f8e93a81fc5e5bd8db7e10e62dc64261bcd88f8d7e6640aaebe9bc180d9ce2"}, - {file = "regex-2023.12.25-cp38-cp38-win32.whl", hash = "sha256:d78bd484930c1da2b9679290a41cdb25cc127d783768a0369d6b449e72f88beb"}, - {file = "regex-2023.12.25-cp38-cp38-win_amd64.whl", hash = "sha256:b521dcecebc5b978b447f0f69b5b7f3840eac454862270406a39837ffae4e697"}, - {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f7bc09bc9c29ebead055bcba136a67378f03d66bf359e87d0f7c759d6d4ffa31"}, - {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e14b73607d6231f3cc4622809c196b540a6a44e903bcfad940779c80dffa7be7"}, - {file = "regex-2023.12.25-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9eda5f7a50141291beda3edd00abc2d4a5b16c29c92daf8d5bd76934150f3edc"}, - {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc6bb9aa69aacf0f6032c307da718f61a40cf970849e471254e0e91c56ffca95"}, - {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:298dc6354d414bc921581be85695d18912bea163a8b23cac9a2562bbcd5088b1"}, - {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2f4e475a80ecbd15896a976aa0b386c5525d0ed34d5c600b6d3ebac0a67c7ddf"}, - {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:531ac6cf22b53e0696f8e1d56ce2396311254eb806111ddd3922c9d937151dae"}, - {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22f3470f7524b6da61e2020672df2f3063676aff444db1daa283c2ea4ed259d6"}, - {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:89723d2112697feaa320c9d351e5f5e7b841e83f8b143dba8e2d2b5f04e10923"}, - {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0ecf44ddf9171cd7566ef1768047f6e66975788258b1c6c6ca78098b95cf9a3d"}, - {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:905466ad1702ed4acfd67a902af50b8db1feeb9781436372261808df7a2a7bca"}, - {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:4558410b7a5607a645e9804a3e9dd509af12fb72b9825b13791a37cd417d73a5"}, - {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:7e316026cc1095f2a3e8cc012822c99f413b702eaa2ca5408a513609488cb62f"}, - {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3b1de218d5375cd6ac4b5493e0b9f3df2be331e86520f23382f216c137913d20"}, - {file = "regex-2023.12.25-cp39-cp39-win32.whl", hash = "sha256:11a963f8e25ab5c61348d090bf1b07f1953929c13bd2309a0662e9ff680763c9"}, - {file = "regex-2023.12.25-cp39-cp39-win_amd64.whl", hash = "sha256:e693e233ac92ba83a87024e1d32b5f9ab15ca55ddd916d878146f4e3406b5c91"}, - {file = "regex-2023.12.25.tar.gz", hash = "sha256:29171aa128da69afdf4bde412d5bedc335f2ca8fcfe4489038577d05f16181e5"}, + {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f"}, + {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6"}, + {file = "regex-2024.5.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53"}, + {file = "regex-2024.5.15-cp310-cp310-win32.whl", hash = "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3"}, + {file = "regex-2024.5.15-cp310-cp310-win_amd64.whl", hash = "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145"}, + {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a"}, + {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656"}, + {file = "regex-2024.5.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68"}, + {file = "regex-2024.5.15-cp311-cp311-win32.whl", hash = "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa"}, + {file = "regex-2024.5.15-cp311-cp311-win_amd64.whl", hash = "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201"}, + {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014"}, + {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e"}, + {file = "regex-2024.5.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80"}, + {file = "regex-2024.5.15-cp312-cp312-win32.whl", hash = "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe"}, + {file = "regex-2024.5.15-cp312-cp312-win_amd64.whl", hash = "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2"}, + {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835"}, + {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850"}, + {file = "regex-2024.5.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741"}, + {file = "regex-2024.5.15-cp38-cp38-win32.whl", hash = "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9"}, + {file = "regex-2024.5.15-cp38-cp38-win_amd64.whl", hash = "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569"}, + {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133"}, + {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1"}, + {file = "regex-2024.5.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456"}, + {file = "regex-2024.5.15-cp39-cp39-win32.whl", hash = "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694"}, + {file = "regex-2024.5.15-cp39-cp39-win_amd64.whl", hash = "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388"}, + {file = "regex-2024.5.15.tar.gz", hash = "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c"}, ] [[package]] name = "requests" -version = "2.31.0" +version = "2.32.3" description = "Python HTTP for Humans." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, - {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, + {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, + {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, ] [package.dependencies] @@ -4697,144 +4714,144 @@ test = ["dask", "netcdf4", "pytest (>=3.6)", "pytest-cov", "pytest-timeout"] [[package]] name = "rpds-py" -version = "0.18.0" +version = "0.19.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = true python-versions = ">=3.8" files = [ - {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, - {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, - {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01e36a39af54a30f28b73096dd39b6802eddd04c90dbe161c1b8dbe22353189f"}, - {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d62dec4976954a23d7f91f2f4530852b0c7608116c257833922a896101336c51"}, - {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd18772815d5f008fa03d2b9a681ae38d5ae9f0e599f7dda233c439fcaa00d40"}, - {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:923d39efa3cfb7279a0327e337a7958bff00cc447fd07a25cddb0a1cc9a6d2da"}, - {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39514da80f971362f9267c600b6d459bfbbc549cffc2cef8e47474fddc9b45b1"}, - {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a34d557a42aa28bd5c48a023c570219ba2593bcbbb8dc1b98d8cf5d529ab1434"}, - {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:93df1de2f7f7239dc9cc5a4a12408ee1598725036bd2dedadc14d94525192fc3"}, - {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:34b18ba135c687f4dac449aa5157d36e2cbb7c03cbea4ddbd88604e076aa836e"}, - {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0b5dcf9193625afd8ecc92312d6ed78781c46ecbf39af9ad4681fc9f464af88"}, - {file = "rpds_py-0.18.0-cp310-none-win32.whl", hash = "sha256:c4325ff0442a12113a6379af66978c3fe562f846763287ef66bdc1d57925d337"}, - {file = "rpds_py-0.18.0-cp310-none-win_amd64.whl", hash = "sha256:7223a2a5fe0d217e60a60cdae28d6949140dde9c3bcc714063c5b463065e3d66"}, - {file = "rpds_py-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3a96e0c6a41dcdba3a0a581bbf6c44bb863f27c541547fb4b9711fd8cf0ffad4"}, - {file = "rpds_py-0.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30f43887bbae0d49113cbaab729a112251a940e9b274536613097ab8b4899cf6"}, - {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcb25daa9219b4cf3a0ab24b0eb9a5cc8949ed4dc72acb8fa16b7e1681aa3c58"}, - {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d68c93e381010662ab873fea609bf6c0f428b6d0bb00f2c6939782e0818d37bf"}, - {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b34b7aa8b261c1dbf7720b5d6f01f38243e9b9daf7e6b8bc1fd4657000062f2c"}, - {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e6d75ab12b0bbab7215e5d40f1e5b738aa539598db27ef83b2ec46747df90e1"}, - {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8612cd233543a3781bc659c731b9d607de65890085098986dfd573fc2befe5"}, - {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aec493917dd45e3c69d00a8874e7cbed844efd935595ef78a0f25f14312e33c6"}, - {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:661d25cbffaf8cc42e971dd570d87cb29a665f49f4abe1f9e76be9a5182c4688"}, - {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1df3659d26f539ac74fb3b0c481cdf9d725386e3552c6fa2974f4d33d78e544b"}, - {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a1ce3ba137ed54f83e56fb983a5859a27d43a40188ba798993812fed73c70836"}, - {file = "rpds_py-0.18.0-cp311-none-win32.whl", hash = "sha256:69e64831e22a6b377772e7fb337533c365085b31619005802a79242fee620bc1"}, - {file = "rpds_py-0.18.0-cp311-none-win_amd64.whl", hash = "sha256:998e33ad22dc7ec7e030b3df701c43630b5bc0d8fbc2267653577e3fec279afa"}, - {file = "rpds_py-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7f2facbd386dd60cbbf1a794181e6aa0bd429bd78bfdf775436020172e2a23f0"}, - {file = "rpds_py-0.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d9a5be316c15ffb2b3c405c4ff14448c36b4435be062a7f578ccd8b01f0c4d8"}, - {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd5bf1af8efe569654bbef5a3e0a56eca45f87cfcffab31dd8dde70da5982475"}, - {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5417558f6887e9b6b65b4527232553c139b57ec42c64570569b155262ac0754f"}, - {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:56a737287efecafc16f6d067c2ea0117abadcd078d58721f967952db329a3e5c"}, - {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f03bccbd8586e9dd37219bce4d4e0d3ab492e6b3b533e973fa08a112cb2ffc9"}, - {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4457a94da0d5c53dc4b3e4de1158bdab077db23c53232f37a3cb7afdb053a4e3"}, - {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ab39c1ba9023914297dd88ec3b3b3c3f33671baeb6acf82ad7ce883f6e8e157"}, - {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9d54553c1136b50fd12cc17e5b11ad07374c316df307e4cfd6441bea5fb68496"}, - {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0af039631b6de0397ab2ba16eaf2872e9f8fca391b44d3d8cac317860a700a3f"}, - {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84ffab12db93b5f6bad84c712c92060a2d321b35c3c9960b43d08d0f639d60d7"}, - {file = "rpds_py-0.18.0-cp312-none-win32.whl", hash = "sha256:685537e07897f173abcf67258bee3c05c374fa6fff89d4c7e42fb391b0605e98"}, - {file = "rpds_py-0.18.0-cp312-none-win_amd64.whl", hash = "sha256:e003b002ec72c8d5a3e3da2989c7d6065b47d9eaa70cd8808b5384fbb970f4ec"}, - {file = "rpds_py-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:08f9ad53c3f31dfb4baa00da22f1e862900f45908383c062c27628754af2e88e"}, - {file = "rpds_py-0.18.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c0013fe6b46aa496a6749c77e00a3eb07952832ad6166bd481c74bda0dcb6d58"}, - {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e32a92116d4f2a80b629778280103d2a510a5b3f6314ceccd6e38006b5e92dcb"}, - {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e541ec6f2ec456934fd279a3120f856cd0aedd209fc3852eca563f81738f6861"}, - {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bed88b9a458e354014d662d47e7a5baafd7ff81c780fd91584a10d6ec842cb73"}, - {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2644e47de560eb7bd55c20fc59f6daa04682655c58d08185a9b95c1970fa1e07"}, - {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e8916ae4c720529e18afa0b879473049e95949bf97042e938530e072fde061d"}, - {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:465a3eb5659338cf2a9243e50ad9b2296fa15061736d6e26240e713522b6235c"}, - {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ea7d4a99f3b38c37eac212dbd6ec42b7a5ec51e2c74b5d3223e43c811609e65f"}, - {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:67071a6171e92b6da534b8ae326505f7c18022c6f19072a81dcf40db2638767c"}, - {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:41ef53e7c58aa4ef281da975f62c258950f54b76ec8e45941e93a3d1d8580594"}, - {file = "rpds_py-0.18.0-cp38-none-win32.whl", hash = "sha256:fdea4952db2793c4ad0bdccd27c1d8fdd1423a92f04598bc39425bcc2b8ee46e"}, - {file = "rpds_py-0.18.0-cp38-none-win_amd64.whl", hash = "sha256:7cd863afe7336c62ec78d7d1349a2f34c007a3cc6c2369d667c65aeec412a5b1"}, - {file = "rpds_py-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5307def11a35f5ae4581a0b658b0af8178c65c530e94893345bebf41cc139d33"}, - {file = "rpds_py-0.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:77f195baa60a54ef9d2de16fbbfd3ff8b04edc0c0140a761b56c267ac11aa467"}, - {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39f5441553f1c2aed4de4377178ad8ff8f9d733723d6c66d983d75341de265ab"}, - {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a00312dea9310d4cb7dbd7787e722d2e86a95c2db92fbd7d0155f97127bcb40"}, - {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f2fc11e8fe034ee3c34d316d0ad8808f45bc3b9ce5857ff29d513f3ff2923a1"}, - {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:586f8204935b9ec884500498ccc91aa869fc652c40c093bd9e1471fbcc25c022"}, - {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddc2f4dfd396c7bfa18e6ce371cba60e4cf9d2e5cdb71376aa2da264605b60b9"}, - {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ddcba87675b6d509139d1b521e0c8250e967e63b5909a7e8f8944d0f90ff36f"}, - {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7bd339195d84439cbe5771546fe8a4e8a7a045417d8f9de9a368c434e42a721e"}, - {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:d7c36232a90d4755b720fbd76739d8891732b18cf240a9c645d75f00639a9024"}, - {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6b0817e34942b2ca527b0e9298373e7cc75f429e8da2055607f4931fded23e20"}, - {file = "rpds_py-0.18.0-cp39-none-win32.whl", hash = "sha256:99f70b740dc04d09e6b2699b675874367885217a2e9f782bdf5395632ac663b7"}, - {file = "rpds_py-0.18.0-cp39-none-win_amd64.whl", hash = "sha256:6ef687afab047554a2d366e112dd187b62d261d49eb79b77e386f94644363294"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ad36cfb355e24f1bd37cac88c112cd7730873f20fb0bdaf8ba59eedf8216079f"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:36b3ee798c58ace201289024b52788161e1ea133e4ac93fba7d49da5fec0ef9e"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8a2f084546cc59ea99fda8e070be2fd140c3092dc11524a71aa8f0f3d5a55ca"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e4461d0f003a0aa9be2bdd1b798a041f177189c1a0f7619fe8c95ad08d9a45d7"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8db715ebe3bb7d86d77ac1826f7d67ec11a70dbd2376b7cc214199360517b641"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:793968759cd0d96cac1e367afd70c235867831983f876a53389ad869b043c948"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66e6a3af5a75363d2c9a48b07cb27c4ea542938b1a2e93b15a503cdfa8490795"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ef0befbb5d79cf32d0266f5cff01545602344eda89480e1dd88aca964260b18"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d4acf42190d449d5e89654d5c1ed3a4f17925eec71f05e2a41414689cda02d1"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a5f446dd5055667aabaee78487f2b5ab72e244f9bc0b2ffebfeec79051679984"}, - {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9dbbeb27f4e70bfd9eec1be5477517365afe05a9b2c441a0b21929ee61048124"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:22806714311a69fd0af9b35b7be97c18a0fc2826e6827dbb3a8c94eac6cf7eeb"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b34ae4636dfc4e76a438ab826a0d1eed2589ca7d9a1b2d5bb546978ac6485461"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c8370641f1a7f0e0669ddccca22f1da893cef7628396431eb445d46d893e5cd"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c8362467a0fdeccd47935f22c256bec5e6abe543bf0d66e3d3d57a8fb5731863"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11a8c85ef4a07a7638180bf04fe189d12757c696eb41f310d2426895356dcf05"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b316144e85316da2723f9d8dc75bada12fa58489a527091fa1d5a612643d1a0e"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf1ea2e34868f6fbf070e1af291c8180480310173de0b0c43fc38a02929fc0e3"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e546e768d08ad55b20b11dbb78a745151acbd938f8f00d0cfbabe8b0199b9880"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4901165d170a5fde6f589acb90a6b33629ad1ec976d4529e769c6f3d885e3e80"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:618a3d6cae6ef8ec88bb76dd80b83cfe415ad4f1d942ca2a903bf6b6ff97a2da"}, - {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ed4eb745efbff0a8e9587d22a84be94a5eb7d2d99c02dacf7bd0911713ed14dd"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c81e5f372cd0dc5dc4809553d34f832f60a46034a5f187756d9b90586c2c307"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:43fbac5f22e25bee1d482c97474f930a353542855f05c1161fd804c9dc74a09d"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d7faa6f14017c0b1e69f5e2c357b998731ea75a442ab3841c0dbbbfe902d2c4"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:08231ac30a842bd04daabc4d71fddd7e6d26189406d5a69535638e4dcb88fe76"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:044a3e61a7c2dafacae99d1e722cc2d4c05280790ec5a05031b3876809d89a5c"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f26b5bd1079acdb0c7a5645e350fe54d16b17bfc5e71f371c449383d3342e17"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:482103aed1dfe2f3b71a58eff35ba105289b8d862551ea576bd15479aba01f66"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1374f4129f9bcca53a1bba0bb86bf78325a0374577cf7e9e4cd046b1e6f20e24"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:635dc434ff724b178cb192c70016cc0ad25a275228f749ee0daf0eddbc8183b1"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:bc362ee4e314870a70f4ae88772d72d877246537d9f8cb8f7eacf10884862432"}, - {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4832d7d380477521a8c1644bbab6588dfedea5e30a7d967b5fb75977c45fd77f"}, - {file = "rpds_py-0.18.0.tar.gz", hash = "sha256:42821446ee7a76f5d9f71f9e33a4fb2ffd724bb3e7f93386150b61a43115788d"}, + {file = "rpds_py-0.19.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:fb37bd599f031f1a6fb9e58ec62864ccf3ad549cf14bac527dbfa97123edcca4"}, + {file = "rpds_py-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3384d278df99ec2c6acf701d067147320b864ef6727405d6470838476e44d9e8"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54548e0be3ac117595408fd4ca0ac9278fde89829b0b518be92863b17ff67a2"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8eb488ef928cdbc05a27245e52de73c0d7c72a34240ef4d9893fdf65a8c1a955"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5da93debdfe27b2bfc69eefb592e1831d957b9535e0943a0ee8b97996de21b5"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79e205c70afddd41f6ee79a8656aec738492a550247a7af697d5bd1aee14f766"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:959179efb3e4a27610e8d54d667c02a9feaa86bbabaf63efa7faa4dfa780d4f1"}, + {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6e605bb9edcf010f54f8b6a590dd23a4b40a8cb141255eec2a03db249bc915b"}, + {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9133d75dc119a61d1a0ded38fb9ba40a00ef41697cc07adb6ae098c875195a3f"}, + {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd36b712d35e757e28bf2f40a71e8f8a2d43c8b026d881aa0c617b450d6865c9"}, + {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354f3a91718489912f2e0fc331c24eaaf6a4565c080e00fbedb6015857c00582"}, + {file = "rpds_py-0.19.0-cp310-none-win32.whl", hash = "sha256:ebcbf356bf5c51afc3290e491d3722b26aaf5b6af3c1c7f6a1b757828a46e336"}, + {file = "rpds_py-0.19.0-cp310-none-win_amd64.whl", hash = "sha256:75a6076289b2df6c8ecb9d13ff79ae0cad1d5fb40af377a5021016d58cd691ec"}, + {file = "rpds_py-0.19.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6d45080095e585f8c5097897313def60caa2046da202cdb17a01f147fb263b81"}, + {file = "rpds_py-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5c9581019c96f865483d031691a5ff1cc455feb4d84fc6920a5ffc48a794d8a"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1540d807364c84516417115c38f0119dfec5ea5c0dd9a25332dea60b1d26fc4d"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e65489222b410f79711dc3d2d5003d2757e30874096b2008d50329ea4d0f88c"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da6f400eeb8c36f72ef6646ea530d6d175a4f77ff2ed8dfd6352842274c1d8b"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f46bb11858717e0efa7893c0f7055c43b44c103e40e69442db5061cb26ed34"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:071d4adc734de562bd11d43bd134330fb6249769b2f66b9310dab7460f4bf714"}, + {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9625367c8955e4319049113ea4f8fee0c6c1145192d57946c6ffcd8fe8bf48dd"}, + {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e19509145275d46bc4d1e16af0b57a12d227c8253655a46bbd5ec317e941279d"}, + {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d438e4c020d8c39961deaf58f6913b1bf8832d9b6f62ec35bd93e97807e9cbc"}, + {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90bf55d9d139e5d127193170f38c584ed3c79e16638890d2e36f23aa1630b952"}, + {file = "rpds_py-0.19.0-cp311-none-win32.whl", hash = "sha256:8d6ad132b1bc13d05ffe5b85e7a01a3998bf3a6302ba594b28d61b8c2cf13aaf"}, + {file = "rpds_py-0.19.0-cp311-none-win_amd64.whl", hash = "sha256:7ec72df7354e6b7f6eb2a17fa6901350018c3a9ad78e48d7b2b54d0412539a67"}, + {file = "rpds_py-0.19.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5095a7c838a8647c32aa37c3a460d2c48debff7fc26e1136aee60100a8cd8f68"}, + {file = "rpds_py-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f2f78ef14077e08856e788fa482107aa602636c16c25bdf59c22ea525a785e9"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7cc6cb44f8636fbf4a934ca72f3e786ba3c9f9ba4f4d74611e7da80684e48d2"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf902878b4af334a09de7a45badbff0389e7cf8dc2e4dcf5f07125d0b7c2656d"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:688aa6b8aa724db1596514751ffb767766e02e5c4a87486ab36b8e1ebc1aedac"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57dbc9167d48e355e2569346b5aa4077f29bf86389c924df25c0a8b9124461fb"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4cf5a9497874822341c2ebe0d5850fed392034caadc0bad134ab6822c0925b"}, + {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a790d235b9d39c70a466200d506bb33a98e2ee374a9b4eec7a8ac64c2c261fa"}, + {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d16089dfa58719c98a1c06f2daceba6d8e3fb9b5d7931af4a990a3c486241cb"}, + {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bc9128e74fe94650367fe23f37074f121b9f796cabbd2f928f13e9661837296d"}, + {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8f77e661ffd96ff104bebf7d0f3255b02aa5d5b28326f5408d6284c4a8b3248"}, + {file = "rpds_py-0.19.0-cp312-none-win32.whl", hash = "sha256:5f83689a38e76969327e9b682be5521d87a0c9e5a2e187d2bc6be4765f0d4600"}, + {file = "rpds_py-0.19.0-cp312-none-win_amd64.whl", hash = "sha256:06925c50f86da0596b9c3c64c3837b2481337b83ef3519e5db2701df695453a4"}, + {file = "rpds_py-0.19.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:52e466bea6f8f3a44b1234570244b1cff45150f59a4acae3fcc5fd700c2993ca"}, + {file = "rpds_py-0.19.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e21cc693045fda7f745c790cb687958161ce172ffe3c5719ca1764e752237d16"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b31f059878eb1f5da8b2fd82480cc18bed8dcd7fb8fe68370e2e6285fa86da6"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dd46f309e953927dd018567d6a9e2fb84783963650171f6c5fe7e5c41fd5666"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a01a4490e170376cd79258b7f755fa13b1a6c3667e872c8e35051ae857a92b"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcf426a8c38eb57f7bf28932e68425ba86def6e756a5b8cb4731d8e62e4e0223"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68eea5df6347d3f1378ce992d86b2af16ad7ff4dcb4a19ccdc23dea901b87fb"}, + {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dab8d921b55a28287733263c0e4c7db11b3ee22aee158a4de09f13c93283c62d"}, + {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6fe87efd7f47266dfc42fe76dae89060038f1d9cb911f89ae7e5084148d1cc08"}, + {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:535d4b52524a961d220875688159277f0e9eeeda0ac45e766092bfb54437543f"}, + {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8b1a94b8afc154fbe36978a511a1f155f9bd97664e4f1f7a374d72e180ceb0ae"}, + {file = "rpds_py-0.19.0-cp38-none-win32.whl", hash = "sha256:7c98298a15d6b90c8f6e3caa6457f4f022423caa5fa1a1ca7a5e9e512bdb77a4"}, + {file = "rpds_py-0.19.0-cp38-none-win_amd64.whl", hash = "sha256:b0da31853ab6e58a11db3205729133ce0df26e6804e93079dee095be3d681dc1"}, + {file = "rpds_py-0.19.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5039e3cef7b3e7a060de468a4a60a60a1f31786da94c6cb054e7a3c75906111c"}, + {file = "rpds_py-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab1932ca6cb8c7499a4d87cb21ccc0d3326f172cfb6a64021a889b591bb3045c"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2afd2164a1e85226fcb6a1da77a5c8896c18bfe08e82e8ceced5181c42d2179"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b1c30841f5040de47a0046c243fc1b44ddc87d1b12435a43b8edff7e7cb1e0d0"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f757f359f30ec7dcebca662a6bd46d1098f8b9fb1fcd661a9e13f2e8ce343ba1"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15e65395a59d2e0e96caf8ee5389ffb4604e980479c32742936ddd7ade914b22"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb0f6eb3a320f24b94d177e62f4074ff438f2ad9d27e75a46221904ef21a7b05"}, + {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b228e693a2559888790936e20f5f88b6e9f8162c681830eda303bad7517b4d5a"}, + {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2575efaa5d949c9f4e2cdbe7d805d02122c16065bfb8d95c129372d65a291a0b"}, + {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5c872814b77a4e84afa293a1bee08c14daed1068b2bb1cc312edbf020bbbca2b"}, + {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:850720e1b383df199b8433a20e02b25b72f0fded28bc03c5bd79e2ce7ef050be"}, + {file = "rpds_py-0.19.0-cp39-none-win32.whl", hash = "sha256:ce84a7efa5af9f54c0aa7692c45861c1667080814286cacb9958c07fc50294fb"}, + {file = "rpds_py-0.19.0-cp39-none-win_amd64.whl", hash = "sha256:1c26da90b8d06227d7769f34915913911222d24ce08c0ab2d60b354e2d9c7aff"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:75969cf900d7be665ccb1622a9aba225cf386bbc9c3bcfeeab9f62b5048f4a07"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8445f23f13339da640d1be8e44e5baf4af97e396882ebbf1692aecd67f67c479"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5a7c1062ef8aea3eda149f08120f10795835fc1c8bc6ad948fb9652a113ca55"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:462b0c18fbb48fdbf980914a02ee38c423a25fcc4cf40f66bacc95a2d2d73bc8"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3208f9aea18991ac7f2b39721e947bbd752a1abbe79ad90d9b6a84a74d44409b"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3444fe52b82f122d8a99bf66777aed6b858d392b12f4c317da19f8234db4533"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb4bac7185a9f0168d38c01d7a00addece9822a52870eee26b8d5b61409213"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b130bd4163c93798a6b9bb96be64a7c43e1cec81126ffa7ffaa106e1fc5cef5"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a707b158b4410aefb6b054715545bbb21aaa5d5d0080217290131c49c2124a6e"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dc9ac4659456bde7c567107556ab065801622396b435a3ff213daef27b495388"}, + {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:81ea573aa46d3b6b3d890cd3c0ad82105985e6058a4baed03cf92518081eec8c"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3f148c3f47f7f29a79c38cc5d020edcb5ca780020fab94dbc21f9af95c463581"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0906357f90784a66e89ae3eadc2654f36c580a7d65cf63e6a616e4aec3a81be"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f629ecc2db6a4736b5ba95a8347b0089240d69ad14ac364f557d52ad68cf94b0"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6feacd1d178c30e5bc37184526e56740342fd2aa6371a28367bad7908d454fc"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b6068ee374fdfab63689be0963333aa83b0815ead5d8648389a8ded593378"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d57546bad81e0da13263e4c9ce30e96dcbe720dbff5ada08d2600a3502e526"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6683a37338818646af718c9ca2a07f89787551057fae57c4ec0446dc6224b"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e8481b946792415adc07410420d6fc65a352b45d347b78fec45d8f8f0d7496f0"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bec35eb20792ea64c3c57891bc3ca0bedb2884fbac2c8249d9b731447ecde4fa"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:aa5476c3e3a402c37779e95f7b4048db2cb5b0ed0b9d006983965e93f40fe05a"}, + {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:19d02c45f2507b489fd4df7b827940f1420480b3e2e471e952af4d44a1ea8e34"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3e2fd14c5d49ee1da322672375963f19f32b3d5953f0615b175ff7b9d38daed"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:93a91c2640645303e874eada51f4f33351b84b351a689d470f8108d0e0694210"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b9fc03bf76a94065299d4a2ecd8dfbae4ae8e2e8098bbfa6ab6413ca267709"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5a4b07cdf3f84310c08c1de2c12ddadbb7a77568bcb16e95489f9c81074322ed"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba0ed0dc6763d8bd6e5de5cf0d746d28e706a10b615ea382ac0ab17bb7388633"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:474bc83233abdcf2124ed3f66230a1c8435896046caa4b0b5ab6013c640803cc"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329c719d31362355a96b435f4653e3b4b061fcc9eba9f91dd40804ca637d914e"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef9101f3f7b59043a34f1dccbb385ca760467590951952d6701df0da9893ca0c"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0121803b0f424ee2109d6e1f27db45b166ebaa4b32ff47d6aa225642636cd834"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8344127403dea42f5970adccf6c5957a71a47f522171fafaf4c6ddb41b61703a"}, + {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:443cec402ddd650bb2b885113e1dcedb22b1175c6be223b14246a714b61cd521"}, + {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, ] [[package]] name = "scipy" -version = "1.13.0" +version = "1.13.1" description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.9" files = [ - {file = "scipy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba419578ab343a4e0a77c0ef82f088238a93eef141b2b8017e46149776dfad4d"}, - {file = "scipy-1.13.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:22789b56a999265431c417d462e5b7f2b487e831ca7bef5edeb56efe4c93f86e"}, - {file = "scipy-1.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f1432ba070e90d42d7fd836462c50bf98bd08bed0aa616c359eed8a04e3922"}, - {file = "scipy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8434f6f3fa49f631fae84afee424e2483289dfc30a47755b4b4e6b07b2633a4"}, - {file = "scipy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:dcbb9ea49b0167de4167c40eeee6e167caeef11effb0670b554d10b1e693a8b9"}, - {file = "scipy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:1d2f7bb14c178f8b13ebae93f67e42b0a6b0fc50eba1cd8021c9b6e08e8fb1cd"}, - {file = "scipy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fbcf8abaf5aa2dc8d6400566c1a727aed338b5fe880cde64907596a89d576fa"}, - {file = "scipy-1.13.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5e4a756355522eb60fcd61f8372ac2549073c8788f6114449b37e9e8104f15a5"}, - {file = "scipy-1.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5acd8e1dbd8dbe38d0004b1497019b2dbbc3d70691e65d69615f8a7292865d7"}, - {file = "scipy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ff7dad5d24a8045d836671e082a490848e8639cabb3dbdacb29f943a678683d"}, - {file = "scipy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4dca18c3ffee287ddd3bc8f1dabaf45f5305c5afc9f8ab9cbfab855e70b2df5c"}, - {file = "scipy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:a2f471de4d01200718b2b8927f7d76b5d9bde18047ea0fa8bd15c5ba3f26a1d6"}, - {file = "scipy-1.13.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d0de696f589681c2802f9090fff730c218f7c51ff49bf252b6a97ec4a5d19e8b"}, - {file = "scipy-1.13.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:b2a3ff461ec4756b7e8e42e1c681077349a038f0686132d623fa404c0bee2551"}, - {file = "scipy-1.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bf9fe63e7a4bf01d3645b13ff2aa6dea023d38993f42aaac81a18b1bda7a82a"}, - {file = "scipy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e7626dfd91cdea5714f343ce1176b6c4745155d234f1033584154f60ef1ff42"}, - {file = "scipy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:109d391d720fcebf2fbe008621952b08e52907cf4c8c7efc7376822151820820"}, - {file = "scipy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:8930ae3ea371d6b91c203b1032b9600d69c568e537b7988a3073dfe4d4774f21"}, - {file = "scipy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5407708195cb38d70fd2d6bb04b1b9dd5c92297d86e9f9daae1576bd9e06f602"}, - {file = "scipy-1.13.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:ac38c4c92951ac0f729c4c48c9e13eb3675d9986cc0c83943784d7390d540c78"}, - {file = "scipy-1.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09c74543c4fbeb67af6ce457f6a6a28e5d3739a87f62412e4a16e46f164f0ae5"}, - {file = "scipy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28e286bf9ac422d6beb559bc61312c348ca9b0f0dae0d7c5afde7f722d6ea13d"}, - {file = "scipy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:33fde20efc380bd23a78a4d26d59fc8704e9b5fd9b08841693eb46716ba13d86"}, - {file = "scipy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:45c08bec71d3546d606989ba6e7daa6f0992918171e2a6f7fbedfa7361c2de1e"}, - {file = "scipy-1.13.0.tar.gz", hash = "sha256:58569af537ea29d3f78e5abd18398459f195546bb3be23d16677fb26616cc11e"}, + {file = "scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca"}, + {file = "scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f"}, + {file = "scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989"}, + {file = "scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f"}, + {file = "scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94"}, + {file = "scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54"}, + {file = "scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9"}, + {file = "scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326"}, + {file = "scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299"}, + {file = "scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa"}, + {file = "scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59"}, + {file = "scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b"}, + {file = "scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1"}, + {file = "scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d"}, + {file = "scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627"}, + {file = "scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884"}, + {file = "scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16"}, + {file = "scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949"}, + {file = "scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5"}, + {file = "scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24"}, + {file = "scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004"}, + {file = "scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d"}, + {file = "scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c"}, + {file = "scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2"}, + {file = "scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c"}, ] [package.dependencies] @@ -4847,12 +4864,12 @@ test = ["array-api-strict", "asv", "gmpy2", "hypothesis (>=6.30)", "mpmath", "po [[package]] name = "searvey" -version = "0.3.11" +version = "0.3.13" description = "Sea state observational data retrieval" optional = false -python-versions = ">=3.9,<4.0" +python-versions = "<4.0,>=3.9" files = [ - {file = "searvey-0.3.11-py3-none-any.whl", hash = "sha256:ccb2199fe70c8ba8d92d84db7fe452163c156f8967c5d3c7ab646549975ff48b"}, + {file = "searvey-0.3.13-py3-none-any.whl", hash = "sha256:8c699f993d07bdacef16f7218a455c047a2f636aad6cc1fe645a8ac69e52e1f1"}, ] [package.dependencies] @@ -4862,7 +4879,7 @@ erddapy = "*" geopandas = "*" html5lib = "*" limits = "*" -lxml = "*" +lxml = {version = "*", extras = ["html-clean"]} numpy = "*" pandas = "*" pydantic = ">2" @@ -4890,72 +4907,66 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "69.2.0" +version = "70.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-69.2.0-py3-none-any.whl", hash = "sha256:c21c49fb1042386df081cb5d86759792ab89efca84cf114889191cd09aacc80c"}, - {file = "setuptools-69.2.0.tar.gz", hash = "sha256:0ff4183f8f42cd8fa3acea16c45205521a4ef28f73c6391d8a25e92893134f2e"}, + {file = "setuptools-70.3.0-py3-none-any.whl", hash = "sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc"}, + {file = "setuptools-70.3.0.tar.gz", hash = "sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.2)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "shapely" -version = "2.0.3" +version = "2.0.5" description = "Manipulation and analysis of geometric objects" optional = false python-versions = ">=3.7" files = [ - {file = "shapely-2.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:af7e9abe180b189431b0f490638281b43b84a33a960620e6b2e8d3e3458b61a1"}, - {file = "shapely-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:98040462b36ced9671e266b95c326b97f41290d9d17504a1ee4dc313a7667b9c"}, - {file = "shapely-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:71eb736ef2843f23473c6e37f6180f90f0a35d740ab284321548edf4e55d9a52"}, - {file = "shapely-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:881eb9dbbb4a6419667e91fcb20313bfc1e67f53dbb392c6840ff04793571ed1"}, - {file = "shapely-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f10d2ccf0554fc0e39fad5886c839e47e207f99fdf09547bc687a2330efda35b"}, - {file = "shapely-2.0.3-cp310-cp310-win32.whl", hash = "sha256:6dfdc077a6fcaf74d3eab23a1ace5abc50c8bce56ac7747d25eab582c5a2990e"}, - {file = "shapely-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:64c5013dacd2d81b3bb12672098a0b2795c1bf8190cfc2980e380f5ef9d9e4d9"}, - {file = "shapely-2.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:56cee3e4e8159d6f2ce32e421445b8e23154fd02a0ac271d6a6c0b266a8e3cce"}, - {file = "shapely-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:619232c8276fded09527d2a9fd91a7885ff95c0ff9ecd5e3cb1e34fbb676e2ae"}, - {file = "shapely-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2a7d256db6f5b4b407dc0c98dd1b2fcf1c9c5814af9416e5498d0a2e4307a4b"}, - {file = "shapely-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e45f0c8cd4583647db3216d965d49363e6548c300c23fd7e57ce17a03f824034"}, - {file = "shapely-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13cb37d3826972a82748a450328fe02a931dcaed10e69a4d83cc20ba021bc85f"}, - {file = "shapely-2.0.3-cp311-cp311-win32.whl", hash = "sha256:9302d7011e3e376d25acd30d2d9e70d315d93f03cc748784af19b00988fc30b1"}, - {file = "shapely-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6b464f2666b13902835f201f50e835f2f153f37741db88f68c7f3b932d3505fa"}, - {file = "shapely-2.0.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e86e7cb8e331a4850e0c2a8b2d66dc08d7a7b301b8d1d34a13060e3a5b4b3b55"}, - {file = "shapely-2.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c91981c99ade980fc49e41a544629751a0ccd769f39794ae913e53b07b2f78b9"}, - {file = "shapely-2.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd45d456983dc60a42c4db437496d3f08a4201fbf662b69779f535eb969660af"}, - {file = "shapely-2.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:882fb1ffc7577e88c1194f4f1757e277dc484ba096a3b94844319873d14b0f2d"}, - {file = "shapely-2.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9f2d93bff2ea52fa93245798cddb479766a18510ea9b93a4fb9755c79474889"}, - {file = "shapely-2.0.3-cp312-cp312-win32.whl", hash = "sha256:99abad1fd1303b35d991703432c9481e3242b7b3a393c186cfb02373bf604004"}, - {file = "shapely-2.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:6f555fe3304a1f40398977789bc4fe3c28a11173196df9ece1e15c5bc75a48db"}, - {file = "shapely-2.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a983cc418c1fa160b7d797cfef0e0c9f8c6d5871e83eae2c5793fce6a837fad9"}, - {file = "shapely-2.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18bddb8c327f392189a8d5d6b9a858945722d0bb95ccbd6a077b8e8fc4c7890d"}, - {file = "shapely-2.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:442f4dcf1eb58c5a4e3428d88e988ae153f97ab69a9f24e07bf4af8038536325"}, - {file = "shapely-2.0.3-cp37-cp37m-win32.whl", hash = "sha256:31a40b6e3ab00a4fd3a1d44efb2482278642572b8e0451abdc8e0634b787173e"}, - {file = "shapely-2.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:59b16976c2473fec85ce65cc9239bef97d4205ab3acead4e6cdcc72aee535679"}, - {file = "shapely-2.0.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:705efbce1950a31a55b1daa9c6ae1c34f1296de71ca8427974ec2f27d57554e3"}, - {file = "shapely-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:601c5c0058a6192df704cb889439f64994708563f57f99574798721e9777a44b"}, - {file = "shapely-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f24ecbb90a45c962b3b60d8d9a387272ed50dc010bfe605f1d16dfc94772d8a1"}, - {file = "shapely-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8c2a2989222c6062f7a0656e16276c01bb308bc7e5d999e54bf4e294ce62e76"}, - {file = "shapely-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42bceb9bceb3710a774ce04908fda0f28b291323da2688f928b3f213373b5aee"}, - {file = "shapely-2.0.3-cp38-cp38-win32.whl", hash = "sha256:54d925c9a311e4d109ec25f6a54a8bd92cc03481a34ae1a6a92c1fe6729b7e01"}, - {file = "shapely-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:300d203b480a4589adefff4c4af0b13919cd6d760ba3cbb1e56275210f96f654"}, - {file = "shapely-2.0.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:083d026e97b6c1f4a9bd2a9171c7692461092ed5375218170d91705550eecfd5"}, - {file = "shapely-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:27b6e1910094d93e9627f2664121e0e35613262fc037051680a08270f6058daf"}, - {file = "shapely-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:71b2de56a9e8c0e5920ae5ddb23b923490557ac50cb0b7fa752761bf4851acde"}, - {file = "shapely-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d279e56bbb68d218d63f3efc80c819cedcceef0e64efbf058a1df89dc57201b"}, - {file = "shapely-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88566d01a30f0453f7d038db46bc83ce125e38e47c5f6bfd4c9c287010e9bf74"}, - {file = "shapely-2.0.3-cp39-cp39-win32.whl", hash = "sha256:58afbba12c42c6ed44c4270bc0e22f3dadff5656d711b0ad335c315e02d04707"}, - {file = "shapely-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:5026b30433a70911979d390009261b8c4021ff87c7c3cbd825e62bb2ffa181bc"}, - {file = "shapely-2.0.3.tar.gz", hash = "sha256:4d65d0aa7910af71efa72fd6447e02a8e5dd44da81a983de9d736d6e6ccbe674"}, + {file = "shapely-2.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:89d34787c44f77a7d37d55ae821f3a784fa33592b9d217a45053a93ade899375"}, + {file = "shapely-2.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:798090b426142df2c5258779c1d8d5734ec6942f778dab6c6c30cfe7f3bf64ff"}, + {file = "shapely-2.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45211276900c4790d6bfc6105cbf1030742da67594ea4161a9ce6812a6721e68"}, + {file = "shapely-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e119444bc27ca33e786772b81760f2028d930ac55dafe9bc50ef538b794a8e1"}, + {file = "shapely-2.0.5-cp310-cp310-win32.whl", hash = "sha256:9a4492a2b2ccbeaebf181e7310d2dfff4fdd505aef59d6cb0f217607cb042fb3"}, + {file = "shapely-2.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:1e5cb5ee72f1bc7ace737c9ecd30dc174a5295fae412972d3879bac2e82c8fae"}, + {file = "shapely-2.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5bbfb048a74cf273db9091ff3155d373020852805a37dfc846ab71dde4be93ec"}, + {file = "shapely-2.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93be600cbe2fbaa86c8eb70656369f2f7104cd231f0d6585c7d0aa555d6878b8"}, + {file = "shapely-2.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f8e71bb9a46814019f6644c4e2560a09d44b80100e46e371578f35eaaa9da1c"}, + {file = "shapely-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5251c28a29012e92de01d2e84f11637eb1d48184ee8f22e2df6c8c578d26760"}, + {file = "shapely-2.0.5-cp311-cp311-win32.whl", hash = "sha256:35110e80070d664781ec7955c7de557456b25727a0257b354830abb759bf8311"}, + {file = "shapely-2.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c6b78c0007a34ce7144f98b7418800e0a6a5d9a762f2244b00ea560525290c9"}, + {file = "shapely-2.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:03bd7b5fa5deb44795cc0a503999d10ae9d8a22df54ae8d4a4cd2e8a93466195"}, + {file = "shapely-2.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ff9521991ed9e201c2e923da014e766c1aa04771bc93e6fe97c27dcf0d40ace"}, + {file = "shapely-2.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b65365cfbf657604e50d15161ffcc68de5cdb22a601bbf7823540ab4918a98d"}, + {file = "shapely-2.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21f64e647a025b61b19585d2247137b3a38a35314ea68c66aaf507a1c03ef6fe"}, + {file = "shapely-2.0.5-cp312-cp312-win32.whl", hash = "sha256:3ac7dc1350700c139c956b03d9c3df49a5b34aaf91d024d1510a09717ea39199"}, + {file = "shapely-2.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:30e8737983c9d954cd17feb49eb169f02f1da49e24e5171122cf2c2b62d65c95"}, + {file = "shapely-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ff7731fea5face9ec08a861ed351734a79475631b7540ceb0b66fb9732a5f529"}, + {file = "shapely-2.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff9e520af0c5a578e174bca3c18713cd47a6c6a15b6cf1f50ac17dc8bb8db6a2"}, + {file = "shapely-2.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49b299b91557b04acb75e9732645428470825061f871a2edc36b9417d66c1fc5"}, + {file = "shapely-2.0.5-cp37-cp37m-win32.whl", hash = "sha256:b5870633f8e684bf6d1ae4df527ddcb6f3895f7b12bced5c13266ac04f47d231"}, + {file = "shapely-2.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:401cb794c5067598f50518e5a997e270cd7642c4992645479b915c503866abed"}, + {file = "shapely-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e91ee179af539100eb520281ba5394919067c6b51824e6ab132ad4b3b3e76dd0"}, + {file = "shapely-2.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8af6f7260f809c0862741ad08b1b89cb60c130ae30efab62320bbf4ee9cc71fa"}, + {file = "shapely-2.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5456dd522800306ba3faef77c5ba847ec30a0bd73ab087a25e0acdd4db2514f"}, + {file = "shapely-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b714a840402cde66fd7b663bb08cacb7211fa4412ea2a209688f671e0d0631fd"}, + {file = "shapely-2.0.5-cp38-cp38-win32.whl", hash = "sha256:7e8cf5c252fac1ea51b3162be2ec3faddedc82c256a1160fc0e8ddbec81b06d2"}, + {file = "shapely-2.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:4461509afdb15051e73ab178fae79974387f39c47ab635a7330d7fee02c68a3f"}, + {file = "shapely-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7545a39c55cad1562be302d74c74586f79e07b592df8ada56b79a209731c0219"}, + {file = "shapely-2.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4c83a36f12ec8dee2066946d98d4d841ab6512a6ed7eb742e026a64854019b5f"}, + {file = "shapely-2.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89e640c2cd37378480caf2eeda9a51be64201f01f786d127e78eaeff091ec897"}, + {file = "shapely-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06efe39beafde3a18a21dde169d32f315c57da962826a6d7d22630025200c5e6"}, + {file = "shapely-2.0.5-cp39-cp39-win32.whl", hash = "sha256:8203a8b2d44dcb366becbc8c3d553670320e4acf0616c39e218c9561dd738d92"}, + {file = "shapely-2.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:7fed9dbfbcfec2682d9a047b9699db8dcc890dfca857ecba872c42185fc9e64e"}, + {file = "shapely-2.0.5.tar.gz", hash = "sha256:bff2366bc786bfa6cb353d6b47d0443c570c32776612e527ee47b6df63fcfe32"}, ] [package.dependencies] -numpy = ">=1.14,<2" +numpy = ">=1.14,<3" [package.extras] docs = ["matplotlib", "numpydoc (==1.1.*)", "sphinx", "sphinx-book-theme", "sphinx-remove-toctrees"] @@ -5124,13 +5135,13 @@ typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] [[package]] name = "tinycss2" -version = "1.2.1" +version = "1.3.0" description = "A tiny CSS parser" optional = true -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tinycss2-1.2.1-py3-none-any.whl", hash = "sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847"}, - {file = "tinycss2-1.2.1.tar.gz", hash = "sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627"}, + {file = "tinycss2-1.3.0-py3-none-any.whl", hash = "sha256:54a8dbdffb334d536851be0226030e9505965bb2f30f21a4a82c55fb2a80fae7"}, + {file = "tinycss2-1.3.0.tar.gz", hash = "sha256:152f9acabd296a8375fbca5b84c961ff95971fcfc32e79550c8df8e29118c54d"}, ] [package.dependencies] @@ -5138,7 +5149,7 @@ webencodings = ">=0.4" [package.extras] doc = ["sphinx", "sphinx_rtd_theme"] -test = ["flake8", "isort", "pytest"] +test = ["pytest", "ruff"] [[package]] name = "tomli" @@ -5164,33 +5175,33 @@ files = [ [[package]] name = "tornado" -version = "6.4" +version = "6.4.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." optional = true -python-versions = ">= 3.8" +python-versions = ">=3.8" files = [ - {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"}, - {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"}, - {file = "tornado-6.4-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e"}, - {file = "tornado-6.4-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579"}, - {file = "tornado-6.4-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212"}, - {file = "tornado-6.4-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2"}, - {file = "tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78"}, - {file = "tornado-6.4-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f"}, - {file = "tornado-6.4-cp38-abi3-win32.whl", hash = "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052"}, - {file = "tornado-6.4-cp38-abi3-win_amd64.whl", hash = "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63"}, - {file = "tornado-6.4.tar.gz", hash = "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee"}, + {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"}, + {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"}, + {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"}, + {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"}, + {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"}, ] [[package]] name = "tqdm" -version = "4.66.2" +version = "4.66.4" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.2-py3-none-any.whl", hash = "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9"}, - {file = "tqdm-4.66.2.tar.gz", hash = "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531"}, + {file = "tqdm-4.66.4-py3-none-any.whl", hash = "sha256:b75ca56b413b030bc3f00af51fd2c1a1a5eac6a0c1cca83cbb37a5c52abce644"}, + {file = "tqdm-4.66.4.tar.gz", hash = "sha256:e4d936c9de8727928f3be6079590e97d9abfe8d39a590be678eb5919ffc186bb"}, ] [package.dependencies] @@ -5336,13 +5347,13 @@ test = ["numpy", "pandas", "pytest", "xarray"] [[package]] name = "typing-extensions" -version = "4.11.0" +version = "4.12.2" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.11.0-py3-none-any.whl", hash = "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a"}, - {file = "typing_extensions-4.11.0.tar.gz", hash = "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0"}, + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] [[package]] @@ -5372,13 +5383,13 @@ test = ["coverage", "pytest", "pytest-cov"] [[package]] name = "urllib3" -version = "2.2.1" +version = "2.2.2" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = ">=3.8" files = [ - {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, - {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, + {file = "urllib3-2.2.2-py3-none-any.whl", hash = "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472"}, + {file = "urllib3-2.2.2.tar.gz", hash = "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168"}, ] [package.extras] @@ -5389,36 +5400,36 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "vtk" -version = "9.3.0" +version = "9.3.1" description = "VTK is an open-source toolkit for 3D computer graphics, image processing, and visualization" optional = true python-versions = "*" files = [ - {file = "vtk-9.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7d3492cb6c52b23dc0c6e664938b8119254a77b5e3099106e2567ed0b6473162"}, - {file = "vtk-9.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e3f4e86bff7a4cd71bd6205bd18cf4b6ab70956ecf9cbd73e77a95b2210d98ef"}, - {file = "vtk-9.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a827fb5f05ab78b2cbad81f5d3a3d7065fa995cc907cecdfa7a7b76374130ef3"}, - {file = "vtk-9.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:2aae778297817335ddd6698b4c124c109d8ac476512691fe19446614ae43ba56"}, - {file = "vtk-9.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:a3cd59108b21f55b873a63878a0decec0a707bd960b59d5e15b37d1ad873590f"}, - {file = "vtk-9.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6d2bdd2c60f0fa5d1926c11b72d96dc23caf9ff41781bae76e48edd09fb8aa03"}, - {file = "vtk-9.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a02bf6067cae7abfd7f6b1330c69555b715be8ec71a3c8d6471af45a96e8e56"}, - {file = "vtk-9.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:ff0eedcde5821c023623f70951f2499e9d59e709e288b67a2e2334abafacc322"}, - {file = "vtk-9.3.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:94678fa0476e113500f3b99e9692b92b83a5b058caace7bac3b5f780b12b36ed"}, - {file = "vtk-9.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:371b96afca3ed41a0bf1cd80a42f4b906ca2f470a13df32f39b22a9169d996d7"}, - {file = "vtk-9.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cfa8d73acbab386b9d6ef8a1a01149fd096a21a23547f10bf0cf98d88300724"}, - {file = "vtk-9.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:75d27b73270a42923ebefd87a8522f7717618c36825b8058c4d3aa8e64d6145d"}, - {file = "vtk-9.3.0-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:6b4a6f9d4ae16a417edf3cd750da5cb87e9676d1db1da6a6772a9e492567a452"}, - {file = "vtk-9.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fbd3536979c177dd12f9365a1072e217d64503596add6986318d466aab565d51"}, - {file = "vtk-9.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:296f185482df591d7b2c2a734f3a68884352efd89cade37f3345ddc4dcb6e019"}, - {file = "vtk-9.3.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:9d5c837a4d865ec80752d8ca8ee719be8341af66601df0da94ee78ae0806bb4b"}, - {file = "vtk-9.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cdfb7e51a63ee2f06b1aa84e643f046b746116397a89cb50d20956731e88209"}, - {file = "vtk-9.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2902c8601ada0e653a4d34ebca0f17768fb559f05fe9f4502dcdda136d847a1e"}, - {file = "vtk-9.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:f0798c2ae607be930656347491c520945984ab657ab00804d159323962e97102"}, - {file = "vtk-9.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d92c9a70902da512dfbcd3f064f825b7b5b6d62edd197d3754549f7c0ff516"}, - {file = "vtk-9.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:17810f82aeee7143057fcb2d963245f57450800a7b913c5d66ed915f09740d3d"}, - {file = "vtk-9.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:7a564f31dbe514276abffb1d3204120ead15506a24ecaa2560009ba304896dae"}, - {file = "vtk-9.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3b22a0d03305160d6612da0a378759083ef7691d0f83f1b1496418777ee3a2a3"}, - {file = "vtk-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdd81c9904647ace8d13ad255d8e5293fb81be8125e1a139a707aaf9e6f0e9e2"}, - {file = "vtk-9.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:f0a44c926ba18fd9e2ad7c07ae0adabb4ca62af28c69c96bcbaa884e0b240249"}, + {file = "vtk-9.3.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:c41ed344b9cc90ee9dcfc5967815de272985647d0c8e0a57f0e8b4229bc1b0b9"}, + {file = "vtk-9.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84c04327becc4c4dfe1fb04248baa4b5c480f188a9d52f4b912b163d33622442"}, + {file = "vtk-9.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890aee533fc0caca70bd1c8a4026b0d7f877518f237cc976ed4fb509d5f1dd83"}, + {file = "vtk-9.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:b8feed5029486703f4f8f81d8544a30d1788de87dc3396e16a281c343e1ac1cc"}, + {file = "vtk-9.3.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:55e2df9e6993b959b482b79a6d68b8d46397b479d69738d41b1501396fcad50c"}, + {file = "vtk-9.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c977486b0e4d87cddb3f2c7c0710d1c86243cdd01286cbd036231143d8eb4f6e"}, + {file = "vtk-9.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8edc04e0f8b6719cfc769e575a777267d667f447d1948c62fa97fb756cd75bb"}, + {file = "vtk-9.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:59cc043f611e3eca2870cc50f27e67852a182857de322415e942bdc133594acd"}, + {file = "vtk-9.3.1-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:05a4b6e387a906e8c8d6844441f9200116e937069fcf81f43e2600f26eb046de"}, + {file = "vtk-9.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bdbefb1aef9599a0a0b8222c9582f26946732a93534e6ec37d4b8e2c524c627e"}, + {file = "vtk-9.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f728bb61f43fce850d622ced3b3d51b3116f767685ca4e4e0076f624e2d2307d"}, + {file = "vtk-9.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:685988e09070e06c8605886591698fd42d8225489509b6537a5046cd034cc93e"}, + {file = "vtk-9.3.1-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:7b8b8b77b903d5515f2fe551807a6b2ee3e7e3cd112174b184a921ab57352f1e"}, + {file = "vtk-9.3.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42684f38d8718b918fe1e4fee4e698d564b6daa16215c21811540c383e47dda2"}, + {file = "vtk-9.3.1-cp36-cp36m-win_amd64.whl", hash = "sha256:4a5de9f424647bc3c02e2d2882401eac8ecd33f1a5f18261dcc69e7a05915c14"}, + {file = "vtk-9.3.1-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:279da9aee0fda31ee975e97b7b23480b54ea3b12d24ad8260760a3ededc32fad"}, + {file = "vtk-9.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:102ac70e8dad0b111347f00ccef39aea1771f4f0381a4b0ff3f1ea6539e500c8"}, + {file = "vtk-9.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:ee95c741a1ec3dc223c8233b1b59c5735c8249d4a15ee0b6370e7b010188397e"}, + {file = "vtk-9.3.1-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:6adf4b812528a4658667602de8f023400c4381b8166f11b0ea8e0ab83c066539"}, + {file = "vtk-9.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaf90d0a797b5b7ada3fd0100c072dd146e674a2ccd25411036a4aca676f9101"}, + {file = "vtk-9.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:872e964c38dc1d969aaa29d10a5e56fd0324d61392e21dc044c679797fbdf0ef"}, + {file = "vtk-9.3.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:3ae62397364be3a40f89025fa844cbf38b422633c0dff1065d90eec74ca6facb"}, + {file = "vtk-9.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab96d6923fa37a202874cb8b8b4202d537bd4702bb151638d384e1966d877e3a"}, + {file = "vtk-9.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:592b303f96b4cf907df7914bbf8c1f374df382c70c1d0b4fa4bd32ac1f4365ce"}, + {file = "vtk-9.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:6dee68abcd15603ad8ef6cef21fb13e2996d520a16880780abc41eb409dbec0c"}, ] [package.dependencies] @@ -5430,40 +5441,43 @@ web = ["wslink (>=1.0.4)"] [[package]] name = "watchdog" -version = "4.0.0" +version = "4.0.1" description = "Filesystem events monitoring" optional = false python-versions = ">=3.8" files = [ - {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b"}, - {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b"}, - {file = "watchdog-4.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c"}, - {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b"}, - {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935"}, - {file = "watchdog-4.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b"}, - {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257"}, - {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19"}, - {file = "watchdog-4.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b"}, - {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85"}, - {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4"}, - {file = "watchdog-4.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605"}, - {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101"}, - {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca"}, - {file = "watchdog-4.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8"}, - {file = "watchdog-4.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b"}, - {file = "watchdog-4.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92"}, - {file = "watchdog-4.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87"}, - {file = "watchdog-4.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269"}, - {file = "watchdog-4.0.0-py3-none-win32.whl", hash = "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c"}, - {file = "watchdog-4.0.0-py3-none-win_amd64.whl", hash = "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245"}, - {file = "watchdog-4.0.0-py3-none-win_ia64.whl", hash = "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7"}, - {file = "watchdog-4.0.0.tar.gz", hash = "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"}, + {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"}, + {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"}, + {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"}, + {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"}, + {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"}, + {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"}, + {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"}, + {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"}, + {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"}, + {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"}, ] [package.extras] @@ -5508,13 +5522,13 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"] [[package]] name = "widgetsnbextension" -version = "3.6.6" +version = "3.6.7" description = "IPython HTML widgets for Jupyter" optional = true python-versions = "*" files = [ - {file = "widgetsnbextension-3.6.6-py2.py3-none-any.whl", hash = "sha256:e7fb9999845affc9024ecfbe0a824dd8e633403d027b28ceadab398b633ad51c"}, - {file = "widgetsnbextension-3.6.6.tar.gz", hash = "sha256:46f4e3cb2d451bbd6141a13696d6ba17c9b5f50645dca9cfd26fe9644d5a00e1"}, + {file = "widgetsnbextension-3.6.7-py2.py3-none-any.whl", hash = "sha256:8a36ee7a3c12e273522c15206ee2bc4d6aad46b1944b697024f6bef828139df3"}, + {file = "widgetsnbextension-3.6.7.tar.gz", hash = "sha256:7eca1116ad1d6ce69ea3fb0a113c7453cb7175a30fd387fb820a348243dd96fb"}, ] [package.dependencies] @@ -5601,48 +5615,48 @@ files = [ [[package]] name = "xarray" -version = "2024.3.0" +version = "2024.6.0" description = "N-D labeled arrays and datasets in Python" optional = false python-versions = ">=3.9" files = [ - {file = "xarray-2024.3.0-py3-none-any.whl", hash = "sha256:ca2bc4da2bf2e7879e15862a7a7c3fc76ad19f6a08931d030220cef39a29118d"}, - {file = "xarray-2024.3.0.tar.gz", hash = "sha256:5c1db19efdde61db7faedad8fc944f4e29698fb6fbd578d352668b63598bd1d8"}, + {file = "xarray-2024.6.0-py3-none-any.whl", hash = "sha256:721a7394e8ec3d592b2d8ebe21eed074ac077dc1bb1bd777ce00e41700b4866c"}, + {file = "xarray-2024.6.0.tar.gz", hash = "sha256:0b91e0bc4dc0296947947640fe31ec6e867ce258d2f7cbc10bedf4a6d68340c7"}, ] [package.dependencies] numpy = ">=1.23" -packaging = ">=22" -pandas = ">=1.5" +packaging = ">=23.1" +pandas = ">=2.0" [package.extras] accel = ["bottleneck", "flox", "numbagg", "opt-einsum", "scipy"] complete = ["xarray[accel,dev,io,parallel,viz]"] -dev = ["hypothesis", "pre-commit", "pytest", "pytest-cov", "pytest-env", "pytest-timeout", "pytest-xdist", "ruff", "xarray[complete]"] +dev = ["hypothesis", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-env", "pytest-timeout", "pytest-xdist", "ruff", "xarray[complete]"] io = ["cftime", "fsspec", "h5netcdf", "netCDF4", "pooch", "pydap", "scipy", "zarr"] parallel = ["dask[complete]"] viz = ["matplotlib", "nc-time-axis", "seaborn"] [[package]] name = "xyzservices" -version = "2024.4.0" +version = "2024.6.0" description = "Source of XYZ tiles providers" optional = true python-versions = ">=3.8" files = [ - {file = "xyzservices-2024.4.0-py3-none-any.whl", hash = "sha256:b83e48c5b776c9969fffcfff57b03d02b1b1cd6607a9d9c4e7f568b01ef47f4c"}, - {file = "xyzservices-2024.4.0.tar.gz", hash = "sha256:6a04f11487a6fb77d92a98984cd107fbd9157fd5e65f929add9c3d6e604ee88c"}, + {file = "xyzservices-2024.6.0-py3-none-any.whl", hash = "sha256:fecb2508f0f2b71c819aecf5df2c03cef001c56a4b49302e640f3b34710d25e4"}, + {file = "xyzservices-2024.6.0.tar.gz", hash = "sha256:58c1bdab4257d2551b9ef91cd48571f77b7c4d2bc45bf5e3c05ac97b3a4d7282"}, ] [[package]] name = "zarr" -version = "2.17.2" +version = "2.18.2" description = "An implementation of chunked, compressed, N-dimensional arrays for Python" optional = false python-versions = ">=3.9" files = [ - {file = "zarr-2.17.2-py3-none-any.whl", hash = "sha256:70d7cc07c24280c380ef80644151d136b7503b0d83c9f214e8000ddc0f57f69b"}, - {file = "zarr-2.17.2.tar.gz", hash = "sha256:2cbaa6cb4e342d45152d4a7a4b2013c337fcd3a8e7bc98253560180de60552ce"}, + {file = "zarr-2.18.2-py3-none-any.whl", hash = "sha256:a638754902f97efa99b406083fdc807a0e2ccf12a949117389d2a4ba9b05df38"}, + {file = "zarr-2.18.2.tar.gz", hash = "sha256:9bb393b8a0a38fb121dbb913b047d75db28de9890f6d644a217a73cf4ae74f47"}, ] [package.dependencies] @@ -5657,72 +5671,123 @@ jupyter = ["ipytree (>=0.2.2)", "ipywidgets (>=8.0.0)", "notebook"] [[package]] name = "zipp" -version = "3.18.1" +version = "3.19.2" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.18.1-py3-none-any.whl", hash = "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b"}, - {file = "zipp-3.18.1.tar.gz", hash = "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715"}, + {file = "zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"}, + {file = "zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] [[package]] name = "zstandard" -version = "0.22.0" +version = "0.23.0" description = "Zstandard bindings for Python" optional = true python-versions = ">=3.8" files = [ - {file = "zstandard-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:275df437ab03f8c033b8a2c181e51716c32d831082d93ce48002a5227ec93019"}, - {file = "zstandard-0.22.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ac9957bc6d2403c4772c890916bf181b2653640da98f32e04b96e4d6fb3252a"}, - {file = "zstandard-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe3390c538f12437b859d815040763abc728955a52ca6ff9c5d4ac707c4ad98e"}, - {file = "zstandard-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1958100b8a1cc3f27fa21071a55cb2ed32e9e5df4c3c6e661c193437f171cba2"}, - {file = "zstandard-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:93e1856c8313bc688d5df069e106a4bc962eef3d13372020cc6e3ebf5e045202"}, - {file = "zstandard-0.22.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1a90ba9a4c9c884bb876a14be2b1d216609385efb180393df40e5172e7ecf356"}, - {file = "zstandard-0.22.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3db41c5e49ef73641d5111554e1d1d3af106410a6c1fb52cf68912ba7a343a0d"}, - {file = "zstandard-0.22.0-cp310-cp310-win32.whl", hash = "sha256:d8593f8464fb64d58e8cb0b905b272d40184eac9a18d83cf8c10749c3eafcd7e"}, - {file = "zstandard-0.22.0-cp310-cp310-win_amd64.whl", hash = "sha256:f1a4b358947a65b94e2501ce3e078bbc929b039ede4679ddb0460829b12f7375"}, - {file = "zstandard-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:589402548251056878d2e7c8859286eb91bd841af117dbe4ab000e6450987e08"}, - {file = "zstandard-0.22.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a97079b955b00b732c6f280d5023e0eefe359045e8b83b08cf0333af9ec78f26"}, - {file = "zstandard-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:445b47bc32de69d990ad0f34da0e20f535914623d1e506e74d6bc5c9dc40bb09"}, - {file = "zstandard-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33591d59f4956c9812f8063eff2e2c0065bc02050837f152574069f5f9f17775"}, - {file = "zstandard-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:888196c9c8893a1e8ff5e89b8f894e7f4f0e64a5af4d8f3c410f0319128bb2f8"}, - {file = "zstandard-0.22.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:53866a9d8ab363271c9e80c7c2e9441814961d47f88c9bc3b248142c32141d94"}, - {file = "zstandard-0.22.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ac59d5d6910b220141c1737b79d4a5aa9e57466e7469a012ed42ce2d3995e88"}, - {file = "zstandard-0.22.0-cp311-cp311-win32.whl", hash = "sha256:2b11ea433db22e720758cba584c9d661077121fcf60ab43351950ded20283440"}, - {file = "zstandard-0.22.0-cp311-cp311-win_amd64.whl", hash = "sha256:11f0d1aab9516a497137b41e3d3ed4bbf7b2ee2abc79e5c8b010ad286d7464bd"}, - {file = "zstandard-0.22.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6c25b8eb733d4e741246151d895dd0308137532737f337411160ff69ca24f93a"}, - {file = "zstandard-0.22.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f9b2cde1cd1b2a10246dbc143ba49d942d14fb3d2b4bccf4618d475c65464912"}, - {file = "zstandard-0.22.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a88b7df61a292603e7cd662d92565d915796b094ffb3d206579aaebac6b85d5f"}, - {file = "zstandard-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:466e6ad8caefb589ed281c076deb6f0cd330e8bc13c5035854ffb9c2014b118c"}, - {file = "zstandard-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a1d67d0d53d2a138f9e29d8acdabe11310c185e36f0a848efa104d4e40b808e4"}, - {file = "zstandard-0.22.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:39b2853efc9403927f9065cc48c9980649462acbdf81cd4f0cb773af2fd734bc"}, - {file = "zstandard-0.22.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8a1b2effa96a5f019e72874969394edd393e2fbd6414a8208fea363a22803b45"}, - {file = "zstandard-0.22.0-cp312-cp312-win32.whl", hash = "sha256:88c5b4b47a8a138338a07fc94e2ba3b1535f69247670abfe422de4e0b344aae2"}, - {file = "zstandard-0.22.0-cp312-cp312-win_amd64.whl", hash = "sha256:de20a212ef3d00d609d0b22eb7cc798d5a69035e81839f549b538eff4105d01c"}, - {file = "zstandard-0.22.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d75f693bb4e92c335e0645e8845e553cd09dc91616412d1d4650da835b5449df"}, - {file = "zstandard-0.22.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:36a47636c3de227cd765e25a21dc5dace00539b82ddd99ee36abae38178eff9e"}, - {file = "zstandard-0.22.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68953dc84b244b053c0d5f137a21ae8287ecf51b20872eccf8eaac0302d3e3b0"}, - {file = "zstandard-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2612e9bb4977381184bb2463150336d0f7e014d6bb5d4a370f9a372d21916f69"}, - {file = "zstandard-0.22.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23d2b3c2b8e7e5a6cb7922f7c27d73a9a615f0a5ab5d0e03dd533c477de23004"}, - {file = "zstandard-0.22.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d43501f5f31e22baf822720d82b5547f8a08f5386a883b32584a185675c8fbf"}, - {file = "zstandard-0.22.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a493d470183ee620a3df1e6e55b3e4de8143c0ba1b16f3ded83208ea8ddfd91d"}, - {file = "zstandard-0.22.0-cp38-cp38-win32.whl", hash = "sha256:7034d381789f45576ec3f1fa0e15d741828146439228dc3f7c59856c5bcd3292"}, - {file = "zstandard-0.22.0-cp38-cp38-win_amd64.whl", hash = "sha256:d8fff0f0c1d8bc5d866762ae95bd99d53282337af1be9dc0d88506b340e74b73"}, - {file = "zstandard-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2fdd53b806786bd6112d97c1f1e7841e5e4daa06810ab4b284026a1a0e484c0b"}, - {file = "zstandard-0.22.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:73a1d6bd01961e9fd447162e137ed949c01bdb830dfca487c4a14e9742dccc93"}, - {file = "zstandard-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9501f36fac6b875c124243a379267d879262480bf85b1dbda61f5ad4d01b75a3"}, - {file = "zstandard-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48f260e4c7294ef275744210a4010f116048e0c95857befb7462e033f09442fe"}, - {file = "zstandard-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:959665072bd60f45c5b6b5d711f15bdefc9849dd5da9fb6c873e35f5d34d8cfb"}, - {file = "zstandard-0.22.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d22fdef58976457c65e2796e6730a3ea4a254f3ba83777ecfc8592ff8d77d303"}, - {file = "zstandard-0.22.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a7ccf5825fd71d4542c8ab28d4d482aace885f5ebe4b40faaa290eed8e095a4c"}, - {file = "zstandard-0.22.0-cp39-cp39-win32.whl", hash = "sha256:f058a77ef0ece4e210bb0450e68408d4223f728b109764676e1a13537d056bb0"}, - {file = "zstandard-0.22.0-cp39-cp39-win_amd64.whl", hash = "sha256:e9e9d4e2e336c529d4c435baad846a181e39a982f823f7e4495ec0b0ec8538d2"}, - {file = "zstandard-0.22.0.tar.gz", hash = "sha256:8226a33c542bcb54cd6bd0a366067b610b41713b64c9abec1bc4533d69f51e70"}, + {file = "zstandard-0.23.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bf0a05b6059c0528477fba9054d09179beb63744355cab9f38059548fedd46a9"}, + {file = "zstandard-0.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fc9ca1c9718cb3b06634c7c8dec57d24e9438b2aa9a0f02b8bb36bf478538880"}, + {file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77da4c6bfa20dd5ea25cbf12c76f181a8e8cd7ea231c673828d0386b1740b8dc"}, + {file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2170c7e0367dde86a2647ed5b6f57394ea7f53545746104c6b09fc1f4223573"}, + {file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c16842b846a8d2a145223f520b7e18b57c8f476924bda92aeee3a88d11cfc391"}, + {file = "zstandard-0.23.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:157e89ceb4054029a289fb504c98c6a9fe8010f1680de0201b3eb5dc20aa6d9e"}, + {file = "zstandard-0.23.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:203d236f4c94cd8379d1ea61db2fce20730b4c38d7f1c34506a31b34edc87bdd"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:dc5d1a49d3f8262be192589a4b72f0d03b72dcf46c51ad5852a4fdc67be7b9e4"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:752bf8a74412b9892f4e5b58f2f890a039f57037f52c89a740757ebd807f33ea"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80080816b4f52a9d886e67f1f96912891074903238fe54f2de8b786f86baded2"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:84433dddea68571a6d6bd4fbf8ff398236031149116a7fff6f777ff95cad3df9"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ab19a2d91963ed9e42b4e8d77cd847ae8381576585bad79dbd0a8837a9f6620a"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:59556bf80a7094d0cfb9f5e50bb2db27fefb75d5138bb16fb052b61b0e0eeeb0"}, + {file = "zstandard-0.23.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:27d3ef2252d2e62476389ca8f9b0cf2bbafb082a3b6bfe9d90cbcbb5529ecf7c"}, + {file = "zstandard-0.23.0-cp310-cp310-win32.whl", hash = "sha256:5d41d5e025f1e0bccae4928981e71b2334c60f580bdc8345f824e7c0a4c2a813"}, + {file = "zstandard-0.23.0-cp310-cp310-win_amd64.whl", hash = "sha256:519fbf169dfac1222a76ba8861ef4ac7f0530c35dd79ba5727014613f91613d4"}, + {file = "zstandard-0.23.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:34895a41273ad33347b2fc70e1bff4240556de3c46c6ea430a7ed91f9042aa4e"}, + {file = "zstandard-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:77ea385f7dd5b5676d7fd943292ffa18fbf5c72ba98f7d09fc1fb9e819b34c23"}, + {file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:983b6efd649723474f29ed42e1467f90a35a74793437d0bc64a5bf482bedfa0a"}, + {file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80a539906390591dd39ebb8d773771dc4db82ace6372c4d41e2d293f8e32b8db"}, + {file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:445e4cb5048b04e90ce96a79b4b63140e3f4ab5f662321975679b5f6360b90e2"}, + {file = "zstandard-0.23.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd30d9c67d13d891f2360b2a120186729c111238ac63b43dbd37a5a40670b8ca"}, + {file = "zstandard-0.23.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d20fd853fbb5807c8e84c136c278827b6167ded66c72ec6f9a14b863d809211c"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed1708dbf4d2e3a1c5c69110ba2b4eb6678262028afd6c6fbcc5a8dac9cda68e"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:be9b5b8659dff1f913039c2feee1aca499cfbc19e98fa12bc85e037c17ec6ca5"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:65308f4b4890aa12d9b6ad9f2844b7ee42c7f7a4fd3390425b242ffc57498f48"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:98da17ce9cbf3bfe4617e836d561e433f871129e3a7ac16d6ef4c680f13a839c"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:8ed7d27cb56b3e058d3cf684d7200703bcae623e1dcc06ed1e18ecda39fee003"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:b69bb4f51daf461b15e7b3db033160937d3ff88303a7bc808c67bbc1eaf98c78"}, + {file = "zstandard-0.23.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:034b88913ecc1b097f528e42b539453fa82c3557e414b3de9d5632c80439a473"}, + {file = "zstandard-0.23.0-cp311-cp311-win32.whl", hash = "sha256:f2d4380bf5f62daabd7b751ea2339c1a21d1c9463f1feb7fc2bdcea2c29c3160"}, + {file = "zstandard-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:62136da96a973bd2557f06ddd4e8e807f9e13cbb0bfb9cc06cfe6d98ea90dfe0"}, + {file = "zstandard-0.23.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b4567955a6bc1b20e9c31612e615af6b53733491aeaa19a6b3b37f3b65477094"}, + {file = "zstandard-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e172f57cd78c20f13a3415cc8dfe24bf388614324d25539146594c16d78fcc8"}, + {file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b0e166f698c5a3e914947388c162be2583e0c638a4703fc6a543e23a88dea3c1"}, + {file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12a289832e520c6bd4dcaad68e944b86da3bad0d339ef7989fb7e88f92e96072"}, + {file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d50d31bfedd53a928fed6707b15a8dbeef011bb6366297cc435accc888b27c20"}, + {file = "zstandard-0.23.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72c68dda124a1a138340fb62fa21b9bf4848437d9ca60bd35db36f2d3345f373"}, + {file = "zstandard-0.23.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53dd9d5e3d29f95acd5de6802e909ada8d8d8cfa37a3ac64836f3bc4bc5512db"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6a41c120c3dbc0d81a8e8adc73312d668cd34acd7725f036992b1b72d22c1772"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:40b33d93c6eddf02d2c19f5773196068d875c41ca25730e8288e9b672897c105"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9206649ec587e6b02bd124fb7799b86cddec350f6f6c14bc82a2b70183e708ba"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76e79bc28a65f467e0409098fa2c4376931fd3207fbeb6b956c7c476d53746dd"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:66b689c107857eceabf2cf3d3fc699c3c0fe8ccd18df2219d978c0283e4c508a"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9c236e635582742fee16603042553d276cca506e824fa2e6489db04039521e90"}, + {file = "zstandard-0.23.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8fffdbd9d1408006baaf02f1068d7dd1f016c6bcb7538682622c556e7b68e35"}, + {file = "zstandard-0.23.0-cp312-cp312-win32.whl", hash = "sha256:dc1d33abb8a0d754ea4763bad944fd965d3d95b5baef6b121c0c9013eaf1907d"}, + {file = "zstandard-0.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:64585e1dba664dc67c7cdabd56c1e5685233fbb1fc1966cfba2a340ec0dfff7b"}, + {file = "zstandard-0.23.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:576856e8594e6649aee06ddbfc738fec6a834f7c85bf7cadd1c53d4a58186ef9"}, + {file = "zstandard-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:38302b78a850ff82656beaddeb0bb989a0322a8bbb1bf1ab10c17506681d772a"}, + {file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2240ddc86b74966c34554c49d00eaafa8200a18d3a5b6ffbf7da63b11d74ee2"}, + {file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ef230a8fd217a2015bc91b74f6b3b7d6522ba48be29ad4ea0ca3a3775bf7dd5"}, + {file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:774d45b1fac1461f48698a9d4b5fa19a69d47ece02fa469825b442263f04021f"}, + {file = "zstandard-0.23.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f77fa49079891a4aab203d0b1744acc85577ed16d767b52fc089d83faf8d8ed"}, + {file = "zstandard-0.23.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ac184f87ff521f4840e6ea0b10c0ec90c6b1dcd0bad2f1e4a9a1b4fa177982ea"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c363b53e257246a954ebc7c488304b5592b9c53fbe74d03bc1c64dda153fb847"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e7792606d606c8df5277c32ccb58f29b9b8603bf83b48639b7aedf6df4fe8171"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a0817825b900fcd43ac5d05b8b3079937073d2b1ff9cf89427590718b70dd840"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:9da6bc32faac9a293ddfdcb9108d4b20416219461e4ec64dfea8383cac186690"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:fd7699e8fd9969f455ef2926221e0233f81a2542921471382e77a9e2f2b57f4b"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d477ed829077cd945b01fc3115edd132c47e6540ddcd96ca169facff28173057"}, + {file = "zstandard-0.23.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa6ce8b52c5987b3e34d5674b0ab529a4602b632ebab0a93b07bfb4dfc8f8a33"}, + {file = "zstandard-0.23.0-cp313-cp313-win32.whl", hash = "sha256:a9b07268d0c3ca5c170a385a0ab9fb7fdd9f5fd866be004c4ea39e44edce47dd"}, + {file = "zstandard-0.23.0-cp313-cp313-win_amd64.whl", hash = "sha256:f3513916e8c645d0610815c257cbfd3242adfd5c4cfa78be514e5a3ebb42a41b"}, + {file = "zstandard-0.23.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2ef3775758346d9ac6214123887d25c7061c92afe1f2b354f9388e9e4d48acfc"}, + {file = "zstandard-0.23.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4051e406288b8cdbb993798b9a45c59a4896b6ecee2f875424ec10276a895740"}, + {file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2d1a054f8f0a191004675755448d12be47fa9bebbcffa3cdf01db19f2d30a54"}, + {file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f83fa6cae3fff8e98691248c9320356971b59678a17f20656a9e59cd32cee6d8"}, + {file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32ba3b5ccde2d581b1e6aa952c836a6291e8435d788f656fe5976445865ae045"}, + {file = "zstandard-0.23.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f146f50723defec2975fb7e388ae3a024eb7151542d1599527ec2aa9cacb152"}, + {file = "zstandard-0.23.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1bfe8de1da6d104f15a60d4a8a768288f66aa953bbe00d027398b93fb9680b26"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:29a2bc7c1b09b0af938b7a8343174b987ae021705acabcbae560166567f5a8db"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:61f89436cbfede4bc4e91b4397eaa3e2108ebe96d05e93d6ccc95ab5714be512"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:53ea7cdc96c6eb56e76bb06894bcfb5dfa93b7adcf59d61c6b92674e24e2dd5e"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:a4ae99c57668ca1e78597d8b06d5af837f377f340f4cce993b551b2d7731778d"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:379b378ae694ba78cef921581ebd420c938936a153ded602c4fea612b7eaa90d"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:50a80baba0285386f97ea36239855f6020ce452456605f262b2d33ac35c7770b"}, + {file = "zstandard-0.23.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:61062387ad820c654b6a6b5f0b94484fa19515e0c5116faf29f41a6bc91ded6e"}, + {file = "zstandard-0.23.0-cp38-cp38-win32.whl", hash = "sha256:b8c0bd73aeac689beacd4e7667d48c299f61b959475cdbb91e7d3d88d27c56b9"}, + {file = "zstandard-0.23.0-cp38-cp38-win_amd64.whl", hash = "sha256:a05e6d6218461eb1b4771d973728f0133b2a4613a6779995df557f70794fd60f"}, + {file = "zstandard-0.23.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3aa014d55c3af933c1315eb4bb06dd0459661cc0b15cd61077afa6489bec63bb"}, + {file = "zstandard-0.23.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7f0804bb3799414af278e9ad51be25edf67f78f916e08afdb983e74161b916"}, + {file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb2b1ecfef1e67897d336de3a0e3f52478182d6a47eda86cbd42504c5cbd009a"}, + {file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:837bb6764be6919963ef41235fd56a6486b132ea64afe5fafb4cb279ac44f259"}, + {file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1516c8c37d3a053b01c1c15b182f3b5f5eef19ced9b930b684a73bad121addf4"}, + {file = "zstandard-0.23.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48ef6a43b1846f6025dde6ed9fee0c24e1149c1c25f7fb0a0585572b2f3adc58"}, + {file = "zstandard-0.23.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11e3bf3c924853a2d5835b24f03eeba7fc9b07d8ca499e247e06ff5676461a15"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2fb4535137de7e244c230e24f9d1ec194f61721c86ebea04e1581d9d06ea1269"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8c24f21fa2af4bb9f2c492a86fe0c34e6d2c63812a839590edaf177b7398f700"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a8c86881813a78a6f4508ef9daf9d4995b8ac2d147dcb1a450448941398091c9"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fe3b385d996ee0822fd46528d9f0443b880d4d05528fd26a9119a54ec3f91c69"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:82d17e94d735c99621bf8ebf9995f870a6b3e6d14543b99e201ae046dfe7de70"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:c7c517d74bea1a6afd39aa612fa025e6b8011982a0897768a2f7c8ab4ebb78a2"}, + {file = "zstandard-0.23.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1fd7e0f1cfb70eb2f95a19b472ee7ad6d9a0a992ec0ae53286870c104ca939e5"}, + {file = "zstandard-0.23.0-cp39-cp39-win32.whl", hash = "sha256:43da0f0092281bf501f9c5f6f3b4c975a8a0ea82de49ba3f7100e64d422a1274"}, + {file = "zstandard-0.23.0-cp39-cp39-win_amd64.whl", hash = "sha256:f8346bfa098532bc1fb6c7ef06783e969d87a99dd1d2a5a18a892c1d7a643c58"}, + {file = "zstandard-0.23.0.tar.gz", hash = "sha256:b2d8c62d08e7255f68f7a740bae85b3c9b8e5466baa9cbf7f57f1cde0ac6bc09"}, ] [package.dependencies] @@ -5737,4 +5802,4 @@ viz = ["geoviews", "holoviews", "hvplot", "ipykernel", "itkwidgets", "matplotlib [metadata] lock-version = "2.0" python-versions = ">=3.9, <4" -content-hash = "ccefdc029726419ea610067524982095bb9082c3e4b47e08e3015930cce28787" +content-hash = "6af29b69c3b5088aaeb1fc141c421a405e670f9942865238061f79c89a254e58" diff --git a/pyposeidon/utils/cfl.py b/pyposeidon/utils/cfl.py new file mode 100644 index 00000000..8ea82eaa --- /dev/null +++ b/pyposeidon/utils/cfl.py @@ -0,0 +1,79 @@ +from __future__ import annotations + +import io +import os + +import numpy as np +import numpy.typing as npt +import pandas as pd +import pymap3d + + +def parse_hgrid_nodes(path: os.PathLike[str] | str) -> pd.DataFrame: + with open(path, "rb") as fd: + _ = fd.readline() + _, no_points = map(int, fd.readline().strip().split(b" ")) + content = io.BytesIO(b"".join(next(fd) for _ in range(no_points))) + nodes = pd.read_csv( + content, + engine="pyarrow", + sep="\t", + header=None, + names=["lon", "lat", "depth"], + index_col=0, + ) + nodes = nodes.reset_index(drop=True) + return nodes + + +def parse_hgrid_elements3(path: os.PathLike[str] | str) -> pd.DataFrame: + with open(path, "rb") as fd: + _ = fd.readline() + no_elements, no_points = map(int, fd.readline().strip().split(b" ")) + for _ in range(no_points): + next(fd) + content = io.BytesIO(b"".join(next(fd) for _ in range(no_elements))) + elements = pd.read_csv( + content, + engine="pyarrow", + sep="\t", + header=None, + names=["no_nodes", "n1", "n2", "n3"], + index_col=0, + ) + elements = elements.assign( + n1=elements.n1 - 1, + n2=elements.n2 - 1, + n3=elements.n3 - 1, + ).reset_index(drop=True) + return elements + + +def get_skews_and_base_cfls(lons, lats, depths) -> tuple[npt.NDArray[np.float64], npt.NDArray[np.float64]]: + # The shape of each one of the input arrays needs to be (3, ) + # ell = pymap3d.Ellipsoid.from_name("wgs84") + ell = pymap3d.Ellipsoid(6378206.4, 6378206.4, "schism", "schism") + local_x, local_y, _ = pymap3d.geodetic2enu(lats, lons, depths, lats[0], lons[0], depths[0], ell=ell) + areas = (local_x[1] * local_y[2] - local_x[2] * local_y[1]) * 0.5 + rhos = np.sqrt(areas / np.pi) + max_sides = np.maximum( + np.sqrt(local_x[1] ** 2 + local_y[1] ** 2), + np.sqrt(local_x[2] ** 2 + local_y[2] ** 2), + np.sqrt((local_x[2] - local_x[1]) ** 2 + (local_y[2] - local_y[1]) ** 2), + ) + skews = max_sides / rhos + base_cfls = np.sqrt(9.81 * np.maximum(0.1, depths.mean(axis=0))) / rhos / 2 + return skews, base_cfls + + +def get_skews_and_base_cfls_from_path( + path: os.PathLike[str] | str, +) -> tuple[npt.NDArray[np.float64], npt.NDArray[np.float64]]: + nodes = parse_hgrid_nodes(path) + elements = parse_hgrid_elements3(path) + tri = elements[["n1", "n2", "n3"]].values + lons = nodes.lon.values[tri].T + lats = nodes.lat.values[tri].T + depths = nodes.depth.values[tri].T + skews, base_cfls = get_skews_and_base_cfls(lons=lons, lats=lats, depths=depths) + return skews, base_cfls diff --git a/pyproject.toml b/pyproject.toml index 341b4339..23cde3a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,7 @@ numpy = ">=1.20, <2.0" pandas = "*" psutil = "*" pydap = ">=3.4.0" +pymap3d = "*" pyogrio = "*" pyresample = "*" rasterio = "*" From a99197c3c102e5b76c60500b47395929b453ae83 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Tue, 16 Jul 2024 22:14:51 +0300 Subject: [PATCH 09/26] scripts: Remove empty lines from environment files It seems that `srsly`, i.e. the library we use in `merge_environments_yaml.py` started to add an extra empty line at the end of the files. This sed call removes that. --- scripts/generate_envs.sh | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/scripts/generate_envs.sh b/scripts/generate_envs.sh index c7685e4d..a8dc06bd 100755 --- a/scripts/generate_envs.sh +++ b/scripts/generate_envs.sh @@ -4,25 +4,25 @@ set -xeuo pipefail # Binary -./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml > ./environments/binary-p3.9.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml > ./environments/binary-p3.10.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml > ./environments/binary-p3.11.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml > ./environments/binary-p3.12.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml | sed '/^$/d' > ./environments/binary-p3.9.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml | sed '/^$/d' > ./environments/binary-p3.10.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml | sed '/^$/d' > ./environments/binary-p3.11.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml | sed '/^$/d' > ./environments/binary-p3.12.yml # Base -./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml ./dependencies/main.yml > ./environments/base-p3.9.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml ./dependencies/main.yml > ./environments/base-p3.10.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml ./dependencies/main.yml > ./environments/base-p3.11.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml ./dependencies/main.yml > ./environments/base-p3.12.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml ./dependencies/main.yml | sed '/^$/d' > ./environments/base-p3.9.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml ./dependencies/main.yml | sed '/^$/d' > ./environments/base-p3.10.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml ./dependencies/main.yml | sed '/^$/d' > ./environments/base-p3.11.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml ./dependencies/main.yml | sed '/^$/d' > ./environments/base-p3.12.yml # Viz -./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/viz-p3.9.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/viz-p3.10.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/viz-p3.11.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/viz-p3.12.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/viz-p3.9.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/viz-p3.10.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/viz-p3.11.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/viz-p3.12.yml # Full -./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/full-p3.9.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/full-p3.10.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/full-p3.11.yml -./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml > ./environments/full-p3.12.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.9.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/full-p3.9.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.10.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/full-p3.10.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.11.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/full-p3.11.yml +./scripts/merge_environment_yaml.py ./dependencies/python3.12.yml ./dependencies/binary.yml ./dependencies/dev.yml ./dependencies/docs.yml ./dependencies/main.yml ./dependencies/viz.yml | sed '/^$/d' > ./environments/full-p3.12.yml From d20c460a0f61b9a1960ed7a97cf72e350978bb91 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Mon, 22 Jul 2024 12:24:07 +0300 Subject: [PATCH 10/26] schism: Use absolute path in `model.output()` --- pyposeidon/schism.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyposeidon/schism.py b/pyposeidon/schism.py index bda59300..166b9f9f 100644 --- a/pyposeidon/schism.py +++ b/pyposeidon/schism.py @@ -483,6 +483,7 @@ def create(self, **kwargs): def output(self, **kwargs): path = get_value(self, kwargs, "rpath", "./schism/") + path = os.path.realpath(path) flag = get_value(self, kwargs, "update", ["all"]) split_by = get_value(self, kwargs, "meteo_split_by", None) From 1468eeed646220233371cee1406d458e5094b2bb Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Mon, 22 Jul 2024 12:25:23 +0300 Subject: [PATCH 11/26] feat: Use `shutil.which()` instead of bash's `which` This makes the generated MPI scripts easier to read/modify. --- pyposeidon/tools.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyposeidon/tools.py b/pyposeidon/tools.py index 3a4918cc..08a311ea 100644 --- a/pyposeidon/tools.py +++ b/pyposeidon/tools.py @@ -76,7 +76,7 @@ # Schism sometimes throws an error mentioning ABORT or MPI_ABORT while it returns a status code of 0. # In order to circumvent this we need to cacture the output and explicitly check the contents for ABORT. schism_output=$( - $(which mpirun) {{ mpirun_flags }} -N {{ ncores }} $(which {{ cmd }}) {{ scribes }} 2>&1 + {{ mpirun_path }} {{ mpirun_flags }} -N {{ ncores }} {{ cmd }} {{ scribes }} 2>&1 ) echo "${schism_output}" @@ -263,9 +263,10 @@ def create_mpirun_script( env = jinja2.Environment() template = env.from_string(template) content = template.render( + mpirun_path=shutil.which("mpirun"), mpirun_flags=mpirun_flags, ncores=ncores, - cmd=cmd, + cmd=shutil.which(cmd), scribes=scribes, ) # Write to disk and make executable From 7940b8e910120683e42bff81901f25ccfc279b1c Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Mon, 22 Jul 2024 13:41:58 +0300 Subject: [PATCH 12/26] docs: Update mkdocs settings Just reusing what we have from thalassa. --- mkdocs.yml | 154 ++++++++++++++++++++++++++++++++++++++++-------- poetry.lock | 157 +++++++++++++++++++++++++++++++------------------ pyproject.toml | 1 + 3 files changed, 231 insertions(+), 81 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index ca446c12..6391a299 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,4 @@ --- - site_name: "pyPoseidon" use_directory_urls: false repo_url: "https://github.com/ec-jrc/pyPoseidon" @@ -7,26 +6,26 @@ repo_url: "https://github.com/ec-jrc/pyPoseidon" theme: name: "material" palette: - - media: "(prefers-color-scheme: light)" - scheme: default - primary: blue - accent: blue - toggle: - icon: material/lightbulb-outline - name: "Switch to dark mode" - - media: "(prefers-color-scheme: dark)" - scheme: slate - primary: blue - accent: blue - toggle: - icon: material/lightbulb - name: "Switch to light mode" + - media: "(prefers-color-scheme: light)" + scheme: default + primary: blue + accent: blue + toggle: + icon: material/lightbulb-outline + name: "Switch to dark mode" + - media: "(prefers-color-scheme: dark)" + scheme: slate + primary: blue + accent: blue + toggle: + icon: material/lightbulb + name: "Switch to light mode" nav: - - Overview : index.md - - Installation : installation.md - - Structure : structure.md - - User Guide : + - Overview: index.md + - Installation: installation.md + - Structure: structure.md + - User Guide: - "Meteo": meteo.md - "Dem": dem.md - "Boundary": boundary.md @@ -34,7 +33,8 @@ nav: - "Model": model.md - "Utilities": utils.md - Development: development.md - - API : api.md + - API: + - Main: api.md markdown_extensions: - "admonition" @@ -45,12 +45,116 @@ markdown_extensions: - toc: permalink: true +watch: + - "docs" + - "pyposeidon" + plugins: - "search" - - "mkdocstrings": + - "autorefs" + - mkdocstrings: + default_handler: python handlers: python: - rendering: - show_root_heading: true - show_object_full_path: false - show_root_members_full_path: false + options: + ### General + # Whether to allow inspecting modules when visiting them is not possible. Default: True. + allow_inspection: True + # Show the base classes of a class. Default: True. + show_bases: True + # Show the source code of this object. Default: True. + show_source: True + # Pre-load modules that are not specified directly in autodoc instructions (::: identifier). It is useful when you want to render documentation for a particular member of an object, and this member is imported from another package than its parent. + # For an imported member to be rendered, you need to add it to the __all__ attribute of the importing module. + # The modules must be listed as an array of strings. Default: None. + preload_modules: null + + ### Headings + # The initial heading level to use. Default: 2. + heading_level: 3 + # Show the heading of the object at the root of the documentation tree (i.e. the object referenced by the identifier after :::). Default: False. + show_root_heading: True + # If the root heading is not shown, at least add a ToC entry for it. Default: True. + show_root_toc_entry: True + # Show the full Python path for the root object heading. Default: True. + show_root_full_path: True + # Show the full Python path of the root members. Default: False. + show_root_members_full_path: False + # Show the full Python path of every object. Default: False. + show_object_full_path: False + # When grouped by categories, show a heading for each category. Default: False. + show_category_heading: False + # Show the symbol type in headings (e.g. mod, class, meth, func and attr). Default: False. + show_symbol_type_heading: False + # Show the symbol type in the Table of Contents (e.g. mod, class, method, func and attr). Default: False + show_symbol_type_toc: False + + ### Members + # A boolean, or an explicit list of inherited members to render. If true, select all inherited members, which can then be filtered with members. If false or empty list, do not select any inherited member. Default: False. + inherited_members: False + # A boolean, or an explicit list of members to render. If true, select all members without further filtering. If false or empty list, do not render members. If none, select all members and apply further filtering with filters and docstrings. Default: None. + members: null + # The members ordering to use. Options: alphabetical - order by the members names, source - order members as they appear in the source file. Default: "alphabetical". + members_order: "alphabetical" + # A list of filters applied to filter objects based on their name. A filter starting with ! will exclude matching objects instead of including them. The members option takes precedence over filters (filters will still be applied recursively to lower members in the hierarchy). Default: ["!^_[^_]"]. + filters: ["!^_[^_]"] + # Group the object's children by categories: attributes, classes, functions, and modules. Default: True. + group_by_category: True + # When rendering a module, show its submodules recursively. Default: False. + show_submodules: False + # Whether to render summaries of modules, classes, functions (methods) and attributes. + summary: True + + ### Docstrings + # The docstring style to use: google, numpy, sphinx, or None. Default: "google". + docstring_style: "google" + # The options for the docstring parser. See parsers under griffe.docstrings. + # docstring_options: + # The style used to render docstring sections. Options: table, list, spacy. Default: "table". + docstring_section_style: "spacy" + # Whether to merge the __init__ method into the class' signature and docstring. Default: False. + merge_init_into_class: False + # Show the object heading even if it has no docstring or children with docstrings. Default: False. + show_if_no_docstring: False + # Whether to display the "Attributes" section in the object's docstring. Default: True. + show_docstring_attributes: True + # Whether to display the "Functions" or "Methods" sections in the object's docstring. Default: True. + show_docstring_functions: True + # Whether to display the "Classes" section in the object's docstring. Default: True. + show_docstring_classes: True + # Whether to display the "Modules" section in the object's docstring. Default: True. + show_docstring_modules: True + # Whether to display the textual block (including admonitions) in the object's docstring. Default: True. + show_docstring_description: True + # Whether to display the "Examples" section in the object's docstring. Default: True. + show_docstring_examples: True + # Whether to display the "Other Parameters" section in the object's docstring. Default: True. + show_docstring_other_parameters: True + # Whether to display the "Parameters" section in the object's docstring. Default: True. + show_docstring_parameters: True + # Whether to display the "Raises" section in the object's docstring. Default: True. + show_docstring_raises: True + # Whether to display the "Receives" section in the object's docstring. Default: True. + show_docstring_receives: True + # Whether to display the "Returns" section in the object's docstring. Default: True. + show_docstring_returns: True + # Whether to display the "Warns" section in the object's docstring. Default: True. + show_docstring_warns: True + # Whether to display the "Yields" section in the object's docstring. Default: True. + show_docstring_yields: True + + ### Signature/annotations + # The verbosity for annotations path: brief (recommended), or source (as written in the source). Default: "brief". + annotations_path: "full" + # Maximum line length when formatting code/signatures. Default: 60. + line_length: 88 + # Show methods and functions signatures. Default: True. + show_signature: True + # Show the type annotations in methods and functions signatures. Default: False. + show_signature_annotations: True + # Whether to render cross-references for type annotations in signatures. Default: False. + signature_crossrefs: True + # Whether to put the whole signature in a code block below the heading. If Black is installed, the signature is also formatted using it. Default: False. + separate_signature: True + # Whether to unwrap Annotated types to show only the type without the annotations. Default: False. + unwrap_annotated: True diff --git a/poetry.lock b/poetry.lock index 32c34e4e..5f48a946 100644 --- a/poetry.lock +++ b/poetry.lock @@ -199,6 +199,17 @@ files = [ [package.extras] dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] +[[package]] +name = "backports-strenum" +version = "1.3.1" +description = "Base class for creating enumerated constants that are also subclasses of str" +optional = false +python-versions = ">=3.8.6,<3.11" +files = [ + {file = "backports_strenum-1.3.1-py3-none-any.whl", hash = "sha256:cdcfe36dc897e2615dc793b7d3097f54d359918fc448754a517e6f23044ccf83"}, + {file = "backports_strenum-1.3.1.tar.gz", hash = "sha256:77c52407342898497714f0596e86188bb7084f89063226f4ba66863482f42414"}, +] + [[package]] name = "beautifulsoup4" version = "4.12.3" @@ -504,13 +515,13 @@ pycparser = "*" [[package]] name = "cfgrib" -version = "0.9.13.0" +version = "0.9.14.0" description = "Python interface to map GRIB files to the NetCDF Common Data Model following the CF Convention using ecCodes." optional = false python-versions = ">=3.7" files = [ - {file = "cfgrib-0.9.13.0-py3-none-any.whl", hash = "sha256:50467ef0aabcc45de2f3eb433dfe07d2d3eab02fc8a9af9389fd06c2391e6dd9"}, - {file = "cfgrib-0.9.13.0.tar.gz", hash = "sha256:a6ecd393dc078ef255c39b98763702b072e09ccd15e85d81ed7d13ac44837794"}, + {file = "cfgrib-0.9.14.0-py3-none-any.whl", hash = "sha256:ce9fb8a667167fee38ae935f6b445e87f0e8915b9af76e3843c182d2979a756a"}, + {file = "cfgrib-0.9.14.0.tar.gz", hash = "sha256:2b9a1e6bd47397e585f878ffd8aaac5969f6c9a448da767c700917b89c275bb2"}, ] [package.dependencies] @@ -951,13 +962,13 @@ tests = ["pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "dask" -version = "2024.7.0" +version = "2024.7.1" description = "Parallel PyData with Task Scheduling" optional = false python-versions = ">=3.9" files = [ - {file = "dask-2024.7.0-py3-none-any.whl", hash = "sha256:0f30f218a1fe1c8e9a6ba8add1207088ba9ff049098d4ea4ce045fd5ff7ca914"}, - {file = "dask-2024.7.0.tar.gz", hash = "sha256:0060bae9a58b5b3ce7e0d97040e903b4d3db09ba49222101cfc40f9834a8a6bc"}, + {file = "dask-2024.7.1-py3-none-any.whl", hash = "sha256:dd046840050376c317de90629db5c6197adda820176cf3e2df10c3219d11951f"}, + {file = "dask-2024.7.1.tar.gz", hash = "sha256:dbaef2d50efee841a9d981a218cfeb50392fc9a95e0403b6d680450e4f50d531"}, ] [package.dependencies] @@ -975,7 +986,7 @@ array = ["numpy (>=1.21)"] complete = ["dask[array,dataframe,diagnostics,distributed]", "lz4 (>=4.3.2)", "pyarrow (>=7.0)", "pyarrow-hotfix"] dataframe = ["dask-expr (>=1.1,<1.2)", "dask[array]", "pandas (>=2.0)"] diagnostics = ["bokeh (>=2.4.2)", "jinja2 (>=2.10.3)"] -distributed = ["distributed (==2024.7.0)"] +distributed = ["distributed (==2024.7.1)"] test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] [[package]] @@ -1473,6 +1484,21 @@ files = [ {file = "gmsh-4.13.1-py2.py3-none-win_amd64.whl", hash = "sha256:00f3c86b3146c1af1259e695ed646880c9da0c2ded2d1e48b240a1d3d194bae6"}, ] +[[package]] +name = "griffe" +version = "0.48.0" +description = "Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API." +optional = false +python-versions = ">=3.8" +files = [ + {file = "griffe-0.48.0-py3-none-any.whl", hash = "sha256:f944c6ff7bd31cf76f264adcd6ab8f3d00a2f972ae5cc8db2d7b6dcffeff65a2"}, + {file = "griffe-0.48.0.tar.gz", hash = "sha256:f099461c02f016b6be4af386d5aa92b01fb4efe6c1c2c360dda9a5d0a863bb7f"}, +] + +[package.dependencies] +backports-strenum = {version = ">=1.3", markers = "python_version < \"3.11\""} +colorama = ">=0.4" + [[package]] name = "h11" version = "0.14.0" @@ -2906,6 +2932,21 @@ crystal = ["mkdocstrings-crystal (>=0.3.4)"] python = ["mkdocstrings-python (>=0.5.2)"] python-legacy = ["mkdocstrings-python-legacy (>=0.2.1)"] +[[package]] +name = "mkdocstrings-python" +version = "1.10.5" +description = "A Python handler for mkdocstrings." +optional = false +python-versions = ">=3.8" +files = [ + {file = "mkdocstrings_python-1.10.5-py3-none-any.whl", hash = "sha256:92e3c588ef1b41151f55281d075de7558dd8092e422cb07a65b18ee2b0863ebb"}, + {file = "mkdocstrings_python-1.10.5.tar.gz", hash = "sha256:acdc2a98cd9d46c7ece508193a16ca03ccabcb67520352b7449f84b57c162bdf"}, +] + +[package.dependencies] +griffe = ">=0.47" +mkdocstrings = ">=0.25" + [[package]] name = "multipledispatch" version = "1.0.0" @@ -3652,13 +3693,13 @@ files = [ [[package]] name = "pure-eval" -version = "0.2.2" +version = "0.2.3" description = "Safely evaluate AST nodes without side effects" optional = true python-versions = "*" files = [ - {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, - {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, + {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, + {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, ] [package.extras] @@ -3666,52 +3707,55 @@ tests = ["pytest"] [[package]] name = "pyarrow" -version = "16.1.0" +version = "17.0.0" description = "Python library for Apache Arrow" optional = true python-versions = ">=3.8" files = [ - {file = "pyarrow-16.1.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:17e23b9a65a70cc733d8b738baa6ad3722298fa0c81d88f63ff94bf25eaa77b9"}, - {file = "pyarrow-16.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4740cc41e2ba5d641071d0ab5e9ef9b5e6e8c7611351a5cb7c1d175eaf43674a"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98100e0268d04e0eec47b73f20b39c45b4006f3c4233719c3848aa27a03c1aef"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68f409e7b283c085f2da014f9ef81e885d90dcd733bd648cfba3ef265961848"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a8914cd176f448e09746037b0c6b3a9d7688cef451ec5735094055116857580c"}, - {file = "pyarrow-16.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:48be160782c0556156d91adbdd5a4a7e719f8d407cb46ae3bb4eaee09b3111bd"}, - {file = "pyarrow-16.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:9cf389d444b0f41d9fe1444b70650fea31e9d52cfcb5f818b7888b91b586efff"}, - {file = "pyarrow-16.1.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:d0ebea336b535b37eee9eee31761813086d33ed06de9ab6fc6aaa0bace7b250c"}, - {file = "pyarrow-16.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e73cfc4a99e796727919c5541c65bb88b973377501e39b9842ea71401ca6c1c"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf9251264247ecfe93e5f5a0cd43b8ae834f1e61d1abca22da55b20c788417f6"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddf5aace92d520d3d2a20031d8b0ec27b4395cab9f74e07cc95edf42a5cc0147"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:25233642583bf658f629eb230b9bb79d9af4d9f9229890b3c878699c82f7d11e"}, - {file = "pyarrow-16.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a33a64576fddfbec0a44112eaf844c20853647ca833e9a647bfae0582b2ff94b"}, - {file = "pyarrow-16.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:185d121b50836379fe012753cf15c4ba9638bda9645183ab36246923875f8d1b"}, - {file = "pyarrow-16.1.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:2e51ca1d6ed7f2e9d5c3c83decf27b0d17bb207a7dea986e8dc3e24f80ff7d6f"}, - {file = "pyarrow-16.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:06ebccb6f8cb7357de85f60d5da50e83507954af617d7b05f48af1621d331c9a"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b04707f1979815f5e49824ce52d1dceb46e2f12909a48a6a753fe7cafbc44a0c"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d32000693deff8dc5df444b032b5985a48592c0697cb6e3071a5d59888714e2"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:8785bb10d5d6fd5e15d718ee1d1f914fe768bf8b4d1e5e9bf253de8a26cb1628"}, - {file = "pyarrow-16.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:e1369af39587b794873b8a307cc6623a3b1194e69399af0efd05bb202195a5a7"}, - {file = "pyarrow-16.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:febde33305f1498f6df85e8020bca496d0e9ebf2093bab9e0f65e2b4ae2b3444"}, - {file = "pyarrow-16.1.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b5f5705ab977947a43ac83b52ade3b881eb6e95fcc02d76f501d549a210ba77f"}, - {file = "pyarrow-16.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0d27bf89dfc2576f6206e9cd6cf7a107c9c06dc13d53bbc25b0bd4556f19cf5f"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d07de3ee730647a600037bc1d7b7994067ed64d0eba797ac74b2bc77384f4c2"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fbef391b63f708e103df99fbaa3acf9f671d77a183a07546ba2f2c297b361e83"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19741c4dbbbc986d38856ee7ddfdd6a00fc3b0fc2d928795b95410d38bb97d15"}, - {file = "pyarrow-16.1.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f2c5fb249caa17b94e2b9278b36a05ce03d3180e6da0c4c3b3ce5b2788f30eed"}, - {file = "pyarrow-16.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:e6b6d3cd35fbb93b70ade1336022cc1147b95ec6af7d36906ca7fe432eb09710"}, - {file = "pyarrow-16.1.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:18da9b76a36a954665ccca8aa6bd9f46c1145f79c0bb8f4f244f5f8e799bca55"}, - {file = "pyarrow-16.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:99f7549779b6e434467d2aa43ab2b7224dd9e41bdde486020bae198978c9e05e"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f07fdffe4fd5b15f5ec15c8b64584868d063bc22b86b46c9695624ca3505b7b4"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddfe389a08ea374972bd4065d5f25d14e36b43ebc22fc75f7b951f24378bf0b5"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3b20bd67c94b3a2ea0a749d2a5712fc845a69cb5d52e78e6449bbd295611f3aa"}, - {file = "pyarrow-16.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:ba8ac20693c0bb0bf4b238751d4409e62852004a8cf031c73b0e0962b03e45e3"}, - {file = "pyarrow-16.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:31a1851751433d89a986616015841977e0a188662fcffd1a5677453f1df2de0a"}, - {file = "pyarrow-16.1.0.tar.gz", hash = "sha256:15fbb22ea96d11f0b5768504a3f961edab25eaf4197c341720c4a387f6c60315"}, + {file = "pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07"}, + {file = "pyarrow-17.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:db023dc4c6cae1015de9e198d41250688383c3f9af8f565370ab2b4cb5f62655"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da1e060b3876faa11cee287839f9cc7cdc00649f475714b8680a05fd9071d545"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c06d4624c0ad6674364bb46ef38c3132768139ddec1c56582dbac54f2663e2"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:fa3c246cc58cb5a4a5cb407a18f193354ea47dd0648194e6265bd24177982fe8"}, + {file = "pyarrow-17.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:f7ae2de664e0b158d1607699a16a488de3d008ba99b3a7aa5de1cbc13574d047"}, + {file = "pyarrow-17.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5984f416552eea15fd9cee03da53542bf4cddaef5afecefb9aa8d1010c335087"}, + {file = "pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977"}, + {file = "pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420"}, + {file = "pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4"}, + {file = "pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03"}, + {file = "pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22"}, + {file = "pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a"}, + {file = "pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b"}, + {file = "pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7"}, + {file = "pyarrow-17.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:af5ff82a04b2171415f1410cff7ebb79861afc5dae50be73ce06d6e870615204"}, + {file = "pyarrow-17.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:edca18eaca89cd6382dfbcff3dd2d87633433043650c07375d095cd3517561d8"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c7916bff914ac5d4a8fe25b7a25e432ff921e72f6f2b7547d1e325c1ad9d155"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f553ca691b9e94b202ff741bdd40f6ccb70cdd5fbf65c187af132f1317de6145"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0cdb0e627c86c373205a2f94a510ac4376fdc523f8bb36beab2e7f204416163c"}, + {file = "pyarrow-17.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:d7d192305d9d8bc9082d10f361fc70a73590a4c65cf31c3e6926cd72b76bc35c"}, + {file = "pyarrow-17.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:02dae06ce212d8b3244dd3e7d12d9c4d3046945a5933d28026598e9dbbda1fca"}, + {file = "pyarrow-17.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:13d7a460b412f31e4c0efa1148e1d29bdf18ad1411eb6757d38f8fbdcc8645fb"}, + {file = "pyarrow-17.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9b564a51fbccfab5a04a80453e5ac6c9954a9c5ef2890d1bcf63741909c3f8df"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32503827abbc5aadedfa235f5ece8c4f8f8b0a3cf01066bc8d29de7539532687"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a155acc7f154b9ffcc85497509bcd0d43efb80d6f733b0dc3bb14e281f131c8b"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dec8d129254d0188a49f8a1fc99e0560dc1b85f60af729f47de4046015f9b0a5"}, + {file = "pyarrow-17.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a48ddf5c3c6a6c505904545c25a4ae13646ae1f8ba703c4df4a1bfe4f4006bda"}, + {file = "pyarrow-17.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:42bf93249a083aca230ba7e2786c5f673507fa97bbd9725a1e2754715151a204"}, + {file = "pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28"}, ] [package.dependencies] numpy = ">=1.16.6" +[package.extras] +test = ["cffi", "hypothesis", "pandas", "pytest", "pytz"] + [[package]] name = "pycparser" version = "2.22" @@ -4186,13 +4230,13 @@ files = [ [[package]] name = "pytest" -version = "8.2.2" +version = "8.3.1" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.2.2-py3-none-any.whl", hash = "sha256:c434598117762e2bd304e526244f67bf66bbd7b5d6cf22138be51ff661980343"}, - {file = "pytest-8.2.2.tar.gz", hash = "sha256:de4bb8104e201939ccdc688b27a89a7be2079b22e2bd2b07f806b6ba71117977"}, + {file = "pytest-8.3.1-py3-none-any.whl", hash = "sha256:e9600ccf4f563976e2c99fa02c7624ab938296551f280835ee6516df8bc4ae8c"}, + {file = "pytest-8.3.1.tar.gz", hash = "sha256:7e8e5c5abd6e93cb1cc151f23e57adc31fcf8cfd2a3ff2da63e23f732de35db6"}, ] [package.dependencies] @@ -4200,7 +4244,7 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.5,<2.0" +pluggy = ">=1.5,<2" tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] @@ -4907,18 +4951,19 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "70.3.0" +version = "71.1.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.3.0-py3-none-any.whl", hash = "sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc"}, - {file = "setuptools-70.3.0.tar.gz", hash = "sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5"}, + {file = "setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855"}, + {file = "setuptools-71.1.0.tar.gz", hash = "sha256:032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"}, ] [package.extras] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.10.0)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "shapely" @@ -5802,4 +5847,4 @@ viz = ["geoviews", "holoviews", "hvplot", "ipykernel", "itkwidgets", "matplotlib [metadata] lock-version = "2.0" python-versions = ">=3.9, <4" -content-hash = "6af29b69c3b5088aaeb1fc141c421a405e670f9942865238061f79c89a254e58" +content-hash = "402b1404c0c39fbc39101b768edb247ff336f2bfb80a19e13d283569cfb1fff5" diff --git a/pyproject.toml b/pyproject.toml index 23cde3a6..2c8acbe7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -105,6 +105,7 @@ pytest-xdist = "*" mkdocs-material = "*" mkdocstrings = "*" mkdocs = "*" +mkdocstrings-python = "*" pymdown-extensions = "*" [build-system] From 563d19a97f17e2054005a6cadb6e718ae0e9640b Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Mon, 22 Jul 2024 13:50:43 +0300 Subject: [PATCH 13/26] feat: Add `find_nearest_nodes()` --- docs/api.md | 4 +++ mkdocs.yml | 1 + poetry.lock | 58 +++++++++++++++++++++++++++++++++++++- pyposeidon/utils/cpoint.py | 57 +++++++++++++++++++++++++++++++++++++ pyproject.toml | 1 + tests/utils/__init__.py | 0 tests/utils/test_cpoint.py | 23 +++++++++++++++ 7 files changed, 143 insertions(+), 1 deletion(-) create mode 100644 tests/utils/__init__.py create mode 100644 tests/utils/test_cpoint.py diff --git a/docs/api.md b/docs/api.md index 651a4a35..e23a7685 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1,5 +1,7 @@ # Reference +## Main + ::: pyposeidon.meteo ::: pyposeidon.dem @@ -17,3 +19,5 @@ ::: pyposeidon.mjigsaw ::: pyposeidon.mgmsh + +::: pyposeidon.utils.cpoint.find_nearest_nodes diff --git a/mkdocs.yml b/mkdocs.yml index 6391a299..123a6898 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -35,6 +35,7 @@ nav: - Development: development.md - API: - Main: api.md + - utils: api_utils.md markdown_extensions: - "admonition" diff --git a/poetry.lock b/poetry.lock index 5f48a946..51ffa8e7 100644 --- a/poetry.lock +++ b/poetry.lock @@ -4864,6 +4864,51 @@ files = [ {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, ] +[[package]] +name = "scikit-learn" +version = "1.5.1" +description = "A set of python modules for machine learning and data mining" +optional = false +python-versions = ">=3.9" +files = [ + {file = "scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745"}, + {file = "scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7"}, + {file = "scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac"}, + {file = "scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21"}, + {file = "scikit_learn-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1"}, + {file = "scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2"}, + {file = "scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe"}, + {file = "scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4"}, + {file = "scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf"}, + {file = "scikit_learn-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b"}, + {file = "scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395"}, + {file = "scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1"}, + {file = "scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915"}, + {file = "scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b"}, + {file = "scikit_learn-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74"}, + {file = "scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956"}, + {file = "scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855"}, + {file = "scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1"}, + {file = "scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d"}, + {file = "scikit_learn-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d"}, + {file = "scikit_learn-1.5.1.tar.gz", hash = "sha256:0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414"}, +] + +[package.dependencies] +joblib = ">=1.2.0" +numpy = ">=1.19.5" +scipy = ">=1.6.0" +threadpoolctl = ">=3.1.0" + +[package.extras] +benchmark = ["matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "pandas (>=1.1.5)"] +build = ["cython (>=3.0.10)", "meson-python (>=0.16.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)"] +docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.3.4)", "memory_profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "polars (>=0.20.23)", "pooch (>=1.6.0)", "pydata-sphinx-theme (>=0.15.3)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)", "sphinx (>=7.3.7)", "sphinx-copybutton (>=0.5.2)", "sphinx-design (>=0.5.0)", "sphinx-gallery (>=0.16.0)", "sphinx-prompt (>=1.4.0)", "sphinx-remove-toctrees (>=1.0.0.post1)", "sphinxcontrib-sass (>=0.3.4)", "sphinxext-opengraph (>=0.9.1)"] +examples = ["matplotlib (>=3.3.4)", "pandas (>=1.1.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.17.2)", "seaborn (>=0.9.0)"] +install = ["joblib (>=1.2.0)", "numpy (>=1.19.5)", "scipy (>=1.6.0)", "threadpoolctl (>=3.1.0)"] +maintenance = ["conda-lock (==2.5.6)"] +tests = ["black (>=24.3.0)", "matplotlib (>=3.3.4)", "mypy (>=1.9)", "numpydoc (>=1.2.0)", "pandas (>=1.1.5)", "polars (>=0.20.23)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pyarrow (>=12.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.2.1)", "scikit-image (>=0.17.2)"] + [[package]] name = "scipy" version = "1.13.1" @@ -5178,6 +5223,17 @@ docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] +[[package]] +name = "threadpoolctl" +version = "3.5.0" +description = "threadpoolctl" +optional = false +python-versions = ">=3.8" +files = [ + {file = "threadpoolctl-3.5.0-py3-none-any.whl", hash = "sha256:56c1e26c150397e58c4926da8eeee87533b1e32bef131bd4bf6a2f45f3185467"}, + {file = "threadpoolctl-3.5.0.tar.gz", hash = "sha256:082433502dd922bf738de0d8bcc4fdcbf0979ff44c42bd40f5af8a282f6fa107"}, +] + [[package]] name = "tinycss2" version = "1.3.0" @@ -5847,4 +5903,4 @@ viz = ["geoviews", "holoviews", "hvplot", "ipykernel", "itkwidgets", "matplotlib [metadata] lock-version = "2.0" python-versions = ">=3.9, <4" -content-hash = "402b1404c0c39fbc39101b768edb247ff336f2bfb80a19e13d283569cfb1fff5" +content-hash = "fd35163130af79e22d0ddeed70051e81b2881adabdb24f125ee71772f1c220a7" diff --git a/pyposeidon/utils/cpoint.py b/pyposeidon/utils/cpoint.py index 2757baaa..f02f57d1 100644 --- a/pyposeidon/utils/cpoint.py +++ b/pyposeidon/utils/cpoint.py @@ -1,5 +1,62 @@ +from __future__ import annotations + +import numpy as np +import pandas as pd +import sklearn.neighbors from scipy.spatial.distance import cdist def closest_node(node, nodes): return nodes[cdist([node], nodes).argmin()] + + +def find_nearest_nodes( + mesh_nodes: pd.DataFrame, + points: pd.DataFrame, + metric: str = "haversine", + earth_radius = 6371000, + ): + """ + Calculate the mesh nodes that are nearest to the specified `points`. + + Both `mesh_nodes` and `points` must be `pandas.DataFrames` that have + columns named `lon` and `lat` and the coords must be in EPSG:4326. + + Returns the `points` DataFrame after adding these extra columns: + + - `mesh_index` which is the index of the node in the `hgrid.gr3` file + - `mesh_lon` which is the longitude of the nearest mesh node + - `mesh_lat` which is the latitude of the nearest mesh node + - `distance` which is the distance in meters between the point and the nearest mesh node + + Examples: + >>> mesh_nodes = pd.DataFrame({ + ... "lon": [0, 10, 20], + ... "lat": [0, 5, 0], + ... }) + >>> points = pd.DataFrame({ + ... "lon": [1, 11, 21], + ... "lat": [1, 4, 1], + ... "id": ["a", "b", "c"], + ... }) + >>> nearest_nodes = find_nearest_nodes(mesh_nodes, points) + >>> nearest_nodes + lon lat id mesh_index mesh_lon mesh_lat distance + 0 1 1 a 0 0 0 157249.381272 + 1 11 4 b 1 10 5 157010.162641 + 2 21 1 c 2 20 0 157249.381272 + """ + # The only requirement is that both `mesh_nodes and `points` have `lon/lat` columns + tree = sklearn.neighbors.BallTree( + np.radians(mesh_nodes[["lat", "lon"]]), + metric=metric, + ) + distances, indices = tree.query(np.radians(points[["lat", "lon"]].values)) + closest_nodes = ( + mesh_nodes + .rename(columns={"lon": "mesh_lon", "lat": "mesh_lat"}) + .iloc[indices.flatten()] + .assign(distance=(distances.flatten() * earth_radius)) + .reset_index(names=["mesh_index"]) + ) + return pd.concat((points, closest_nodes), axis="columns") diff --git a/pyproject.toml b/pyproject.toml index 2c8acbe7..83d26eaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,6 +57,7 @@ pyresample = "*" rasterio = "*" requests = "*" rioxarray = "*" +scikit-learn = "*" scipy = "*" searvey = "*" setuptools = "*" diff --git a/tests/utils/__init__.py b/tests/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/utils/test_cpoint.py b/tests/utils/test_cpoint.py new file mode 100644 index 00000000..082cf30c --- /dev/null +++ b/tests/utils/test_cpoint.py @@ -0,0 +1,23 @@ +from __future__ import annotations + +import pandas as pd +from pyposeidon.utils.cpoint import find_nearest_nodes + + +def test_find_nearest_nodes(): + mesh_nodes = pd.DataFrame({ + "lon": [0, 10, 20], + "lat": [0, 5, 0], + }) + points = pd.DataFrame({ + "lon": [1, 11, 21], + "lat": [1, 4, 1], + "id": ["a", "b", "c"], + }) + nearest_nodes = find_nearest_nodes(mesh_nodes, points) + assert isinstance(nearest_nodes, pd.DataFrame) + assert len(nearest_nodes) == 3 + assert nearest_nodes.columns.tolist() == ["lon", "lat", "id", "mesh_index", "mesh_lon", "mesh_lat", "distance"] + assert nearest_nodes.mesh_index.tolist() == [0, 1, 2] + assert nearest_nodes.distance.min() > 150_000 + assert nearest_nodes.distance.max() < 160_000 From dfe7fe803aa5736117d66006a93421375035ee2b Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Mon, 22 Jul 2024 22:08:53 +0300 Subject: [PATCH 14/26] fix: Let `get_schism_version()` handle development version of schism --- pyposeidon/tools.py | 15 +++++++++------ tests/test_tools.py | 5 +++-- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/pyposeidon/tools.py b/pyposeidon/tools.py index 08a311ea..8701363c 100644 --- a/pyposeidon/tools.py +++ b/pyposeidon/tools.py @@ -160,12 +160,15 @@ def setup_logging( # TODO Handle master/develop version def parse_schism_version(version_output: str) -> str: - try: - version_line = version_output.strip().splitlines()[0] - version = SCHISM_VERSION_PATTERN.match(version_line).group(1) - return version - except Exception as exc: - raise ValueError(f"Failed to parse version from:\n {version_output}") from exc + if "schism develop" in version_output: + version = "develop" + else: + try: + version_line = version_output.strip().splitlines()[0] + version = SCHISM_VERSION_PATTERN.match(version_line).group(1) + except Exception as exc: + raise ValueError(f"Failed to parse version from:\n {version_output}") from exc + return version def get_schism_version() -> str: diff --git a/tests/test_tools.py b/tests/test_tools.py index 1812ba9c..1c281cee 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -24,6 +24,7 @@ ("schism v5.9.0mod", "5.9.0"), ("schism v5.9.0", "5.9.0"), ("schism v5.10.1", "5.10.1"), + ("schism develop", "develop"), ], ) def test_parse_schism_version(version_output, expected_version): @@ -43,7 +44,7 @@ def test_get_schism_version(): @pytest.mark.parametrize("scribes", [-1, 1]) def test_create_schism_mpirun_script(tmp_path, use_threads, ncores, scribes): target_dir = tmp_path.as_posix() - cmd = "/bin/schism" + cmd = "schism" script_name = "launchSchism.sh" script_path = tools.create_schism_mpirun_script( target_dir=target_dir, @@ -68,7 +69,7 @@ def test_create_schism_mpirun_script(tmp_path, use_threads, ncores, scribes): else: assert f"-N {psutil.cpu_count(logical=use_threads)}" in cmd_line if scribes > 0: - assert f"{cmd}) {scribes}" in cmd_line + assert f"/bin/{cmd} {scribes}" in cmd_line @pytest.mark.skipif(not shutil.which("mpirun"), reason="requires MPI backend") From 44113c3cf94fa579ac14d38cb55e811918a978c6 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Mon, 22 Jul 2024 22:10:36 +0300 Subject: [PATCH 15/26] feat: Add `serialize_stations()` --- pyposeidon/utils/obs.py | 69 ++++++++++++++++++++++++++++++++++++++--- tests/utils/test_obs.py | 32 +++++++++++++++++++ 2 files changed, 96 insertions(+), 5 deletions(-) create mode 100644 tests/utils/test_obs.py diff --git a/pyposeidon/utils/obs.py b/pyposeidon/utils/obs.py index 69131d31..8a0ba559 100644 --- a/pyposeidon/utils/obs.py +++ b/pyposeidon/utils/obs.py @@ -1,9 +1,7 @@ -""" -Observational Data retrieval - -""" - +""" Observational Data retrieval """ from __future__ import annotations + +import os from searvey import ioc import pandas as pd import geopandas as gp @@ -105,3 +103,64 @@ def get_obs_data(stations: str | gp.GeoDataFrame, start_time=None, end_time=None data = data.assign_coords({"id": ("ioc_code", sts.id)}).swap_dims({"ioc_code": "id"}).reset_coords("ioc_code") return data + + +def serialize_stations( + stations: pd.DataFrame, + path: os.PathLike[str], + schism_station_flag: str = "1 0 0 0 0 0 0 0 0", +) -> None: + """ + Serialize `stations` metadata to the provided `path`. + + The provided + + Example: + -------- + + >>> stations = pd.DataFrame({ + ... 'lon': [1., 11., 21.], + ... 'lat': [1., 4., 1.], + ... 'unique_id': ["a", "b", "c"], + ... 'extra_col': ["AA", "BB", "CC"], + ... 'mesh_index': [0, 1, 2], + ... 'mesh_lon': [0., 10., 20.], + ... 'mesh_lat': [0., 5., 0.], + ... 'distance': [157249.38127194397, 157010.16264060183, 157249.38127194406], + ... }) + >>> stations + lon lat unique_id extra_col mesh_index mesh_lon mesh_lat distance + 0 1 1 a AA 0 0 0 157249.381272 + 1 11 4 b BB 1 10 5 157010.162641 + 2 21 1 c CC 2 20 0 157249.381272 + >>> serialize_stations(stations, "/tmp/station.in") + + Will create the following output: + + 1 0 0 0 0 0 0 0 0 ! https://schism-dev.github.io/schism/master/input-output/optional-inputs.html#stationin-bp-format + 3 ! number of stations + 1 0.0000000000 0.0000000000 0 ! 0 1.0000000000 1.0000000000 157249.3812719440 AA a + 2 10.0000000000 5.0000000000 0 ! 1 11.0000000000 4.0000000000 157010.1626406018 BB b + 3 20.0000000000 0.0000000000 0 ! 2 21.0000000000 1.0000000000 157249.3812719441 CC c + + """ + # Sanity check + mandatory_cols = {"mesh_index", "mesh_lon", "mesh_lat", "lon", "lat", "distance"} + df_cols = set(stations.columns) + if not df_cols.issuperset(mandatory_cols): + msg = f"stations must have these columns too: {mandatory_cols.difference(df_cols)}" + raise ValueError(msg) + # + basic_cols = ["mesh_lon", "mesh_lat", "z", "separator", "mesh_index", "lon", "lat", "distance"] + extra_cols = df_cols.symmetric_difference(basic_cols).symmetric_difference(["z", "separator"]) + station_in_cols = basic_cols + list(sorted(extra_cols)) + station_in = stations.assign( + z=0, + separator="\t!\t", + ) + station_in = station_in.set_index(station_in.index +1) + station_in = station_in[station_in_cols] + with open(f"{path}", "w") as fd: + fd.write(f"{schism_station_flag.strip()}\t ! https://schism-dev.github.io/schism/master/input-output/optional-inputs.html#stationin-bp-format\n") + fd.write(f"{len(station_in)}\t ! number of stations\n") + station_in.to_csv(fd, header=None, sep=" ", float_format="%.10f") diff --git a/tests/utils/test_obs.py b/tests/utils/test_obs.py new file mode 100644 index 00000000..74f929ca --- /dev/null +++ b/tests/utils/test_obs.py @@ -0,0 +1,32 @@ +from __future__ import annotations + +import textwrap +import pandas as pd + +from pyposeidon.utils.obs import serialize_stations + + +def test_serialize_stations(tmp_path): + expected = textwrap.dedent( + """\ + 1 0 0 0 0 0 0 0 0 ! https://schism-dev.github.io/schism/master/input-output/optional-inputs.html#stationin-bp-format + 3 ! number of stations + 1 0.0000000000 0.0000000000 0 ! 0 1.0000000000 1.0000000000 157249.3812719440 AA a + 2 10.0000000000 5.0000000000 0 ! 1 11.0000000000 4.0000000000 157010.1626406018 BB b + 3 20.0000000000 0.0000000000 0 ! 2 21.0000000000 1.0000000000 157249.3812719441 CC c + """ + ) + stations = pd.DataFrame({ + 'lon': [1., 11., 21.], + 'lat': [1., 4., 1.], + 'unique_id': ["a", "b", "c"], + 'extra_col': ["AA", "BB", "CC"], + 'mesh_index': [0, 1, 2], + 'mesh_lon': [0., 10., 20.], + 'mesh_lat': [0., 5., 0.], + 'distance': [157249.38127194397, 157010.16264060183, 157249.38127194406], + }) + path = tmp_path / "station.in" + serialize_stations(stations, path) + contents = path.read_text() + assert contents == expected From 7ee58c9a23eb444984fb1faf5d8534eedd0f3966 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Fri, 2 Aug 2024 23:42:31 +0300 Subject: [PATCH 16/26] fix: Simplify serialized station.in Including the full IOC metadata can get quite confusing. This version just keeps things simpler. --- pyposeidon/utils/obs.py | 21 ++++++++++----------- tests/utils/test_obs.py | 8 +++++--- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/pyposeidon/utils/obs.py b/pyposeidon/utils/obs.py index 8a0ba559..b9ef34cc 100644 --- a/pyposeidon/utils/obs.py +++ b/pyposeidon/utils/obs.py @@ -1,17 +1,18 @@ """ Observational Data retrieval """ from __future__ import annotations +import itertools import os -from searvey import ioc -import pandas as pd -import geopandas as gp -import numpy as np -import xarray as xr from datetime import datetime -import itertools from typing import Iterable from typing import Iterator +import geopandas as gp +import numpy as np +import pandas as pd +import xarray as xr +from searvey import ioc + def grouper( iterable: Iterable[_T], @@ -145,21 +146,19 @@ def serialize_stations( """ # Sanity check - mandatory_cols = {"mesh_index", "mesh_lon", "mesh_lat", "lon", "lat", "distance"} + mandatory_cols = {"mesh_index", "mesh_lon", "mesh_lat", "depth", "lon", "lat", "distance", "depth", "unique_id"} df_cols = set(stations.columns) if not df_cols.issuperset(mandatory_cols): msg = f"stations must have these columns too: {mandatory_cols.difference(df_cols)}" raise ValueError(msg) # - basic_cols = ["mesh_lon", "mesh_lat", "z", "separator", "mesh_index", "lon", "lat", "distance"] - extra_cols = df_cols.symmetric_difference(basic_cols).symmetric_difference(["z", "separator"]) - station_in_cols = basic_cols + list(sorted(extra_cols)) + basic_cols = ["mesh_lon", "mesh_lat", "z", "separator", "unique_id", "mesh_index", "lon", "lat", "depth", "distance"] station_in = stations.assign( z=0, separator="\t!\t", ) station_in = station_in.set_index(station_in.index +1) - station_in = station_in[station_in_cols] + station_in = station_in[basic_cols] with open(f"{path}", "w") as fd: fd.write(f"{schism_station_flag.strip()}\t ! https://schism-dev.github.io/schism/master/input-output/optional-inputs.html#stationin-bp-format\n") fd.write(f"{len(station_in)}\t ! number of stations\n") diff --git a/tests/utils/test_obs.py b/tests/utils/test_obs.py index 74f929ca..47339538 100644 --- a/tests/utils/test_obs.py +++ b/tests/utils/test_obs.py @@ -1,6 +1,7 @@ from __future__ import annotations import textwrap + import pandas as pd from pyposeidon.utils.obs import serialize_stations @@ -11,9 +12,9 @@ def test_serialize_stations(tmp_path): """\ 1 0 0 0 0 0 0 0 0 ! https://schism-dev.github.io/schism/master/input-output/optional-inputs.html#stationin-bp-format 3 ! number of stations - 1 0.0000000000 0.0000000000 0 ! 0 1.0000000000 1.0000000000 157249.3812719440 AA a - 2 10.0000000000 5.0000000000 0 ! 1 11.0000000000 4.0000000000 157010.1626406018 BB b - 3 20.0000000000 0.0000000000 0 ! 2 21.0000000000 1.0000000000 157249.3812719441 CC c + 1 0.0000000000 0.0000000000 0 ! a 0 1.0000000000 1.0000000000 3 157249.3812719440 + 2 10.0000000000 5.0000000000 0 ! b 1 11.0000000000 4.0000000000 5 157010.1626406018 + 3 20.0000000000 0.0000000000 0 ! c 2 21.0000000000 1.0000000000 1 157249.3812719441 """ ) stations = pd.DataFrame({ @@ -25,6 +26,7 @@ def test_serialize_stations(tmp_path): 'mesh_lon': [0., 10., 20.], 'mesh_lat': [0., 5., 0.], 'distance': [157249.38127194397, 157010.16264060183, 157249.38127194406], + 'depth': [3, 5, 1], }) path = tmp_path / "station.in" serialize_stations(stations, path) From 9ec70349f1e9fbee277d964869ac44056b43f507 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Fri, 2 Aug 2024 23:53:15 +0300 Subject: [PATCH 17/26] tests: Mark failing jigsaw tests as xfail. --- tests/test_mesh_global.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_mesh_global.py b/tests/test_mesh_global.py index 25a3db99..f7164b81 100644 --- a/tests/test_mesh_global.py +++ b/tests/test_mesh_global.py @@ -1,8 +1,9 @@ -import pyposeidon.mesh as pmesh -import numpy as np -import pytest import os + import geopandas as gp +import numpy as np +import pyposeidon.mesh as pmesh +import pytest from . import DATA_DIR @@ -68,6 +69,8 @@ def test_validate(pytestconfig, tmpdir, ggor, cbuffer, bgmesh, bindings): if bgmesh is not None: if not pytestconfig.getoption("--runslow"): pytest.skip("slow test") + if ggor == "jigsaw": + pytest.xfail("Fixing these is a WIP") mesh = pmesh.set( type="tri2d", From b399a024d5361df55b49d9d899063c0ed5a521d0 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Sat, 3 Aug 2024 00:59:12 +0300 Subject: [PATCH 18/26] schism: Update schism to 5.12 --- dependencies/schism_mpich.yml | 3 +- dependencies/schism_openmpi.yml | 3 +- locks/conda-macos-latest-schism_openmpi.lock | 32 +- locks/conda-ubuntu-latest-schism_mpich.lock | 18 +- locks/conda-ubuntu-latest-schism_openmpi.lock | 16 +- locks/schism_mpich.yml | 89 +++--- locks/schism_openmpi.yml | 287 ++++++++++-------- pyposeidon/misc/param.nml | 12 +- pyposeidon/misc/param_val.nml | 1 + pyposeidon/schism.py | 4 - scripts/generate_locks.sh | 4 +- tests/data/models/schism_model.json | 6 +- tests/test_schism.py | 8 +- tests/test_schism_cast.py | 4 +- tests/test_schism_reforecast.py | 4 +- tests/test_schism_total.py | 2 +- 16 files changed, 260 insertions(+), 233 deletions(-) diff --git a/dependencies/schism_mpich.yml b/dependencies/schism_mpich.yml index 6aaa3dd9..349d6cab 100644 --- a/dependencies/schism_mpich.yml +++ b/dependencies/schism_mpich.yml @@ -1,8 +1,7 @@ --- - channels: - "gbrey" - "conda-forge" dependencies: - - "pschism=5.9*=mpi_mpich*" + - "pschism=5.12*=mpi_mpich*" diff --git a/dependencies/schism_openmpi.yml b/dependencies/schism_openmpi.yml index d174ef51..0823a545 100644 --- a/dependencies/schism_openmpi.yml +++ b/dependencies/schism_openmpi.yml @@ -1,8 +1,7 @@ --- - channels: - "gbrey" - "conda-forge" dependencies: - - "pschism=5.9*=mpi_openmpi*" + - "pschism=5.12*=mpi_openmpi*" diff --git a/locks/conda-macos-latest-schism_openmpi.lock b/locks/conda-macos-latest-schism_openmpi.lock index 77f443c3..b581b1d0 100644 --- a/locks/conda-macos-latest-schism_openmpi.lock +++ b/locks/conda-macos-latest-schism_openmpi.lock @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: b3934b25e0dca20664536e385a2cb1583c1cbcb39555b67614e589025e35e3dc +# input_hash: 58c34a38cfafc710f324da8d58fcfeb2c6120f4f02aa665b1f3dd5e50dcf88b1 @EXPLICIT https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda#7df874a4b05b2d2b82826190170eaa0f https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902 @@ -8,24 +8,25 @@ https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9 https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 -https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda#f3a60f050e50631cc20a51c47d70d1b1 +https://conda.anaconda.org/conda-forge/osx-64/metis-5.2.1-h10d778d_0.conda#f68aec416a1565901bc5651f93e91a6c https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-openmpi.tar.bz2#8c3bc725bf4d10fc6e56031f7543771f https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900 -https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda#fef7a52f0eca6bae9e8e2e255bc86394 +https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda#87201ac4314b911b74197e588cca3639 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda#be4a9b58fcf1374aeb79e873c1166e19 +https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.3-h51dda26_0.conda#5487b45a597e142da7839941ab2494a9 https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda#4101cde4241c92aeac310d65e6791579 +https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_2.conda#c21d8b63b5cf5d3290d5a7aa2b028bcc https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda#b7575b5aa92108dcc9aaab0f05f2dbce https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda#2c3c6c8aaf8728f87326964a82fdc7d8 -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda#d838ffe9ec3c6d971f110e04487466ff +https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda#3f3dbeedbee31e257866407d9dea1ff5 https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b https://conda.anaconda.org/conda-forge/osx-64/libaec-1.1.3-h73e2aa4_0.conda#66d3c1f6dd4636216b4fca7a748d50eb +https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda#e38e467e577bd193a7d5de7c2c540b04 https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda#e4fb4d23ec2870ff3c40d10afe305aec https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda#faecc55c2a8155d9ff1c0ff9a0fef64f https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.46.0-h1b8f9f3_0.conda#5dadfbc1a567fe6e475df4ce3148be09 @@ -38,13 +39,14 @@ https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda#3ac9ef8975965f9698dbedd2a4cc5894 https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda#3e5669e51737d04f4806dd3e8c424663 -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda#11711bab5306a6534797a68b3c4c2bed +https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.9.1-hfcf2730_0.conda#6ea09f173c46d135ee6d6845fe50a9c0 https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 -https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda#612763bc5ede9552e4233ec518b9c9fb -https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.6-h7406208_101.conda#ed5a66d291ed28e1e1f9153ab24c3132 -https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_3.conda#44653dc9db58a814697299150d2fde51 -https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_openmpi_h6058191_1.conda#d959c586b99ada8cb9c66c34d47c66e4 -https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-h7eda126_1005.tar.bz2#85ac202630b1ff6eccb4c738ee786911 -https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_openmpi_h00c184e_13.conda#a9ef2d69043aaa8d3e38342ef2c71cbc -https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_openmpi_hd7c84bb_3.conda#2c98c55f1d823b9dc1dc6d47cf9f928c -https://conda.anaconda.org/gbrey/osx-64/pschism-5.9-mpi_openmpi_py3.11_heb6f0c8_0.tar.bz2#36c677bf590e8f753e7269666a05771e +https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.1-default_h456cccd_1000.conda#a14989f6bbea46e6ec4521a403f63ff2 +https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda#94e2b77992f580ac6b7a4fc9b53018b3 +https://conda.anaconda.org/conda-forge/osx-64/openmpi-5.0.5-h62bb914_100.conda#202e3b6817aa4d388d95786db860a20a +https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_5.conda#0ba9a67ee888d192136d7948b212b469 +https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_openmpi_h34b376d_1.conda#05ace7c8dd38d60956afc3925d3e403b +https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hb32e779_1006.conda#e97263d12b8dfde86c81e008c05dfe66 +https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_openmpi_h5b8441b_14.conda#635524711e0a1c86abb3c43c49b6f68a +https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_openmpi_hfd5aa2b_4.conda#fcccec14889cd0207dda71bcadad49e9 +https://conda.anaconda.org/gbrey/osx-64/pschism-5.12rc1-mpi_openmpi_py3.12_he1f297f_0.tar.bz2#7c1d7c0c7b4980ad4ddbbba066d48a94 diff --git a/locks/conda-ubuntu-latest-schism_mpich.lock b/locks/conda-ubuntu-latest-schism_mpich.lock index 901ba5de..d9f3de2d 100644 --- a/locks/conda-ubuntu-latest-schism_mpich.lock +++ b/locks/conda-ubuntu-latest-schism_mpich.lock @@ -1,17 +1,17 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: e1c15db7b8161416b2e210f261b9bd313a8bf6df8eac6c70bb99962df3cec410 +# input_hash: 12982151edb65cea1e7287f6e115d393ca030e0469ec7c90d9fd6feadf49f767 @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-mpich.tar.bz2#c1fcff3417b5a22bbc4cf6e8c23648cf -https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65 +https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda#dccc2d142812964fcc6abdc97b672dff https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2#562b26ba2e19059551a811e72ab7f793 https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.3-h4bc722e_0.conda#7624e34ee6baebfc80d67bac76cc9d9d https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d @@ -24,9 +24,9 @@ https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.c https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 -https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda#9ba5910c34210e7ad60736d172bbcd4c +https://conda.anaconda.org/conda-forge/linux-64/metis-5.2.1-hd590300_0.conda#ef92aaa05681cfa4ec97cb3b4140d7f6 https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda#e1b454497f9f7c1147fdde4b53f1b512 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3 @@ -47,12 +47,12 @@ https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda#54 https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f43953b7d3fb3aaa1d0d0723d91e368 https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda#08a9265c637230c37cb1be4a6cad4536 https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.8-hf5423f3_0.conda#322be9d39e030673e105b0abb320514e -https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_100.conda#57413013e812d1a544e0b4d02ba868be -https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda#ac68acfa8b558ed406c75e98d3428d7b -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_101.conda#b4cdd5ee00e999edf626ae49ff6feac2 +https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda#d73490214f536cccb5819e9873048c92 +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.9.1-hdb1bdb2_0.conda#7da1d242ca3591e174a3c7d82230d3c0 https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.13.0-mpi_mpich_hdf74816_101.conda#530c4090cb7aaf239783e23167cbff80 https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-h583469f_1006.conda#7bf58fa5868ae3cf8895deb430cc0810 https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_mpich_h0f54ddc_5.conda#f55c36b28c66cd668e0974367ec02dc9 https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_mpich_h761946e_14.conda#ac6ab66e2aebf2964efe4228e98d4c31 https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_mpich_hae0ac1c_4.conda#190375cb969cb9eff866863b2feb17d3 -https://conda.anaconda.org/gbrey/linux-64/pschism-5.9-mpi_mpich_py3.11_h20204e6_0.tar.bz2#3a9b7ca0d10f41a0176638c7f97dbefe +https://conda.anaconda.org/gbrey/linux-64/pschism-5.12rc1-mpi_mpich_py3.12_h9b08840_0.tar.bz2#22d7d538266a96143e1033cf6470d83c diff --git a/locks/conda-ubuntu-latest-schism_openmpi.lock b/locks/conda-ubuntu-latest-schism_openmpi.lock index 3b540ad1..03050f8e 100644 --- a/locks/conda-ubuntu-latest-schism_openmpi.lock +++ b/locks/conda-ubuntu-latest-schism_openmpi.lock @@ -1,17 +1,17 @@ # Generated by conda-lock. # platform: linux-64 -# input_hash: 150e6d1481d7e7c34b45933f118e166be28a37011c47d5605f98ad6ad9c0a8e8 +# input_hash: 139374acc37cd2670b94f3fe148025ec70499ba59601f5d95d820a350078174d @EXPLICIT https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2#d7c89558ba9fa0495403155b64376d81 https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda#23ab7665c5f63cfb9f1f6195256daac6 https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda#b80f2f396ca2c28b8c14c437a4ed1e74 https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-openmpi.tar.bz2#1dcc49e16749ff79ba2194fa5d4ca5e7 -https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda#d786502c97404c94d7d58d258a445a65 +https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda#dccc2d142812964fcc6abdc97b672dff https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2#562b26ba2e19059551a811e72ab7f793 https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h77fa898_0.conda#ca0fad6a41ddaef54a153b78eccb5037 https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda#62ee74e96c5ebb0af99386de58cf9553 -https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda#8024af1ee7078e37fa3101c0a0296af2 +https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.3-h4bc722e_0.conda#7624e34ee6baebfc80d67bac76cc9d9d https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2#30186d27e2c9fa62b45fb1476b7200e3 https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda#172bf1cd1ff8629f2b1179945ed45055 https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda#e7ba12deb7020dd080c6c70e7b6f6a3d @@ -24,9 +24,9 @@ https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.c https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda#40b61aab5c7ba9ff276c41cfffe6b80b https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda#5aa797f8787fe7a17d1b0821485b5adc https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda#57d7dc60e9325e3de37ff8dffd18e814 -https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda#9ba5910c34210e7ad60736d172bbcd4c +https://conda.anaconda.org/conda-forge/linux-64/metis-5.2.1-hd590300_0.conda#ef92aaa05681cfa4ec97cb3b4140d7f6 https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda#fcea371545eda051b6deafb24889fc69 -https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda#b1e9d076f14e8d776213fd5047b4c3d9 +https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda#e1b454497f9f7c1147fdde4b53f1b512 https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2#2161070d867d1b1204ea749c8eec4ef0 https://conda.anaconda.org/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda#bd77f8da987968ec3927990495dc22e4 https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda#8b189310083baabfb622af68fd9d3ae3 @@ -48,11 +48,11 @@ https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda#3f4 https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-he7c6b58_4.conda#08a9265c637230c37cb1be4a6cad4536 https://conda.anaconda.org/conda-forge/linux-64/llvm-openmp-18.1.8-hf5423f3_0.conda#322be9d39e030673e105b0abb320514e https://conda.anaconda.org/conda-forge/linux-64/openmpi-4.1.6-hc5af2df_101.conda#f9a2ad0088ee38f396350515fa37d243 -https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda#ac68acfa8b558ed406c75e98d3428d7b -https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda#b8afb3e3cb3423cc445cf611ab95fdb0 +https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda#d73490214f536cccb5819e9873048c92 +https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.9.1-hdb1bdb2_0.conda#7da1d242ca3591e174a3c7d82230d3c0 https://conda.anaconda.org/conda-forge/linux-64/libpnetcdf-1.12.3-mpi_openmpi_hbcf1124_1.conda#5fbe5f8586dd06acb1804e8f67917020 https://conda.anaconda.org/conda-forge/linux-64/parmetis-4.0.3-he9a3056_1005.tar.bz2#160999f9228e8aac87dc170f0810bc74 https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.3-mpi_openmpi_hf5a2fd3_4.conda#68a52e59d1c1ffae2be9a578fe1d5f21 https://conda.anaconda.org/conda-forge/linux-64/libnetcdf-4.9.2-mpi_openmpi_h958ee74_13.conda#6ed253a989a85fba7c19adf75bcb3769 https://conda.anaconda.org/conda-forge/linux-64/netcdf-fortran-4.6.1-mpi_openmpi_hc1a8302_3.conda#236e1b6f0b67f95fd93b574260270cde -https://conda.anaconda.org/gbrey/linux-64/pschism-5.9-mpi_openmpi_py3.11_h76d1ad9_0.tar.bz2#5fa11d2b4eef83ce3dd8e6cc1f0db78f +https://conda.anaconda.org/gbrey/linux-64/pschism-5.12rc1-mpi_openmpi_py3.12_h1e3c40f_0.tar.bz2#17825936217b3dcf7413bf5784a8fd99 diff --git a/locks/schism_mpich.yml b/locks/schism_mpich.yml index 87b1520f..f5564163 100644 --- a/locks/schism_mpich.yml +++ b/locks/schism_mpich.yml @@ -13,7 +13,7 @@ version: 1 metadata: content_hash: - linux-64: e1c15db7b8161416b2e210f261b9bd313a8bf6df8eac6c70bb99962df3cec410 + linux-64: 12982151edb65cea1e7287f6e115d393ca030e0469ec7c90d9fd6feadf49f767 osx-64: 54746a047f64f0edf6c82a5f6ca0b9ff42b50f9f82d42bc6069abd21964abca2 channels: - url: gbrey @@ -111,16 +111,16 @@ package: category: main optional: false - name: c-ares - version: 1.32.2 + version: 1.32.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.3-h4bc722e_0.conda hash: - md5: 8024af1ee7078e37fa3101c0a0296af2 - sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 + md5: 7624e34ee6baebfc80d67bac76cc9d9d + sha256: 3c5a844bb60b0d52d89c3f1bd828c9856417fe33a6102fd8bbd5c13c3351704a category: main optional: false - name: c-ares @@ -332,7 +332,7 @@ package: category: main optional: false - name: libcurl - version: 8.8.0 + version: 8.9.1 manager: conda platform: linux-64 dependencies: @@ -340,13 +340,13 @@ package: libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<2.0a0' + libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.1,<4.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.9.1-hdb1bdb2_0.conda hash: - md5: b8afb3e3cb3423cc445cf611ab95fdb0 - sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 + md5: 7da1d242ca3591e174a3c7d82230d3c0 + sha256: 0ba60f83709068e9ec1ab543af998cb5a201c8379c871205447684a34b5abfd8 category: main optional: false - name: libcurl @@ -937,15 +937,15 @@ package: category: main optional: false - name: metis - version: 5.1.1 + version: 5.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.2.1-hd590300_0.conda hash: - md5: 9ba5910c34210e7ad60736d172bbcd4c - sha256: d8b9f76bb61ee19217f263824f1c6534e606313a84fbfdb3715b572e1f14aa3f + md5: ef92aaa05681cfa4ec97cb3b4140d7f6 + sha256: b011dc43985be6e9639cd89e5c2aee653c2e37a000a54eaeba81d6dc9cfb8cbf category: main optional: false - name: metis @@ -989,13 +989,13 @@ package: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' libgfortran-ng: '' - libgfortran5: '>=12.3.0' + libgfortran5: '>=12.4.0' libstdcxx-ng: '>=12' mpi: '1.0' - url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_100.conda + url: https://conda.anaconda.org/conda-forge/linux-64/mpich-4.2.2-h4a7f18d_101.conda hash: - md5: 57413013e812d1a544e0b4d02ba868be - sha256: 915e2f3f8ab95256ece47ff7021a9c531632515ba1118f2ab65087c4d9427ab0 + md5: b4cdd5ee00e999edf626ae49ff6feac2 + sha256: 287298cce4187881ef54a3e6b733d2d3f5e796d36829b4dbb125729bbe3a55e4 category: main optional: false - name: mpich @@ -1076,12 +1076,13 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda hash: - md5: b1e9d076f14e8d776213fd5047b4c3d9 - sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 + md5: e1b454497f9f7c1147fdde4b53f1b512 + sha256: b294b3cc706ad1048cdb514f0db3da9f37ae3fcc0c53a7104083dd0918adb200 category: main optional: false - name: openssl @@ -1126,26 +1127,26 @@ package: category: main optional: false - name: pschism - version: '5.9' + version: 5.12rc1 manager: conda platform: linux-64 dependencies: _openmp_mutex: '>=4.5' libgcc-ng: '>=12' libgfortran-ng: '' - libgfortran5: '>=11.3.0' + libgfortran5: '>=12.4.0' libstdcxx-ng: '>=12' - llvm-openmp: '>=16.0.1' - metis: '>=5.1.0,<5.2.0a0' - mpich: '>=4.1.1,<5.0a0' - netcdf-fortran: '>=4.6.0,<4.7.0a0' + llvm-openmp: '>=18.1.8' + metis: '>=5.2.1,<5.2.2.0a0' + mpich: '>=4.2.2,<5.0a0' + netcdf-fortran: '>=4.6.1,<4.7.0a0' parmetis: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://conda.anaconda.org/gbrey/linux-64/pschism-5.9-mpi_mpich_py3.11_h20204e6_0.tar.bz2 + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/gbrey/linux-64/pschism-5.12rc1-mpi_mpich_py3.12_h9b08840_0.tar.bz2 hash: - md5: 3a9b7ca0d10f41a0176638c7f97dbefe - sha256: 67503a2a14982eb2c33a6056c3281f2db605d3fb934e713e8b57f48318a7d663 + md5: 22d7d538266a96143e1033cf6470d83c + sha256: 64dc0770b10575ec61892319353b8b2014a3a01f18e24fddd8a6ae807c601d9b category: main optional: false - name: pschism @@ -1170,7 +1171,7 @@ package: category: main optional: false - name: python - version: 3.11.9 + version: 3.12.4 manager: conda platform: linux-64 dependencies: @@ -1180,20 +1181,20 @@ package: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.45.3,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<2.0.0a0' - ncurses: '>=6.4.20240210,<7.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + ncurses: '>=6.5,<7.0a0' + openssl: '>=3.3.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda hash: - md5: ac68acfa8b558ed406c75e98d3428d7b - sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 + md5: d73490214f536cccb5819e9873048c92 + sha256: 97a78631e6c928bf7ad78d52f7f070fcf3bd37619fa48dc4394c21cf3058cdee category: main optional: false - name: python @@ -1220,14 +1221,14 @@ package: category: main optional: false - name: python_abi - version: '3.11' + version: '3.12' manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda hash: - md5: d786502c97404c94d7d58d258a445a65 - sha256: 0be3ac1bf852d64f553220c7e6457e9c047dfb7412da9d22fbaa67e60858b3cf + md5: dccc2d142812964fcc6abdc97b672dff + sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6 category: main optional: false - name: python_abi diff --git a/locks/schism_openmpi.yml b/locks/schism_openmpi.yml index 44047bfb..7b6d6f77 100644 --- a/locks/schism_openmpi.yml +++ b/locks/schism_openmpi.yml @@ -13,8 +13,8 @@ version: 1 metadata: content_hash: - linux-64: 150e6d1481d7e7c34b45933f118e166be28a37011c47d5605f98ad6ad9c0a8e8 - osx-64: b3934b25e0dca20664536e385a2cb1583c1cbcb39555b67614e589025e35e3dc + linux-64: 139374acc37cd2670b94f3fe148025ec70499ba59601f5d95d820a350078174d + osx-64: 58c34a38cfafc710f324da8d58fcfeb2c6120f4f02aa665b1f3dd5e50dcf88b1 channels: - url: gbrey used_env_vars: [] @@ -111,28 +111,28 @@ package: category: main optional: false - name: c-ares - version: 1.32.2 + version: 1.32.3 manager: conda platform: linux-64 dependencies: __glibc: '>=2.17,<3.0.a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.2-h4bc722e_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.32.3-h4bc722e_0.conda hash: - md5: 8024af1ee7078e37fa3101c0a0296af2 - sha256: d1b01f9e3d10b97fd09e19fda0caf9bfad3c884a6b19fb3f654a9aed02a70b58 + md5: 7624e34ee6baebfc80d67bac76cc9d9d + sha256: 3c5a844bb60b0d52d89c3f1bd828c9856417fe33a6102fd8bbd5c13c3351704a category: main optional: false - name: c-ares - version: 1.32.2 + version: 1.32.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.3-h51dda26_0.conda hash: - md5: be4a9b58fcf1374aeb79e873c1166e19 - sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 + md5: 5487b45a597e142da7839941ab2494a9 + sha256: 2454287fa7d32b2cd089ad2bb46c8f8634b6f409d6fa8892c37ccc66134ec076 category: main optional: false - name: ca-certificates @@ -218,12 +218,12 @@ package: libgfortran: 5.* libgfortran5: '>=13.2.0' libzlib: '>=1.2.13,<2.0a0' - openmpi: '>=4.1.6,<5.0a0' - openssl: '>=3.3.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_3.conda + openmpi: '>=5.0.3,<6.0a0' + openssl: '>=3.3.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_openmpi_hdac8f8d_5.conda hash: - md5: 44653dc9db58a814697299150d2fde51 - sha256: 7ca3a936fb99627a8e054a7837ec5d290b65d854bc0a29f42ce6f040ee15421c + md5: 0ba9a67ee888d192136d7948b212b469 + sha256: e24bce447835115eacc04b45a4b46564c430e503ee564377275339267e36330f category: main optional: false - name: icu @@ -332,7 +332,7 @@ package: category: main optional: false - name: libcurl - version: 8.8.0 + version: 8.9.1 manager: conda platform: linux-64 dependencies: @@ -340,30 +340,30 @@ package: libgcc-ng: '>=12' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<2.0a0' + libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.1,<4.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.8.0-hca28451_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.9.1-hdb1bdb2_0.conda hash: - md5: b8afb3e3cb3423cc445cf611ab95fdb0 - sha256: 6b5b64cdcdb643368ebe236de07eedee99b025bb95129bbe317c46e5bdc693f3 + md5: 7da1d242ca3591e174a3c7d82230d3c0 + sha256: 0ba60f83709068e9ec1ab543af998cb5a201c8379c871205447684a34b5abfd8 category: main optional: false - name: libcurl - version: 8.8.0 + version: 8.9.1 manager: conda platform: osx-64 dependencies: krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<2.0a0' + libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.1,<4.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.9.1-hfcf2730_0.conda hash: - md5: 11711bab5306a6534797a68b3c4c2bed - sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 + md5: 6ea09f173c46d135ee6d6845fe50a9c0 + sha256: a7ce066fbb2d34f7948d8e5da30d72ff01f0a5bcde05ea46fa2d647eeedad3a7 category: main optional: false - name: libcxx @@ -372,10 +372,10 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_2.conda hash: - md5: 4101cde4241c92aeac310d65e6791579 - sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 + md5: c21d8b63b5cf5d3290d5a7aa2b028bcc + sha256: d63c2c723014fd7c27bfbc69aff3c09975d00755d1821b1d2304303b08b2e560 category: main optional: false - name: libedit @@ -426,6 +426,18 @@ package: sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 category: main optional: false +- name: libevent + version: 2.1.12 + manager: conda + platform: osx-64 + dependencies: + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libevent-2.1.12-ha90c15b_1.conda + hash: + md5: e38e467e577bd193a7d5de7c2c540b04 + sha256: e0bd9af2a29f8dd74309c0ae4f17a7c2b8c4b89f875ff1d6540c941eefbd07fb + category: main + optional: false - name: libexpat version: 2.6.2 manager: conda @@ -533,6 +545,20 @@ package: sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b category: main optional: false +- name: libhwloc + version: 2.11.1 + manager: conda + platform: osx-64 + dependencies: + __osx: '>=10.13' + libcxx: '>=16' + libxml2: '>=2.12.7,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.11.1-default_h456cccd_1000.conda + hash: + md5: a14989f6bbea46e6ec4521a403f63ff2 + sha256: 0b5294c8e8fc5f9faab7e54786c5f3c4395ee64b5577a1f2ae687a960e089624 + category: main + optional: false - name: libiconv version: '1.17' manager: conda @@ -611,26 +637,26 @@ package: manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' blosc: '>=1.21.5,<2.0a0' bzip2: '>=1.0.8,<2.0a0' hdf4: '>=4.2.15,<4.2.16.0a0' hdf5: '>=1.14.3,<1.14.4.0a0' - libaec: '>=1.1.2,<2.0a0' - libcurl: '>=8.5.0,<9.0a0' - libcxx: '>=16.0.6' - libpnetcdf: '>=1.12.3,<1.12.4.0a0' - libxml2: '>=2.12.2,<3.0.0a0' + libaec: '>=1.1.3,<2.0a0' + libcurl: '>=8.8.0,<9.0a0' + libcxx: '>=16' + libpnetcdf: '>=1.13.0,<1.13.1.0a0' + libxml2: '>=2.12.7,<3.0a0' libzip: '>=1.10.1,<2.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - openmpi: '>=4.1.6,<5.0a0' - openssl: '>=3.2.0,<4.0a0' + libzlib: '>=1.2.13,<2.0a0' + openmpi: '>=5.0.3,<6.0a0' + openssl: '>=3.3.1,<4.0a0' zlib: '' - zstd: '>=1.5.5,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_openmpi_h00c184e_13.conda + zstd: '>=1.5.6,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_openmpi_h5b8441b_14.conda hash: - md5: a9ef2d69043aaa8d3e38342ef2c71cbc - sha256: b3dc3b2c048fbd6c447dd09cb4017e58b1a67842461e4f48d13e1ef3107db476 + md5: 635524711e0a1c86abb3c43c49b6f68a + sha256: 4e05b5394129da227b10c9ffa7517f1e8cf8e5d7edf82b1b59df4e5c27a90a45 category: main optional: false - name: libnghttp2 @@ -696,18 +722,19 @@ package: category: main optional: false - name: libpnetcdf - version: 1.12.3 + version: 1.13.0 manager: conda platform: osx-64 dependencies: - libcxx: '>=15.0.7' + __osx: '>=10.13' + libcxx: '>=16' libgfortran: 5.* - libgfortran5: '>=12.2.0' - openmpi: '>=4.1.5,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.12.3-mpi_openmpi_h6058191_1.conda + libgfortran5: '>=13.2.0' + openmpi: '>=5.0.3,<6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_openmpi_h34b376d_1.conda hash: - md5: d959c586b99ada8cb9c66c34d47c66e4 - sha256: 6268dc3e79e4959b0397e4030e32ca14dfcb604d42e23bacc0e6e1b6112c002c + md5: 05ace7c8dd38d60956afc3925d3e403b + sha256: 01d148b030b8542e6c3793c4b4b125cff3d1a21ffe5d8ade68cc996fadd5331d category: main optional: false - name: libsqlite @@ -936,26 +963,26 @@ package: category: main optional: false - name: metis - version: 5.1.1 + version: 5.2.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.1-h59595ed_2.conda + url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.2.1-hd590300_0.conda hash: - md5: 9ba5910c34210e7ad60736d172bbcd4c - sha256: d8b9f76bb61ee19217f263824f1c6534e606313a84fbfdb3715b572e1f14aa3f + md5: ef92aaa05681cfa4ec97cb3b4140d7f6 + sha256: b011dc43985be6e9639cd89e5c2aee653c2e37a000a54eaeba81d6dc9cfb8cbf category: main optional: false - name: metis - version: 5.1.1 + version: 5.2.1 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.2.1-h10d778d_0.conda hash: - md5: f3a60f050e50631cc20a51c47d70d1b1 - sha256: 522bab6afc78cf858b19e89f8f01c092a1559ebdc4e41f5909684b4ad6375ee0 + md5: f68aec416a1565901bc5651f93e91a6c + sha256: e94b124ce3ae2eb0c2daf2f7c1ce07a4a9f6b67c605f4b6aa4f4e20d4f21f084 category: main optional: false - name: mpi @@ -1025,15 +1052,16 @@ package: manager: conda platform: osx-64 dependencies: - hdf5: '>=1.14.2,<1.14.4.0a0' + __osx: '>=10.13' + hdf5: '>=1.14.3,<1.14.4.0a0' libgfortran: 5.* libgfortran5: '>=13.2.0' libnetcdf: '>=4.9.2,<4.9.3.0a0' - openmpi: '>=4.1.6,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_openmpi_hd7c84bb_3.conda + openmpi: '>=5.0.3,<6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_openmpi_hfd5aa2b_4.conda hash: - md5: 2c98c55f1d823b9dc1dc6d47cf9f928c - sha256: fdc396e720548813fbd74f5a00bfe7733fa868660bcb114a391974427dacd74b + md5: fcccec14889cd0207dda71bcadad49e9 + sha256: 4664e2a5b789552e4db076450b1fa17e3a6610b890bc5e290f0b42ff35b70256 category: main optional: false - name: openmpi @@ -1055,21 +1083,22 @@ package: category: main optional: false - name: openmpi - version: 4.1.6 + version: 5.0.5 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' - libcxx: '>=16.0.6' + __osx: '>=10.13' + libcxx: '>=16' + libevent: '>=2.1.12,<2.1.13.0a0' libgfortran: 5.* libgfortran5: '>=13.2.0' - libzlib: '>=1.2.13,<2.0.0a0' + libhwloc: '>=2.11.1,<2.11.2.0a0' + libzlib: '>=1.3.1,<2.0a0' mpi: '1.0' - zlib: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openmpi-4.1.6-h7406208_101.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openmpi-5.0.5-h62bb914_100.conda hash: - md5: ed5a66d291ed28e1e1f9153ab24c3132 - sha256: ec9826d23e72acc6311e3e8a96a340d22b8ec9b72a66567c7fe21853e422851e + md5: 202e3b6817aa4d388d95786db860a20a + sha256: bedb722846b87059dca2cc1d7b51945a7489227e4d7399ef136dc7c1a23edd0c category: main optional: false - name: openssl @@ -1077,12 +1106,13 @@ package: manager: conda platform: linux-64 dependencies: + __glibc: '>=2.17,<3.0.a0' ca-certificates: '' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4bc722e_2.conda hash: - md5: b1e9d076f14e8d776213fd5047b4c3d9 - sha256: ff3faf8d4c1c9aa4bd3263b596a68fcc6ac910297f354b2ce28718a3509db6d9 + md5: e1b454497f9f7c1147fdde4b53f1b512 + sha256: b294b3cc706ad1048cdb514f0db3da9f37ae3fcc0c53a7104083dd0918adb200 category: main optional: false - name: openssl @@ -1092,10 +1122,10 @@ package: dependencies: __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda hash: - md5: d838ffe9ec3c6d971f110e04487466ff - sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 + md5: 3f3dbeedbee31e257866407d9dea1ff5 + sha256: 3cb0c05fbfd8cdb9b767396fc0e0af2d78eb4d68592855481254104330d4a4eb category: main optional: false - name: parmetis @@ -1117,60 +1147,61 @@ package: manager: conda platform: osx-64 dependencies: - libcxx: '>=11.1.0' - openmpi: '>=4.1,<4.2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-h7eda126_1005.tar.bz2 + __osx: '>=10.13' + libcxx: '>=16' + openmpi: '>=5.0.3,<6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hb32e779_1006.conda hash: - md5: 85ac202630b1ff6eccb4c738ee786911 - sha256: 127e079b8e219e0e796a7df9d4dc79b7a73a2a574fd4046c5ebb6e26fb5174e1 + md5: e97263d12b8dfde86c81e008c05dfe66 + sha256: 0d5b31757568f0452c202b01d8f6f5ce001f1fcb1afde691848daeb55c5fc9ea category: main optional: false - name: pschism - version: '5.9' + version: 5.12rc1 manager: conda platform: linux-64 dependencies: _openmp_mutex: '>=4.5' libgcc-ng: '>=12' libgfortran-ng: '' - libgfortran5: '>=11.3.0' + libgfortran5: '>=12.4.0' libstdcxx-ng: '>=12' - llvm-openmp: '>=16.0.1' - metis: '>=5.1.0,<5.2.0a0' - netcdf-fortran: '>=4.6.0,<4.7.0a0' - openmpi: '>=4.1.5,<5.0a0' + llvm-openmp: '>=18.1.8' + metis: '>=5.2.1,<5.2.2.0a0' + netcdf-fortran: '>=4.6.1,<4.7.0a0' + openmpi: '>=4.1.6,<5.0a0' parmetis: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://conda.anaconda.org/gbrey/linux-64/pschism-5.9-mpi_openmpi_py3.11_h76d1ad9_0.tar.bz2 + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/gbrey/linux-64/pschism-5.12rc1-mpi_openmpi_py3.12_h1e3c40f_0.tar.bz2 hash: - md5: 5fa11d2b4eef83ce3dd8e6cc1f0db78f - sha256: 8225f79c2a40a64e6d619f3dec1ea70d41c7567cf096b0cd6f6cbba3f2d41bc1 + md5: 17825936217b3dcf7413bf5784a8fd99 + sha256: 2c463403c39a9abe0fb22de9bc0f5fd702b6fc015c6fb3f578981640873488f8 category: main optional: false - name: pschism - version: '5.9' + version: 5.12rc1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' + libcxx: '>=16' libgfortran: 5.* - libgfortran5: '>=12.2.0' - llvm-openmp: '>=16.0.1' - metis: '>=5.1.0,<5.2.0a0' - netcdf-fortran: '>=4.6.0,<4.7.0a0' - openmpi: '>=4.1.5,<5.0a0' + libgfortran5: '>=13.2.0' + llvm-openmp: '>=18.1.8' + metis: '>=5.2.1,<5.2.2.0a0' + netcdf-fortran: '>=4.6.1,<4.7.0a0' + openmpi: '>=5.0.3,<6.0a0' parmetis: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://conda.anaconda.org/gbrey/osx-64/pschism-5.9-mpi_openmpi_py3.11_heb6f0c8_0.tar.bz2 + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/gbrey/osx-64/pschism-5.12rc1-mpi_openmpi_py3.12_he1f297f_0.tar.bz2 hash: - md5: 36c677bf590e8f753e7269666a05771e - sha256: 1b75e40735bbf03cb5b641e4e131db864c31f01eaf15e4363f3d8f813389f1f5 + md5: 7c1d7c0c7b4980ad4ddbbba066d48a94 + sha256: d0bd48146035b6b77ecf844a2feffc9667e3d78c651958f6dbb3db806cfd5683 category: main optional: false - name: python - version: 3.11.9 + version: 3.12.4 manager: conda platform: linux-64 dependencies: @@ -1180,65 +1211,65 @@ package: libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' libnsl: '>=2.0.1,<2.1.0a0' - libsqlite: '>=3.45.3,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' libuuid: '>=2.38.1,<3.0a0' libxcrypt: '>=4.4.36' - libzlib: '>=1.2.13,<2.0.0a0' - ncurses: '>=6.4.20240210,<7.0a0' - openssl: '>=3.2.1,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + ncurses: '>=6.5,<7.0a0' + openssl: '>=3.3.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda hash: - md5: ac68acfa8b558ed406c75e98d3428d7b - sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 + md5: d73490214f536cccb5819e9873048c92 + sha256: 97a78631e6c928bf7ad78d52f7f070fcf3bd37619fa48dc4394c21cf3058cdee category: main optional: false - name: python - version: 3.11.9 + version: 3.12.4 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.45.3,<4.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - ncurses: '>=6.4.20240210,<7.0a0' - openssl: '>=3.2.1,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + ncurses: '>=6.5,<7.0a0' + openssl: '>=3.3.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda hash: - md5: 612763bc5ede9552e4233ec518b9c9fb - sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c + md5: 94e2b77992f580ac6b7a4fc9b53018b3 + sha256: 677958ee90eff229755d4e0ed40af6d835c9131e863b1539b34bbf07d7a775f3 category: main optional: false - name: python_abi - version: '3.11' + version: '3.12' manager: conda platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-4_cp311.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda hash: - md5: d786502c97404c94d7d58d258a445a65 - sha256: 0be3ac1bf852d64f553220c7e6457e9c047dfb7412da9d22fbaa67e60858b3cf + md5: dccc2d142812964fcc6abdc97b672dff + sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6 category: main optional: false - name: python_abi - version: '3.11' + version: '3.12' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda hash: - md5: fef7a52f0eca6bae9e8e2e255bc86394 - sha256: f56dfe2a57b3b27bad3f9527f943548e8b2526e949d9d6fc0a383020d9359afe + md5: 87201ac4314b911b74197e588cca3639 + sha256: 82c154d95c1637604671a02a89e72f1382e89a4269265a03506496bd928f6f14 category: main optional: false - name: readline diff --git a/pyposeidon/misc/param.nml b/pyposeidon/misc/param.nml index 21e9273a..04be37ea 100644 --- a/pyposeidon/misc/param.nml +++ b/pyposeidon/misc/param.nml @@ -30,6 +30,9 @@ sed_class = 5 !SED3D (USE_SED) eco_class = 27 !EcoSim (USE_ECO): must be between [25,60] +! # of vertical bins in vegetation module (used only if iveg/=0) + nbins_veg_vert = 2 + ! Global output controls nspool = 9 !output step spool ihfskip = 36 !stack spool; every ihfskip steps will be put into 1_*, 2_*, etc... @@ -499,10 +502,6 @@ drampwind = 1. !needed if nrampwind/=0; ramp-up period in days ! iwindoff = 0 !needed only if nws/=0; '1': needs windfactor.gr3 iwind_form = -1 !needed if nws/=0 - !If impose_net_flux/=0 and nws=2, read in net _surface_ heat flux as var 'dlwrf' - !(Downward Long Wave) in sflux_rad (solar radiation is still used separately), - !and if PREC_EVAP is on, also read in net P-E as 'prate' (Surface Precipitation Rate) in sflux_prc. - impose_net_flux = 0 !----------------------------------------------------------------------- ! Heat and salt exchange. isconsv=1 needs ihconsv=1; ihconsv=1 needs nws=2. @@ -650,7 +649,7 @@ ! If one of these depths=0 at a node, the code will set all to 0. ! If USE_MARSH is on and isav=1, all .gr3 must have constant depths! !---------------------------------------------------------------------- - isav = 0 !on/off flag + iveg = 0 !on/off flag !---------------------------------------------------------------------- ! Coupling step with ICE module. @@ -763,8 +762,7 @@ iof_hydro(22) = 0 !eddy viscosity [m^2/s] {viscosity} iof_hydro(23) = 0 !turbulent kinetic energy {TKE} iof_hydro(24) = 0 !turbulent mixing length [m] {mixing_length} - iof_hydro(25) = 1 !horizontal vel vector [m/s] {hvel} - + iof_hydro(25) = 0 !horizontal vel vector [m/s] {hvel} iof_hydro(26) = 0 !horizontal vel vector defined @side [m/s] {hvel_side} iof_hydro(27) = 0 !vertical vel. @elem [m/s] {wvel_elem} iof_hydro(28) = 0 !T @prism centers [C] {temp_elem} diff --git a/pyposeidon/misc/param_val.nml b/pyposeidon/misc/param_val.nml index e5a5fb3d..d0fd36bf 100644 --- a/pyposeidon/misc/param_val.nml +++ b/pyposeidon/misc/param_val.nml @@ -10,6 +10,7 @@ ntracer_age = 4 sed_class = 5 eco_class = 27 + nbins_veg_vert = 2 nspool = 12 ihfskip = 48 / diff --git a/pyposeidon/schism.py b/pyposeidon/schism.py index 166b9f9f..ea76804d 100644 --- a/pyposeidon/schism.py +++ b/pyposeidon/schism.py @@ -1335,9 +1335,6 @@ def results(self, **kwargs): # fix fortran/python index x2d["SCHISM_hgrid_face_nodes"][:, :3] = x2d["SCHISM_hgrid_face_nodes"].values[:, :3] - 1 # set time to Datetime - times = pd.to_datetime(x2d.time.values, unit="s", origin=sdate.tz_convert(None)) - - x2d = x2d.assign_coords({"time": ("time", times, x2d.time.attrs)}) logger.info("get combined 3D netcdf files \n") @@ -1349,7 +1346,6 @@ def results(self, **kwargs): # read x3d = xr.open_mfdataset(xfiles, data_vars="minimal") # set time to Datetime - x3d = x3d.assign_coords({"time": ("time", times, x3d.time.attrs)}) x3d.to_netcdf(os.path.join(path, "outputs/schout_2.nc")) # save 2D variables to file diff --git a/scripts/generate_locks.sh b/scripts/generate_locks.sh index ad766b29..264418e1 100755 --- a/scripts/generate_locks.sh +++ b/scripts/generate_locks.sh @@ -5,11 +5,11 @@ set -xeuo pipefail # Schism conda-lock lock --mamba --check-input-hash -p linux-64 -p osx-64 -f dependencies/schism_openmpi.yml --lockfile locks/schism_openmpi.yml -conda-lock lock --mamba --check-input-hash -p linux-64 -p osx-64 -f dependencies/schism_mpich.yml --lockfile locks/schism_mpich.yml +conda-lock lock --mamba --check-input-hash -p linux-64 -f dependencies/schism_mpich.yml --lockfile locks/schism_mpich.yml conda-lock render -p linux-64 --filename-template locks/conda-ubuntu-latest-schism_openmpi.lock locks/schism_openmpi.yml conda-lock render -p linux-64 --filename-template locks/conda-ubuntu-latest-schism_mpich.lock locks/schism_mpich.yml conda-lock render -p osx-64 --filename-template locks/conda-macos-latest-schism_openmpi.lock locks/schism_openmpi.yml -conda-lock render -p osx-64 --filename-template locks/conda-macos-latest-schism_mpich.lock locks/schism_mpich.yml +#conda-lock render -p osx-64 --filename-template locks/conda-macos-latest-schism_mpich.lock locks/schism_mpich.yml # delft3d conda-lock lock --mamba --check-input-hash -p linux-64 -p osx-64 -f dependencies/delft3d_openmpi.yml --lockfile locks/delft3d_openmpi.yml diff --git a/tests/data/models/schism_model.json b/tests/data/models/schism_model.json index 1d2eff47..c9c50c7a 100644 --- a/tests/data/models/schism_model.json +++ b/tests/data/models/schism_model.json @@ -57,7 +57,8 @@ "sed_class": 5, "eco_class": 27, "nspool": 9, - "ihfskip": 36 + "ihfskip": 36, + "nbins_veg_vert": 2 }, "opt": { "ipre2": 0, @@ -167,7 +168,6 @@ "nrampwind": 1, "drampwind": 1, "iwind_form": -1, - "impose_net_flux": 0, "ihconsv": 0, "isconsv": 0, "itur": 0, @@ -207,7 +207,7 @@ "irouse_test": 0, "flag_fib": 1, "slr_rate": 120, - "isav": 0, + "iveg": 0, "nstep_ice": 1, "level_age": [ 9, diff --git a/tests/test_schism.py b/tests/test_schism.py index 24796cca..aada03cd 100644 --- a/tests/test_schism.py +++ b/tests/test_schism.py @@ -34,7 +34,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } case2 = { @@ -57,7 +57,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } @@ -81,7 +81,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } @@ -107,7 +107,7 @@ "nhot_write": 108, "nc_out": 0, }, - "scribes": 2, + "scribes": 1, } diff --git a/tests/test_schism_cast.py b/tests/test_schism_cast.py index 8a1d0c43..12a16af9 100644 --- a/tests/test_schism_cast.py +++ b/tests/test_schism_cast.py @@ -49,7 +49,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } # define in a dictionary the properties of the model.. @@ -76,7 +76,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } diff --git a/tests/test_schism_reforecast.py b/tests/test_schism_reforecast.py index 1675a37c..34181914 100644 --- a/tests/test_schism_reforecast.py +++ b/tests/test_schism_reforecast.py @@ -50,7 +50,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } @@ -74,7 +74,7 @@ "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } diff --git a/tests/test_schism_total.py b/tests/test_schism_total.py index c1360ee5..d1af198d 100644 --- a/tests/test_schism_total.py +++ b/tests/test_schism_total.py @@ -47,7 +47,7 @@ def test_schism(tmpdir, window): "ihfskip": 36, "nhot_write": 108, }, - "scribes": 2, + "scribes": 1, } rpath = str(tmpdir) + "/" From 125801dc612d797dc87417852dcca56f5130ac44 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Sat, 3 Aug 2024 02:00:51 +0300 Subject: [PATCH 19/26] schism: Disable ramping Fixes #192 --- pyposeidon/misc/param.nml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyposeidon/misc/param.nml b/pyposeidon/misc/param.nml index 04be37ea..69ffe1a2 100644 --- a/pyposeidon/misc/param.nml +++ b/pyposeidon/misc/param.nml @@ -113,10 +113,10 @@ ! Main ramp option !----------------------------------------------------------------------- ! nramp = 0 !ramp-up option (1: on; 0: off) - dramp = 1. !needed if nramp=1; ramp-up period in days + dramp = 0. !needed if nramp=1; ramp-up period in days ! nrampbc = 0 !ramp-up flag for baroclinic force - drampbc = 1. !not used if nrampbc=0 + drampbc = 0. !not used if nrampbc=0 !----------------------------------------------------------------------- ! Method for momentum advection. 0: ELM; 1: upwind (not quite working yet) @@ -190,7 +190,7 @@ !1-modified Grant-Madsen formulation; 2-Soulsby (1997) hmin_radstress = 1. !min. total water depth used only in radiation stress calculation [m] ! nrampwafo = 0 !ramp-up option for the wave forces (1: on; 0: off) - drampwafo = 1. !needed if nrampwafo=1; ramp-up period in days + drampwafo = 0. !needed if nrampwafo=1; ramp-up period in days turbinj = 0.15 !% of depth-induced wave breaking energy injected in turbulence (default: 0.15 (15%), as proposed by Feddersen, 2012) ! Vortex Force terms (off/on:0/1) ! fwvor_advxy_stokes = 1 ! --> Stokes drift advection (xy), Coriolis @@ -271,7 +271,7 @@ !----------------------------------------------------------------------- if_source = 0 ! nramp_ss = 1 !needed if if_source=1; ramp-up flag for source/sinks - dramp_ss = 2 !needed if if_source=1; ramp-up period in days + dramp_ss = 0 !needed if if_source=1; ramp-up period in days ! meth_sink = 0 !options to treat sinks @ dry elem !----------------------------------------------------------------------- @@ -499,7 +499,7 @@ nws = 2 wtiminc = 400. !time step for atmos. forcing. Default: same as dt ! nrampwind = 1 !ramp-up option for atmos. forcing - drampwind = 1. !needed if nrampwind/=0; ramp-up period in days + drampwind = 0. !needed if nrampwind/=0; ramp-up period in days ! iwindoff = 0 !needed only if nws/=0; '1': needs windfactor.gr3 iwind_form = -1 !needed if nws/=0 From bc1d2734b2581efda89f451ebc526fafc994c9a6 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Sat, 3 Aug 2024 02:28:52 +0300 Subject: [PATCH 20/26] debug: Check contents of `launchSchism.sh` on CI --- pyposeidon/tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyposeidon/tools.py b/pyposeidon/tools.py index 8701363c..4435f12c 100644 --- a/pyposeidon/tools.py +++ b/pyposeidon/tools.py @@ -3,7 +3,6 @@ # Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"). # Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the Licence for the specific language governing permissions and limitations under the Licence. - from __future__ import annotations import itertools @@ -32,7 +31,6 @@ import rioxarray import xarray as xr - from pyposeidon.utils.get_value import get_value @@ -325,6 +323,8 @@ def execute_schism_mpirun_script(cwd: str) -> None: Execute launchSchism.sh and save stdout/stderr to disk """ cmd = "./launchSchism.sh" + with open(f"{cwd}/{cmd}", "r") as fd: + contents = fd.read() proc = subprocess.run( shlex.split(cmd), check=False, From cbee7a5e5c06a42bd5fc2ed630da007ddb0a9c65 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Sat, 3 Aug 2024 22:49:29 +0300 Subject: [PATCH 21/26] deps: Update locks + Restore schism support for Mac OS with mpich. --- locks/conda-macos-latest-schism_mpich.lock | 20 +- locks/requirements-ci.txt | 22 +- locks/requirements-full.txt | 53 +- locks/requirements-viz.txt | 38 +- locks/requirements.txt | 18 +- locks/schism_mpich.yml | 96 ++-- poetry.lock | 602 ++++++++++----------- scripts/generate_locks.sh | 4 +- 8 files changed, 424 insertions(+), 429 deletions(-) diff --git a/locks/conda-macos-latest-schism_mpich.lock b/locks/conda-macos-latest-schism_mpich.lock index 7c4c7e05..38445a8b 100644 --- a/locks/conda-macos-latest-schism_mpich.lock +++ b/locks/conda-macos-latest-schism_mpich.lock @@ -1,6 +1,6 @@ # Generated by conda-lock. # platform: osx-64 -# input_hash: 54746a047f64f0edf6c82a5f6ca0b9ff42b50f9f82d42bc6069abd21964abca2 +# input_hash: 6815ee4472bd9c4b3ba1923367a934d6e64effc793eb2fc300ebe057f7238f4c @EXPLICIT https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.7.4-h8857fd0_0.conda#7df874a4b05b2d2b82826190170eaa0f https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda#899db79329439820b7e8f8de41bca902 @@ -8,20 +8,20 @@ https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda#3d https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2#ccb34fb14960ad8b125962d3d79b31a9 https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda#6c3628d047e151efba7cf08c5e54d1ca https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-3.0.0-h0dc2134_1.conda#72507f8e3961bc968af17435060b6dd6 -https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda#f3a60f050e50631cc20a51c47d70d1b1 +https://conda.anaconda.org/conda-forge/osx-64/metis-5.2.1-h10d778d_0.conda#f68aec416a1565901bc5651f93e91a6c https://conda.anaconda.org/conda-forge/osx-64/mpi-1.0-mpich.tar.bz2#7316a634ed27146b42d28433ec3bc227 https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h5846eda_0.conda#02a888433d165c99bf09784a7b14d900 -https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda#fef7a52f0eca6bae9e8e2e255bc86394 +https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda#87201ac4314b911b74197e588cca3639 https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda#161081fc7cec0bfda0d86d7cb595f8d8 https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2#a72f9d4ea13d55d745ff1ed594747f10 https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda#7ed4301d437b59045be7e051a0308211 -https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda#be4a9b58fcf1374aeb79e873c1166e19 +https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.3-h51dda26_0.conda#5487b45a597e142da7839941ab2494a9 https://conda.anaconda.org/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda#d68d48a3060eb5abdc1cdc8e2a3a5966 -https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda#4101cde4241c92aeac310d65e6791579 +https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_2.conda#c21d8b63b5cf5d3290d5a7aa2b028bcc https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2#6016a8a1d0e63cac3de2c352cd40208b https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-h87427d6_1.conda#b7575b5aa92108dcc9aaab0f05f2dbce https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.8-h15ab845_0.conda#2c3c6c8aaf8728f87326964a82fdc7d8 -https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda#d838ffe9ec3c6d971f110e04487466ff +https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda#3f3dbeedbee31e257866407d9dea1ff5 https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda#f17f77f2acf4d344734bda76829ce14e https://conda.anaconda.org/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda#7ce543bf38dbfae0de9af112ee178af2 https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.3-h37d8d59_0.conda#d4765c524b1d91567886bde656fb514b @@ -38,13 +38,13 @@ https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda#bf830ba https://conda.anaconda.org/conda-forge/osx-64/zlib-1.3.1-h87427d6_1.conda#3ac9ef8975965f9698dbedd2a4cc5894 https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda#4cb2cd56f039b129bb0e491c1164167e https://conda.anaconda.org/conda-forge/osx-64/blosc-1.21.6-h7d75f6d_0.conda#3e5669e51737d04f4806dd3e8c424663 -https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda#11711bab5306a6534797a68b3c4c2bed +https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.9.1-hfcf2730_0.conda#6ea09f173c46d135ee6d6845fe50a9c0 https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda#0b6e23a012ee7a9a5f6b244f5a92c1d5 -https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda#612763bc5ede9552e4233ec518b9c9fb -https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_100.conda#6dad777cb5b2278bb1189dacbfb26e13 +https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda#94e2b77992f580ac6b7a4fc9b53018b3 +https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_101.conda#ccbb9e9c433aee60e1a979a3481d234a https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.3-mpi_mpich_hcca1a62_5.conda#1160f92c68a719ac3783f57615e8396b https://conda.anaconda.org/conda-forge/osx-64/libpnetcdf-1.13.0-mpi_mpich_hb9122ec_101.conda#4c23c5bb89b37dc0b93ba2702df2909f https://conda.anaconda.org/conda-forge/osx-64/parmetis-4.0.3-hf3db91c_1006.conda#ddddedd3236007f63ae8d95f11e1379a https://conda.anaconda.org/conda-forge/osx-64/libnetcdf-4.9.2-mpi_mpich_hc555b6a_14.conda#cbe0cd0343bb0b4fff298f5bb279edfd https://conda.anaconda.org/conda-forge/osx-64/netcdf-fortran-4.6.1-mpi_mpich_hf8ca7cb_4.conda#ba4f5eebb8e10a35409a1fb9e6a01fac -https://conda.anaconda.org/gbrey/osx-64/pschism-5.9-mpi_mpich_py3.11_h13bdba7_0.tar.bz2#78dcd6c6f9e4e50493b55ea69f162a55 +https://conda.anaconda.org/gbrey/osx-64/pschism-5.12rc1-mpi_mpich_py3.12_h5572aa8_0.tar.bz2#5b175682938757f2ece02450f5e2fcce diff --git a/locks/requirements-ci.txt b/locks/requirements-ci.txt index 6feae5a0..d3520715 100644 --- a/locks/requirements-ci.txt +++ b/locks/requirements-ci.txt @@ -2,16 +2,16 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" -attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" -black==24.4.2 ; python_version >= "3.9" and python_version < "4" +black==24.8.0 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" @@ -24,7 +24,7 @@ configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" coverage[toml]==7.6.0 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" @@ -45,7 +45,7 @@ html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" +importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4" jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" @@ -54,7 +54,7 @@ kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" @@ -80,26 +80,28 @@ pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" +pyresample==1.29.0 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4" pytest-xdist==3.6.1 ; python_version >= "3.9" and python_version < "4" -pytest==8.2.2 ; python_version >= "3.9" and python_version < "4" +pytest==8.3.2 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" +scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" -setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" srsly==2.4.8 ; python_version >= "3.9" and python_version < "4" +threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" @@ -109,6 +111,6 @@ urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/locks/requirements-full.txt b/locks/requirements-full.txt index 6c9c2560..c1dc8cf7 100644 --- a/locks/requirements-full.txt +++ b/locks/requirements-full.txt @@ -7,19 +7,20 @@ argon2-cffi-bindings==21.2.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi==23.1.0 ; python_version >= "3.9" and python_version < "4" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" asttokens==2.4.1 ; python_version >= "3.9" and python_version < "4" -attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" babel==2.15.0 ; python_version >= "3.9" and python_version < "4" +backports-strenum==1.3.1 ; python_version >= "3.9" and python_version < "3.11" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" -black==24.4.2 ; python_version >= "3.9" and python_version < "4" +black==24.8.0 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" -bokeh==3.4.2 ; python_version >= "3.9" and python_version < "4" +bokeh==3.4.3 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" @@ -34,10 +35,10 @@ configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" coverage[toml]==7.6.0 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" datashader==0.16.3 ; python_version >= "3.9" and python_version < "4" -debugpy==1.8.2 ; python_version >= "3.9" and python_version < "4" +debugpy==1.8.3 ; python_version >= "3.9" and python_version < "4" decorator==5.1.1 ; python_version >= "3.9" and python_version < "4" defusedxml==0.7.1 ; python_version >= "3.9" and python_version < "4" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" @@ -59,6 +60,7 @@ geopandas==1.0.1 ; python_version >= "3.9" and python_version < "4" geoviews[recommended]==1.12.0 ; python_version >= "3.9" and python_version < "4" ghp-import==2.1.0 ; python_version >= "3.9" and python_version < "4" gmsh==4.13.1 ; python_version >= "3.9" and python_version < "4" +griffe==0.48.0 ; python_version >= "3.9" and python_version < "4" h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" holoviews==1.19.1 ; python_version >= "3.9" and python_version < "4" html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" @@ -66,7 +68,7 @@ httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" hvplot==0.10.0 ; python_version >= "3.9" and python_version < "4" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" +importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4" ipydatawidgets==4.3.2 ; python_version >= "3.9" and python_version < "4" @@ -74,7 +76,7 @@ ipykernel==6.29.5 ; python_version >= "3.9" and python_version < "4" ipympl==0.9.4 ; python_version >= "3.9" and python_version < "4" ipython-genutils==0.2.0 ; python_version >= "3.9" and python_version < "4" ipython==8.18.1 ; python_version >= "3.9" and python_version < "4" -ipywidgets==7.8.2 ; python_version >= "3.9" and python_version < "4" +ipywidgets==7.8.3 ; python_version >= "3.9" and python_version < "4" itk-core==5.4.0 ; python_version >= "3.9" and python_version < "4" itk-filtering==5.4.0 ; python_version >= "3.9" and python_version < "4" itk-meshtopolydata==0.11.0 ; python_version >= "3.9" and python_version < "4" @@ -88,13 +90,13 @@ jsonschema==4.23.0 ; python_version >= "3.9" and python_version < "4" jupyter-client==8.6.2 ; python_version >= "3.9" and python_version < "4" jupyter-core==5.7.2 ; python_version >= "3.9" and python_version < "4" jupyterlab-pygments==0.3.0 ; python_version >= "3.9" and python_version < "4" -jupyterlab-widgets==1.1.8 ; python_version >= "3.9" and python_version < "4" +jupyterlab-widgets==1.1.9 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" linkify-it-py==2.0.3 ; python_version >= "3.9" and python_version < "4" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4" @@ -110,9 +112,10 @@ mistune==3.0.2 ; python_version >= "3.9" and python_version < "4" mkdocs-autorefs==1.0.1 ; python_version >= "3.9" and python_version < "4" mkdocs-get-deps==0.2.0 ; python_version >= "3.9" and python_version < "4" mkdocs-material-extensions==1.3.1 ; python_version >= "3.9" and python_version < "4" -mkdocs-material==9.5.29 ; python_version >= "3.9" and python_version < "4" +mkdocs-material==9.5.31 ; python_version >= "3.9" and python_version < "4" mkdocs==1.6.0 ; python_version >= "3.9" and python_version < "4" -mkdocstrings==0.25.1 ; python_version >= "3.9" and python_version < "4" +mkdocstrings-python==1.10.7 ; python_version >= "3.9" and python_version < "4" +mkdocstrings==0.25.2 ; python_version >= "3.9" and python_version < "4" multipledispatch==1.0.0 ; python_version >= "3.9" and python_version < "4" mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4" nbclient==0.10.0 ; python_version >= "3.9" and python_version < "4" @@ -128,7 +131,7 @@ packaging==24.1 ; python_version >= "3.9" and python_version < "4" paginate==0.5.6 ; python_version >= "3.9" and python_version < "4" pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" pandocfilters==1.5.1 ; python_version >= "3.9" and python_version < "4" -panel==1.4.4 ; python_version >= "3.9" and python_version < "4" +panel==1.4.5 ; python_version >= "3.9" and python_version < "4" param==2.1.1 ; python_version >= "3.9" and python_version < "4" parso==0.8.4 ; python_version >= "3.9" and python_version < "4" partd==1.4.2 ; python_version >= "3.9" and python_version < "4" @@ -142,8 +145,8 @@ prometheus-client==0.20.0 ; python_version >= "3.9" and python_version < "4" prompt-toolkit==3.0.47 ; python_version >= "3.9" and python_version < "4" psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4" and (sys_platform != "win32" or os_name != "nt") -pure-eval==0.2.2 ; python_version >= "3.9" and python_version < "4" -pyarrow==16.1.0 ; python_version >= "3.9" and python_version < "4" +pure-eval==0.2.3 ; python_version >= "3.9" and python_version < "4" +pyarrow==17.0.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pyct==0.5.0 ; python_version >= "3.9" and python_version < "4" pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" @@ -153,18 +156,18 @@ pyface==8.0.0 ; python_version >= "3.9" and python_version < "4" pygments==2.18.0 ; python_version >= "3.9" and python_version < "4" pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" -pymdown-extensions==10.8.1 ; python_version >= "3.9" and python_version < "4" +pymdown-extensions==10.9 ; python_version >= "3.9" and python_version < "4" pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" +pyresample==1.29.0 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4" pytest-xdist==3.6.1 ; python_version >= "3.9" and python_version < "4" -pytest==8.2.2 ; python_version >= "3.9" and python_version < "4" +pytest==8.3.2 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" -pyviz-comms==3.0.2 ; python_version >= "3.9" and python_version < "4" +pyviz-comms==3.0.3 ; python_version >= "3.9" and python_version < "4" pywin32==306 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4" pywinpty==2.0.13 ; python_version >= "3.9" and python_version < "4" and os_name == "nt" pyyaml-env-tag==0.1 ; python_version >= "3.9" and python_version < "4" @@ -172,15 +175,16 @@ pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" pyzmq==26.0.3 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" referencing==0.35.1 ; python_version >= "3.9" and python_version < "4" -regex==2024.5.15 ; python_version >= "3.9" and python_version < "4" +regex==2024.7.24 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" retrying==1.3.4 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -rpds-py==0.19.0 ; python_version >= "3.9" and python_version < "4" +rpds-py==0.19.1 ; python_version >= "3.9" and python_version < "4" +scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" send2trash==1.8.3 ; python_version >= "3.9" and python_version < "4" -setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" @@ -190,6 +194,7 @@ spatialpandas==0.4.10 ; python_version >= "3.9" and python_version < "4" srsly==2.4.8 ; python_version >= "3.9" and python_version < "4" stack-data==0.6.3 ; python_version >= "3.9" and python_version < "4" terminado==0.18.1 ; python_version >= "3.9" and python_version < "4" +threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" tinycss2==1.3.0 ; python_version >= "3.9" and python_version < "4" tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" @@ -208,9 +213,9 @@ watchdog==4.0.1 ; python_version >= "3.9" and python_version < "4" wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" -widgetsnbextension==3.6.7 ; python_version >= "3.9" and python_version < "4" +widgetsnbextension==3.6.8 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" xyzservices==2024.6.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/locks/requirements-viz.txt b/locks/requirements-viz.txt index a59e60b5..782fb4fd 100644 --- a/locks/requirements-viz.txt +++ b/locks/requirements-viz.txt @@ -7,15 +7,15 @@ argon2-cffi-bindings==21.2.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi==23.1.0 ; python_version >= "3.9" and python_version < "4" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" asttokens==2.4.1 ; python_version >= "3.9" and python_version < "4" -attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" -bokeh==3.4.2 ; python_version >= "3.9" and python_version < "4" +bokeh==3.4.3 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" @@ -29,10 +29,10 @@ comm==0.2.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" datashader==0.16.3 ; python_version >= "3.9" and python_version < "4" -debugpy==1.8.2 ; python_version >= "3.9" and python_version < "4" +debugpy==1.8.3 ; python_version >= "3.9" and python_version < "4" decorator==5.1.1 ; python_version >= "3.9" and python_version < "4" defusedxml==0.7.1 ; python_version >= "3.9" and python_version < "4" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" @@ -59,14 +59,14 @@ httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" hvplot==0.10.0 ; python_version >= "3.9" and python_version < "4" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" +importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" ipydatawidgets==4.3.2 ; python_version >= "3.9" and python_version < "4" ipykernel==6.29.5 ; python_version >= "3.9" and python_version < "4" ipympl==0.9.4 ; python_version >= "3.9" and python_version < "4" ipython-genutils==0.2.0 ; python_version >= "3.9" and python_version < "4" ipython==8.18.1 ; python_version >= "3.9" and python_version < "4" -ipywidgets==7.8.2 ; python_version >= "3.9" and python_version < "4" +ipywidgets==7.8.3 ; python_version >= "3.9" and python_version < "4" itk-core==5.4.0 ; python_version >= "3.9" and python_version < "4" itk-filtering==5.4.0 ; python_version >= "3.9" and python_version < "4" itk-meshtopolydata==0.11.0 ; python_version >= "3.9" and python_version < "4" @@ -80,13 +80,13 @@ jsonschema==4.23.0 ; python_version >= "3.9" and python_version < "4" jupyter-client==8.6.2 ; python_version >= "3.9" and python_version < "4" jupyter-core==5.7.2 ; python_version >= "3.9" and python_version < "4" jupyterlab-pygments==0.3.0 ; python_version >= "3.9" and python_version < "4" -jupyterlab-widgets==1.1.8 ; python_version >= "3.9" and python_version < "4" +jupyterlab-widgets==1.1.9 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" linkify-it-py==2.0.3 ; python_version >= "3.9" and python_version < "4" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4" @@ -111,7 +111,7 @@ numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" packaging==24.1 ; python_version >= "3.9" and python_version < "4" pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" pandocfilters==1.5.1 ; python_version >= "3.9" and python_version < "4" -panel==1.4.4 ; python_version >= "3.9" and python_version < "4" +panel==1.4.5 ; python_version >= "3.9" and python_version < "4" param==2.1.1 ; python_version >= "3.9" and python_version < "4" parso==0.8.4 ; python_version >= "3.9" and python_version < "4" partd==1.4.2 ; python_version >= "3.9" and python_version < "4" @@ -123,8 +123,8 @@ prometheus-client==0.20.0 ; python_version >= "3.9" and python_version < "4" prompt-toolkit==3.0.47 ; python_version >= "3.9" and python_version < "4" psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4" and (sys_platform != "win32" or os_name != "nt") -pure-eval==0.2.2 ; python_version >= "3.9" and python_version < "4" -pyarrow==16.1.0 ; python_version >= "3.9" and python_version < "4" +pure-eval==0.2.3 ; python_version >= "3.9" and python_version < "4" +pyarrow==17.0.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pyct==0.5.0 ; python_version >= "3.9" and python_version < "4" pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" @@ -137,11 +137,11 @@ pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" +pyresample==1.29.0 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" -pyviz-comms==3.0.2 ; python_version >= "3.9" and python_version < "4" +pyviz-comms==3.0.3 ; python_version >= "3.9" and python_version < "4" pywin32==306 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4" pywinpty==2.0.13 ; python_version >= "3.9" and python_version < "4" and os_name == "nt" pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" @@ -151,11 +151,12 @@ referencing==0.35.1 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" retrying==1.3.4 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -rpds-py==0.19.0 ; python_version >= "3.9" and python_version < "4" +rpds-py==0.19.1 ; python_version >= "3.9" and python_version < "4" +scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" send2trash==1.8.3 ; python_version >= "3.9" and python_version < "4" -setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" @@ -164,6 +165,7 @@ soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" spatialpandas==0.4.10 ; python_version >= "3.9" and python_version < "4" stack-data==0.6.3 ; python_version >= "3.9" and python_version < "4" terminado==0.18.1 ; python_version >= "3.9" and python_version < "4" +threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" tinycss2==1.3.0 ; python_version >= "3.9" and python_version < "4" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" tornado==6.4.1 ; python_version >= "3.9" and python_version < "4" @@ -180,9 +182,9 @@ vtk==9.3.1 ; python_version >= "3.9" and python_version < "4" wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" -widgetsnbextension==3.6.7 ; python_version >= "3.9" and python_version < "4" +widgetsnbextension==3.6.8 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" xyzservices==2024.6.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/locks/requirements.txt b/locks/requirements.txt index 8d2bb4d6..7f91c9cc 100644 --- a/locks/requirements.txt +++ b/locks/requirements.txt @@ -2,13 +2,13 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" -attrs==23.2.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" -cfgrib==0.9.13.0 ; python_version >= "3.9" and python_version < "4" +cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" click-plugins==1.1.1 ; python_version >= "3.9" and python_version < "4" @@ -20,7 +20,7 @@ colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.0 ; python_version >= "3.9" and python_version < "4" +dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" @@ -40,7 +40,7 @@ html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.0.0 ; python_version >= "3.9" and python_version < "3.12" +importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" @@ -48,7 +48,7 @@ kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" -lxml-html-clean==0.1.1 ; python_version >= "3.9" and python_version < "4.0" +lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" @@ -71,7 +71,7 @@ pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" pyparsing==3.1.2 ; python_version >= "3.9" and python_version < "4" pyproj==3.6.1 ; python_version >= "3.9" and python_version < "4" -pyresample==1.28.4 ; python_version >= "3.9" and python_version < "4" +pyresample==1.29.0 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" @@ -79,14 +79,16 @@ pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" +scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" -setuptools==70.3.0 ; python_version >= "3.9" and python_version < "4" +setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" +threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" @@ -95,6 +97,6 @@ urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" webob==1.8.7 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -xarray==2024.6.0 ; python_version >= "3.9" and python_version < "4" +xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/locks/schism_mpich.yml b/locks/schism_mpich.yml index f5564163..6fe0f680 100644 --- a/locks/schism_mpich.yml +++ b/locks/schism_mpich.yml @@ -14,7 +14,7 @@ version: 1 metadata: content_hash: linux-64: 12982151edb65cea1e7287f6e115d393ca030e0469ec7c90d9fd6feadf49f767 - osx-64: 54746a047f64f0edf6c82a5f6ca0b9ff42b50f9f82d42bc6069abd21964abca2 + osx-64: 6815ee4472bd9c4b3ba1923367a934d6e64effc793eb2fc300ebe057f7238f4c channels: - url: gbrey used_env_vars: [] @@ -124,15 +124,15 @@ package: category: main optional: false - name: c-ares - version: 1.32.2 + version: 1.32.3 manager: conda platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.2-h51dda26_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.32.3-h51dda26_0.conda hash: - md5: be4a9b58fcf1374aeb79e873c1166e19 - sha256: b900aed0d474caed6735ba9936f372eb45df4f43c893fcc0e7b434372fa3c5c8 + md5: 5487b45a597e142da7839941ab2494a9 + sha256: 2454287fa7d32b2cd089ad2bb46c8f8634b6f409d6fa8892c37ccc66134ec076 category: main optional: false - name: ca-certificates @@ -350,20 +350,20 @@ package: category: main optional: false - name: libcurl - version: 8.8.0 + version: 8.9.1 manager: conda platform: osx-64 dependencies: krb5: '>=1.21.3,<1.22.0a0' libnghttp2: '>=1.58.0,<2.0a0' libssh2: '>=1.11.0,<2.0a0' - libzlib: '>=1.2.13,<2.0a0' + libzlib: '>=1.3.1,<2.0a0' openssl: '>=3.3.1,<4.0a0' zstd: '>=1.5.6,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.8.0-hf9fcc65_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.9.1-hfcf2730_0.conda hash: - md5: 11711bab5306a6534797a68b3c4c2bed - sha256: 25e2b044e6978f1714a4b2844f34a45fc8a0c60185db8d332906989d70b65927 + md5: 6ea09f173c46d135ee6d6845fe50a9c0 + sha256: a7ce066fbb2d34f7948d8e5da30d72ff01f0a5bcde05ea46fa2d647eeedad3a7 category: main optional: false - name: libcxx @@ -372,10 +372,10 @@ package: platform: osx-64 dependencies: __osx: '>=10.13' - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-18.1.8-hef8daea_2.conda hash: - md5: 4101cde4241c92aeac310d65e6791579 - sha256: d5e7755fe7175e6632179801f2e71c67eec033f1610a48e14510df679c038aa3 + md5: c21d8b63b5cf5d3290d5a7aa2b028bcc + sha256: d63c2c723014fd7c27bfbc69aff3c09975d00755d1821b1d2304303b08b2e560 category: main optional: false - name: libedit @@ -949,14 +949,14 @@ package: category: main optional: false - name: metis - version: 5.1.1 + version: 5.2.1 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.1-h73e2aa4_2.conda + url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.2.1-h10d778d_0.conda hash: - md5: f3a60f050e50631cc20a51c47d70d1b1 - sha256: 522bab6afc78cf858b19e89f8f01c092a1559ebdc4e41f5909684b4ad6375ee0 + md5: f68aec416a1565901bc5651f93e91a6c + sha256: e94b124ce3ae2eb0c2daf2f7c1ce07a4a9f6b67c605f4b6aa4f4e20d4f21f084 category: main optional: false - name: mpi @@ -1008,10 +1008,10 @@ package: libgfortran: 5.* libgfortran5: '>=13.2.0' mpi: '1.0' - url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_100.conda + url: https://conda.anaconda.org/conda-forge/osx-64/mpich-4.2.2-hd5a4e64_101.conda hash: - md5: 6dad777cb5b2278bb1189dacbfb26e13 - sha256: aa9978ca5640cc4287f9b8b1a76ee6c20a07bf162f8c5878140e21a4fbfb0d3d + md5: ccbb9e9c433aee60e1a979a3481d234a + sha256: 8d1473fec13dd989f5af0a11a9f7d3d9c3abb4bcd0ae49c585256bc14946f36a category: main optional: false - name: ncurses @@ -1092,10 +1092,10 @@ package: dependencies: __osx: '>=10.13' ca-certificates: '' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.1-h87427d6_2.conda hash: - md5: d838ffe9ec3c6d971f110e04487466ff - sha256: 60eed5d771207bcef05e0547c8f93a61d0ad1dcf75e19f8f8d9ded8094d78477 + md5: 3f3dbeedbee31e257866407d9dea1ff5 + sha256: 3cb0c05fbfd8cdb9b767396fc0e0af2d78eb4d68592855481254104330d4a4eb category: main optional: false - name: parmetis @@ -1150,24 +1150,24 @@ package: category: main optional: false - name: pschism - version: '5.9' + version: 5.12rc1 manager: conda platform: osx-64 dependencies: - libcxx: '>=14.0.6' + libcxx: '>=16' libgfortran: 5.* - libgfortran5: '>=12.2.0' - llvm-openmp: '>=16.0.1' - metis: '>=5.1.0,<5.2.0a0' - mpich: '>=4.1.1,<5.0a0' - netcdf-fortran: '>=4.6.0,<4.7.0a0' + libgfortran5: '>=13.2.0' + llvm-openmp: '>=18.1.8' + metis: '>=5.2.1,<5.2.2.0a0' + mpich: '>=4.2.2,<5.0a0' + netcdf-fortran: '>=4.6.1,<4.7.0a0' parmetis: '' - python: '>=3.11,<3.12.0a0' - python_abi: 3.11.* - url: https://conda.anaconda.org/gbrey/osx-64/pschism-5.9-mpi_mpich_py3.11_h13bdba7_0.tar.bz2 + python: '>=3.12,<3.13.0a0' + python_abi: 3.12.* + url: https://conda.anaconda.org/gbrey/osx-64/pschism-5.12rc1-mpi_mpich_py3.12_h5572aa8_0.tar.bz2 hash: - md5: 78dcd6c6f9e4e50493b55ea69f162a55 - sha256: 6f9661de93e467fedc9af3980cd2acc49c65817fde1b7810073b4181f3ea3b1a + md5: 5b175682938757f2ece02450f5e2fcce + sha256: ab7c3d02228933daba4034035760fc4bbfeb4d461b1a8ad83ab43d65c49c1524 category: main optional: false - name: python @@ -1198,26 +1198,26 @@ package: category: main optional: false - name: python - version: 3.11.9 + version: 3.12.4 manager: conda platform: osx-64 dependencies: - __osx: '>=10.9' + __osx: '>=10.13' bzip2: '>=1.0.8,<2.0a0' libexpat: '>=2.6.2,<3.0a0' libffi: '>=3.4,<4.0a0' - libsqlite: '>=3.45.3,<4.0a0' - libzlib: '>=1.2.13,<2.0.0a0' - ncurses: '>=6.4.20240210,<7.0a0' - openssl: '>=3.2.1,<4.0a0' + libsqlite: '>=3.46.0,<4.0a0' + libzlib: '>=1.3.1,<2.0a0' + ncurses: '>=6.5,<7.0a0' + openssl: '>=3.3.1,<4.0a0' readline: '>=8.2,<9.0a0' tk: '>=8.6.13,<8.7.0a0' tzdata: '' xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.4-h37a9e06_0_cpython.conda hash: - md5: 612763bc5ede9552e4233ec518b9c9fb - sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c + md5: 94e2b77992f580ac6b7a4fc9b53018b3 + sha256: 677958ee90eff229755d4e0ed40af6d835c9131e863b1539b34bbf07d7a775f3 category: main optional: false - name: python_abi @@ -1232,14 +1232,14 @@ package: category: main optional: false - name: python_abi - version: '3.11' + version: '3.12' manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-4_cp311.conda + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.12-4_cp312.conda hash: - md5: fef7a52f0eca6bae9e8e2e255bc86394 - sha256: f56dfe2a57b3b27bad3f9527f943548e8b2526e949d9d6fc0a383020d9359afe + md5: 87201ac4314b911b74197e588cca3639 + sha256: 82c154d95c1637604671a02a89e72f1382e89a4269265a03506496bd928f6f14 category: main optional: false - name: readline diff --git a/poetry.lock b/poetry.lock index 51ffa8e7..72750e37 100644 --- a/poetry.lock +++ b/poetry.lock @@ -168,22 +168,22 @@ test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] [[package]] name = "attrs" -version = "23.2.0" +version = "24.1.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.1.0-py3-none-any.whl", hash = "sha256:377b47448cb61fea38533f671fba0d0f8a96fd58facd4dc518e3dac9dbea0905"}, + {file = "attrs-24.1.0.tar.gz", hash = "sha256:adbdec84af72d38be7628e353a09b6a6790d15cd71819f6e9d7b0faa8a125745"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "babel" @@ -233,33 +233,33 @@ lxml = ["lxml"] [[package]] name = "black" -version = "24.4.2" +version = "24.8.0" description = "The uncompromising code formatter." optional = false python-versions = ">=3.8" files = [ - {file = "black-24.4.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce"}, - {file = "black-24.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021"}, - {file = "black-24.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063"}, - {file = "black-24.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96"}, - {file = "black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474"}, - {file = "black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c"}, - {file = "black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb"}, - {file = "black-24.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1"}, - {file = "black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d"}, - {file = "black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04"}, - {file = "black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc"}, - {file = "black-24.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0"}, - {file = "black-24.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7"}, - {file = "black-24.4.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94"}, - {file = "black-24.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8"}, - {file = "black-24.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c"}, - {file = "black-24.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1"}, - {file = "black-24.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741"}, - {file = "black-24.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e"}, - {file = "black-24.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7"}, - {file = "black-24.4.2-py3-none-any.whl", hash = "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c"}, - {file = "black-24.4.2.tar.gz", hash = "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d"}, + {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, + {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, + {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, + {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, + {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, + {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, + {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, + {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, + {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, + {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, + {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, + {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, + {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, + {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, + {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, + {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, + {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, + {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, + {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, + {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, + {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, + {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, ] [package.dependencies] @@ -297,13 +297,13 @@ css = ["tinycss2 (>=1.1.0,<1.3)"] [[package]] name = "bokeh" -version = "3.4.2" +version = "3.4.3" description = "Interactive plots and applications in the browser from Python" optional = true python-versions = ">=3.9" files = [ - {file = "bokeh-3.4.2-py3-none-any.whl", hash = "sha256:931a43ee59dbf1720383ab904f8205e126b85561aac55592415b800c96f1b0eb"}, - {file = "bokeh-3.4.2.tar.gz", hash = "sha256:a16d5cc0abb93d2d270d70fc35851f3e1b9208814a985a4678e0ba5ef2d9cd42"}, + {file = "bokeh-3.4.3-py3-none-any.whl", hash = "sha256:c6f33817f866fc67fbeb5df79cd13a8bb592c05c591f3fd7f4f22b824f7afa01"}, + {file = "bokeh-3.4.3.tar.gz", hash = "sha256:b7c22fb0f7004b04f12e1b7b26ee0269a26737a08ded848fb58f6a34ec1eb155"}, ] [package.dependencies] @@ -1047,33 +1047,13 @@ tests = ["dask-expr", "dask-geopandas", "geodatasets", "geopandas", "nbval", "ne [[package]] name = "debugpy" -version = "1.8.2" +version = "1.8.3" description = "An implementation of the Debug Adapter Protocol for Python" optional = true python-versions = ">=3.8" files = [ - {file = "debugpy-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:7ee2e1afbf44b138c005e4380097d92532e1001580853a7cb40ed84e0ef1c3d2"}, - {file = "debugpy-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f8c3f7c53130a070f0fc845a0f2cee8ed88d220d6b04595897b66605df1edd6"}, - {file = "debugpy-1.8.2-cp310-cp310-win32.whl", hash = "sha256:f179af1e1bd4c88b0b9f0fa153569b24f6b6f3de33f94703336363ae62f4bf47"}, - {file = "debugpy-1.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:0600faef1d0b8d0e85c816b8bb0cb90ed94fc611f308d5fde28cb8b3d2ff0fe3"}, - {file = "debugpy-1.8.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:8a13417ccd5978a642e91fb79b871baded925d4fadd4dfafec1928196292aa0a"}, - {file = "debugpy-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acdf39855f65c48ac9667b2801234fc64d46778021efac2de7e50907ab90c634"}, - {file = "debugpy-1.8.2-cp311-cp311-win32.whl", hash = "sha256:2cbd4d9a2fc5e7f583ff9bf11f3b7d78dfda8401e8bb6856ad1ed190be4281ad"}, - {file = "debugpy-1.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:d3408fddd76414034c02880e891ea434e9a9cf3a69842098ef92f6e809d09afa"}, - {file = "debugpy-1.8.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:5d3ccd39e4021f2eb86b8d748a96c766058b39443c1f18b2dc52c10ac2757835"}, - {file = "debugpy-1.8.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62658aefe289598680193ff655ff3940e2a601765259b123dc7f89c0239b8cd3"}, - {file = "debugpy-1.8.2-cp312-cp312-win32.whl", hash = "sha256:bd11fe35d6fd3431f1546d94121322c0ac572e1bfb1f6be0e9b8655fb4ea941e"}, - {file = "debugpy-1.8.2-cp312-cp312-win_amd64.whl", hash = "sha256:15bc2f4b0f5e99bf86c162c91a74c0631dbd9cef3c6a1d1329c946586255e859"}, - {file = "debugpy-1.8.2-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:5a019d4574afedc6ead1daa22736c530712465c0c4cd44f820d803d937531b2d"}, - {file = "debugpy-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40f062d6877d2e45b112c0bbade9a17aac507445fd638922b1a5434df34aed02"}, - {file = "debugpy-1.8.2-cp38-cp38-win32.whl", hash = "sha256:c78ba1680f1015c0ca7115671fe347b28b446081dada3fedf54138f44e4ba031"}, - {file = "debugpy-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:cf327316ae0c0e7dd81eb92d24ba8b5e88bb4d1b585b5c0d32929274a66a5210"}, - {file = "debugpy-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:1523bc551e28e15147815d1397afc150ac99dbd3a8e64641d53425dba57b0ff9"}, - {file = "debugpy-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e24ccb0cd6f8bfaec68d577cb49e9c680621c336f347479b3fce060ba7c09ec1"}, - {file = "debugpy-1.8.2-cp39-cp39-win32.whl", hash = "sha256:7f8d57a98c5a486c5c7824bc0b9f2f11189d08d73635c326abef268f83950326"}, - {file = "debugpy-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:16c8dcab02617b75697a0a925a62943e26a0330da076e2a10437edd9f0bf3755"}, - {file = "debugpy-1.8.2-py2.py3-none-any.whl", hash = "sha256:16e16df3a98a35c63c3ab1e4d19be4cbc7fdda92d9ddc059294f18910928e0ca"}, - {file = "debugpy-1.8.2.zip", hash = "sha256:95378ed08ed2089221896b9b3a8d021e642c24edc8fef20e5d4342ca8be65c00"}, + {file = "debugpy-1.8.3-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:0df2c400853150af14996b8d1a4f54d45ffa98e76c0f3de30665e89e273ea293"}, + {file = "debugpy-1.8.3.zip", hash = "sha256:0f5a6326d9fc375b864ed368d06cddf2dabe5135511e71cde3758be699847d36"}, ] [[package]] @@ -1649,13 +1629,13 @@ files = [ [[package]] name = "importlib-metadata" -version = "8.0.0" +version = "8.2.0" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-8.0.0-py3-none-any.whl", hash = "sha256:15584cf2b1bf449d98ff8a6ff1abef57bf20f3ac6454f431736cd3e660921b2f"}, - {file = "importlib_metadata-8.0.0.tar.gz", hash = "sha256:188bd24e4c346d3f0a933f275c2fec67050326a856b9a359881d7c2a697e8812"}, + {file = "importlib_metadata-8.2.0-py3-none-any.whl", hash = "sha256:11901fa0c2f97919b288679932bb64febaeacf289d18ac84dd68cb2e74213369"}, + {file = "importlib_metadata-8.2.0.tar.gz", hash = "sha256:72e8d4399996132204f9a16dcc751af254a48f8d1b20b9ff0f98d4a8f901e73d"}, ] [package.dependencies] @@ -1821,13 +1801,13 @@ files = [ [[package]] name = "ipywidgets" -version = "7.8.2" +version = "7.8.3" description = "IPython HTML widgets for Jupyter" optional = true python-versions = "*" files = [ - {file = "ipywidgets-7.8.2-py2.py3-none-any.whl", hash = "sha256:de9b0b0ab5238f107aee8429eb855121e825025aac556fec17d0bd51422aa256"}, - {file = "ipywidgets-7.8.2.tar.gz", hash = "sha256:282a550abab40831e08e1aab0b04aaf5c01494ff919faa44d3ac624f4cbc8fd0"}, + {file = "ipywidgets-7.8.3-py2.py3-none-any.whl", hash = "sha256:b5898117d599d34fbc4a0067a25758e2f201fe3efbcf737073871074d79c5f64"}, + {file = "ipywidgets-7.8.3.tar.gz", hash = "sha256:e8123132021c99a7e142c04ef90c0fb5f1c640f9befe8017238dcece673d6043"}, ] [package.dependencies] @@ -1836,7 +1816,7 @@ ipython = {version = ">=4.0.0", markers = "python_version >= \"3.3\""} ipython-genutils = ">=0.2.0,<0.3.0" jupyterlab-widgets = {version = ">=1.0.0,<3", markers = "python_version >= \"3.6\""} traitlets = ">=4.3.1" -widgetsnbextension = ">=3.6.7,<3.7.0" +widgetsnbextension = ">=3.6.8,<3.7.0" [package.extras] test = ["ipykernel", "mock", "pytest (>=3.6.0)", "pytest-cov"] @@ -2163,13 +2143,13 @@ files = [ [[package]] name = "jupyterlab-widgets" -version = "1.1.8" +version = "1.1.9" description = "A JupyterLab extension." optional = true python-versions = ">=3.6" files = [ - {file = "jupyterlab_widgets-1.1.8-py3-none-any.whl", hash = "sha256:0c2bfb266b6da013710618ab1263f347a730503d197c4a9f447f293d186544a2"}, - {file = "jupyterlab_widgets-1.1.8.tar.gz", hash = "sha256:3df97fed92fed52dd2e8de61d870eb692d3efcdb1b99ba7874ec738df97429f2"}, + {file = "jupyterlab_widgets-1.1.9-py3-none-any.whl", hash = "sha256:087621dbbdb1b87df4bd55f89f3be189d64ca0fa7bd2de5b92e89f69b8f3c211"}, + {file = "jupyterlab_widgets-1.1.9.tar.gz", hash = "sha256:5620c797dcdaa64f98a3e35605753c5902f23a8e7d754bc82b851c71df625ca5"}, ] [[package]] @@ -2534,13 +2514,13 @@ source = ["Cython (>=3.0.10)"] [[package]] name = "lxml-html-clean" -version = "0.1.1" +version = "0.2.0" description = "HTML cleaner from lxml project" optional = false python-versions = "*" files = [ - {file = "lxml_html_clean-0.1.1-py3-none-any.whl", hash = "sha256:58c04176593c9caf72ec92e033d2f38859e918b3eff0cc0f8051ad27dc2ab8ef"}, - {file = "lxml_html_clean-0.1.1.tar.gz", hash = "sha256:8a644ed01dbbe132fabddb9467f077f6dad12a1d4f3a6a553e280f3815fa46df"}, + {file = "lxml_html_clean-0.2.0-py3-none-any.whl", hash = "sha256:80bdc730b288b8e68f0bf86b99f4bbef129c5ec59b694c6681422be4c1eeb3c5"}, + {file = "lxml_html_clean-0.2.0.tar.gz", hash = "sha256:47c323f39d95d4cbf4956da62929c89a79313074467efaa4821013c97bf95628"}, ] [package.dependencies] @@ -2866,13 +2846,13 @@ pyyaml = ">=5.1" [[package]] name = "mkdocs-material" -version = "9.5.29" +version = "9.5.31" description = "Documentation that simply works" optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_material-9.5.29-py3-none-any.whl", hash = "sha256:afc1f508e2662ded95f0a35a329e8a5acd73ee88ca07ba73836eb6fcdae5d8b4"}, - {file = "mkdocs_material-9.5.29.tar.gz", hash = "sha256:3e977598ec15a4ddad5c4dfc9e08edab6023edb51e88f0729bd27be77e3d322a"}, + {file = "mkdocs_material-9.5.31-py3-none-any.whl", hash = "sha256:1b1f49066fdb3824c1e96d6bacd2d4375de4ac74580b47e79ff44c4d835c5fcb"}, + {file = "mkdocs_material-9.5.31.tar.gz", hash = "sha256:31833ec664772669f5856f4f276bf3fdf0e642a445e64491eda459249c3a1ca8"}, ] [package.dependencies] @@ -2906,13 +2886,13 @@ files = [ [[package]] name = "mkdocstrings" -version = "0.25.1" +version = "0.25.2" description = "Automatic documentation from sources, for MkDocs." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocstrings-0.25.1-py3-none-any.whl", hash = "sha256:da01fcc2670ad61888e8fe5b60afe9fee5781017d67431996832d63e887c2e51"}, - {file = "mkdocstrings-0.25.1.tar.gz", hash = "sha256:c3a2515f31577f311a9ee58d089e4c51fc6046dbd9e9b4c3de4c3194667fe9bf"}, + {file = "mkdocstrings-0.25.2-py3-none-any.whl", hash = "sha256:9e2cda5e2e12db8bb98d21e3410f3f27f8faab685a24b03b06ba7daa5b92abfc"}, + {file = "mkdocstrings-0.25.2.tar.gz", hash = "sha256:5cf57ad7f61e8be3111a2458b4e49c2029c9cb35525393b179f9c916ca8042dc"}, ] [package.dependencies] @@ -2934,17 +2914,17 @@ python-legacy = ["mkdocstrings-python-legacy (>=0.2.1)"] [[package]] name = "mkdocstrings-python" -version = "1.10.5" +version = "1.10.7" description = "A Python handler for mkdocstrings." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocstrings_python-1.10.5-py3-none-any.whl", hash = "sha256:92e3c588ef1b41151f55281d075de7558dd8092e422cb07a65b18ee2b0863ebb"}, - {file = "mkdocstrings_python-1.10.5.tar.gz", hash = "sha256:acdc2a98cd9d46c7ece508193a16ca03ccabcb67520352b7449f84b57c162bdf"}, + {file = "mkdocstrings_python-1.10.7-py3-none-any.whl", hash = "sha256:8999acb8e2cb6ae5edb844ce1ed6a5fcc14285f85cfd9df374d9a0f0be8a40b6"}, + {file = "mkdocstrings_python-1.10.7.tar.gz", hash = "sha256:bfb5e29acfc69c9177d2b11c18d3127d16e553b8da9bb6d184e428d54795600b"}, ] [package.dependencies] -griffe = ">=0.47" +griffe = ">=0.48" mkdocstrings = ">=0.25" [[package]] @@ -3360,13 +3340,13 @@ files = [ [[package]] name = "panel" -version = "1.4.4" +version = "1.4.5" description = "The powerful data exploration & web app framework for Python." optional = true python-versions = ">=3.9" files = [ - {file = "panel-1.4.4-py3-none-any.whl", hash = "sha256:b49bb9676567b0c0730bf69348c057247080811aec56364dd4fcfba80e5e09a0"}, - {file = "panel-1.4.4.tar.gz", hash = "sha256:659e9fc5b495e6519c5d07e8148fa5eeed9bc648356ec83fc299381ba5a726ef"}, + {file = "panel-1.4.5-py3-none-any.whl", hash = "sha256:a6dbddd65e9e68c54a9b683f103b79b48fcea5dd9f463b81a783ea11520fe9cb"}, + {file = "panel-1.4.5.tar.gz", hash = "sha256:a7c9be109b57bdea16a143ce6a897500e1172a28b8a7c0dcfd5b7f61c616ea42"}, ] [package.dependencies] @@ -4045,13 +4025,13 @@ tests = ["pytest", "pytest-timeout"] [[package]] name = "pymdown-extensions" -version = "10.8.1" +version = "10.9" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.8.1-py3-none-any.whl", hash = "sha256:f938326115884f48c6059c67377c46cf631c733ef3629b6eed1349989d1b30cb"}, - {file = "pymdown_extensions-10.8.1.tar.gz", hash = "sha256:3ab1db5c9e21728dabf75192d71471f8e50f216627e9a1fa9535ecb0231b9940"}, + {file = "pymdown_extensions-10.9-py3-none-any.whl", hash = "sha256:d323f7e90d83c86113ee78f3fe62fc9dee5f56b54d912660703ea1816fed5626"}, + {file = "pymdown_extensions-10.9.tar.gz", hash = "sha256:6ff740bcd99ec4172a938970d42b96128bdc9d4b9bcad72494f29921dc69b753"}, ] [package.dependencies] @@ -4162,36 +4142,36 @@ certifi = "*" [[package]] name = "pyresample" -version = "1.28.4" +version = "1.29.0" description = "Geospatial image resampling in Python" optional = false python-versions = ">=3.9" files = [ - {file = "pyresample-1.28.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1184fd5553e734a3e9e64c3964c040edd9d7e43ab5f53f7bffc6de7cd8b411c8"}, - {file = "pyresample-1.28.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cb49be2ebeab6a200cb81f03ab0e9f65af7f9e5a68dd2c5efd2113dda9d5a6cf"}, - {file = "pyresample-1.28.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c2b19961dae1ccb8ac7296e6fefe40590181ac8f97fd1089b223b3cda04bab07"}, - {file = "pyresample-1.28.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:152845d0c105f5617ffda96ed993fa91e28391d58bdc786b1b293cc0cf9332d6"}, - {file = "pyresample-1.28.4-cp310-cp310-win_amd64.whl", hash = "sha256:6e9fd55d7098757e88d6ea298541c1cdf6acebfe14171547787031e5ed126984"}, - {file = "pyresample-1.28.4-cp310-cp310-win_arm64.whl", hash = "sha256:534d25f1d5c69113713bb6e4cb0b8f99a325431d185025c1cd6dc8dac9722c1f"}, - {file = "pyresample-1.28.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:948b82102a097159fd8e664aaa315d316db4da82a340fc78cf518ddf18f9e161"}, - {file = "pyresample-1.28.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3aa34ab3532a968adc14ec9d0d909204cc28f475cbc6a24fda7dc97362cd739"}, - {file = "pyresample-1.28.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:891fa471c6844bc78926b23059503abf1d7848620223043a8d461b804fae34b6"}, - {file = "pyresample-1.28.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:627874822332428483cebe656104b9a0b42d28e94a2b31b610d5ab79e90da875"}, - {file = "pyresample-1.28.4-cp311-cp311-win_amd64.whl", hash = "sha256:a8baae466c11816e6c361ad7bf17bc4741dc4e79f62b0d6399042b02fa84075c"}, - {file = "pyresample-1.28.4-cp311-cp311-win_arm64.whl", hash = "sha256:128af462f190150a34ae7e070d0c16be4c4c12fb732cb9dcbb3e9e07e31fe452"}, - {file = "pyresample-1.28.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3136a8563673e4bab5b21ed4de1936e55f13deae8a55d41873cacfd573f466d7"}, - {file = "pyresample-1.28.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:284b852a15d1f42137a64ab494202e85d19bcb2eb7d09457308c00779fb51a07"}, - {file = "pyresample-1.28.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2b7c243d9e3c195c1c8fa7389f26067f0365e9d90fdc3e6218cc62a0836bfb06"}, - {file = "pyresample-1.28.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb078550ec3c90e08c7c5890fed3623e9a340ac0bc59816e5897420b78137be3"}, - {file = "pyresample-1.28.4-cp312-cp312-win_amd64.whl", hash = "sha256:784cb68a0f09d4e984282753403adaa44cfc4573873b113563e00abe944718ab"}, - {file = "pyresample-1.28.4-cp312-cp312-win_arm64.whl", hash = "sha256:d4b6434236ac124d9b48596cc69cf3d615962fc4413f329f7c09b6d2c7d9a8ea"}, - {file = "pyresample-1.28.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bcc253a710c22905f7f53add8b69eafc3bcbc5e63bc9bb48e6ad70b993fa41c1"}, - {file = "pyresample-1.28.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87fbb9e2ab331e4dc1e5458009159dbd58979a407b604269fb91e6dd8b71dfc6"}, - {file = "pyresample-1.28.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9174ab4781875ef14a528e791188c3db3bd5597e27cf65f32c38764bbbe4da4e"}, - {file = "pyresample-1.28.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07740db69065ee3078d38c4afff87a7849a1f94c4a1fa18511fe16d22e33eb49"}, - {file = "pyresample-1.28.4-cp39-cp39-win_amd64.whl", hash = "sha256:aedff7188e937cd0e8fb9ecef3ca9ae371f032c8a31a0f82b918b0b9bbceb4d2"}, - {file = "pyresample-1.28.4-cp39-cp39-win_arm64.whl", hash = "sha256:5309808cf03c89e340c187cb3dbf99604f39048c045918e27b1b3711e6f01772"}, - {file = "pyresample-1.28.4.tar.gz", hash = "sha256:0326f6aaacec22a39ccfc558c3214f204ffac9fe1d15d0e0ffbff505e18bdeb3"}, + {file = "pyresample-1.29.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4947f1f7661dd13997d49fb82aecb0570ff50e3dff4d8fe3c8b7283683f6956e"}, + {file = "pyresample-1.29.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a263d0ec87c2ff8c6a354acde2701a4452e18a9d05fbe8e889cb3926b0b727d8"}, + {file = "pyresample-1.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eebf9e52f4b0616a457844579e9c09622780ce5d0cd61290cd4a1b7b9d076fc0"}, + {file = "pyresample-1.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79f220663eb259ebc0ba453766c0665abddebdfc7cce6977ed99d82cd05f28cb"}, + {file = "pyresample-1.29.0-cp310-cp310-win_amd64.whl", hash = "sha256:056031d90258383064b708bdfbfb9179fe7e9afca01a8cc978e6504520991904"}, + {file = "pyresample-1.29.0-cp310-cp310-win_arm64.whl", hash = "sha256:e85f2db68633a6af4abbecfaf9630d065d4ece108c87ca77a96b87e574b19986"}, + {file = "pyresample-1.29.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:646bc0d6b88c521ea5fc3af20a2ee66b67b9ebabcf81f14d7fedde4a3e84fe6a"}, + {file = "pyresample-1.29.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d52ba4dcd60d358aca809b76000130932f62a682f72eedf5c69b37fefa224c24"}, + {file = "pyresample-1.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6858cbb0edc6747213fe061cdbe4cb6dcf088c5db456a79f7f06762e9afb5ff3"}, + {file = "pyresample-1.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55f39919f9f5a0aec132afd9cb2c7ec695d84995ce5746900e49edacef5e9ba2"}, + {file = "pyresample-1.29.0-cp311-cp311-win_amd64.whl", hash = "sha256:648798f3c1d0f63533a0d329cf4b606e45207e05e29fce6f8109887c905b0c71"}, + {file = "pyresample-1.29.0-cp311-cp311-win_arm64.whl", hash = "sha256:d3fdc824b38d1876b6b53d01c25a74bbea5596d8776e81f575ea857a29bdb32d"}, + {file = "pyresample-1.29.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d333be285e4854ab9d2e607b4f31bb756818797e41bcc6541cf71d840714a92b"}, + {file = "pyresample-1.29.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f8e3a8076c375f37ce75076db70cdec1eeebc8d6a4bfe3671e69b1ed27bbe0b9"}, + {file = "pyresample-1.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b397e3a437a7d6d4dda2f0c9d2891218c3c4bbddcd05fe5ee09999a23a8b5420"}, + {file = "pyresample-1.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6c26015e5a7cf5a11f181bfe5757ea7ebe2ca5d68651cb1a7151c4f16ac836a"}, + {file = "pyresample-1.29.0-cp312-cp312-win_amd64.whl", hash = "sha256:411199a2e94f0598706b00c0e1818be20f4c1f7e0d2f6c8db32ef6601b0d6968"}, + {file = "pyresample-1.29.0-cp312-cp312-win_arm64.whl", hash = "sha256:3a2843d3ac01022b6dfde4ac6318cacf82414e960560a0d98c4c765e5f898f32"}, + {file = "pyresample-1.29.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25d23575124e1a6b14dade0c8abea7f2c5206ed21089746c06bd4bba81b87ceb"}, + {file = "pyresample-1.29.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a29b82b1de35f1453a9290d7889d4090b1949deb8f41e85abd06a2c5d55f4c84"}, + {file = "pyresample-1.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ff0d98517267abe0864842737f3f73326ae45e19d3455e05b50103b1d384723"}, + {file = "pyresample-1.29.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2c084887eeb3f50acb67baa8b4a08b6e894a70c70882625534b9ced102e2a80"}, + {file = "pyresample-1.29.0-cp39-cp39-win_amd64.whl", hash = "sha256:ce002328326fdef5c386354ec425e68bd92043965028feee8255da17e41ea40b"}, + {file = "pyresample-1.29.0-cp39-cp39-win_arm64.whl", hash = "sha256:3032a2ad27eb846b0c57098feb4776f3cdc67ff4cb402c31b3fe7d4cc38f366f"}, + {file = "pyresample-1.29.0.tar.gz", hash = "sha256:ea04159f022670719d10e9583eb2f8061adbca3fc662c0801fb08784830207c9"}, ] [package.dependencies] @@ -4230,13 +4210,13 @@ files = [ [[package]] name = "pytest" -version = "8.3.1" +version = "8.3.2" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.3.1-py3-none-any.whl", hash = "sha256:e9600ccf4f563976e2c99fa02c7624ab938296551f280835ee6516df8bc4ae8c"}, - {file = "pytest-8.3.1.tar.gz", hash = "sha256:7e8e5c5abd6e93cb1cc151f23e57adc31fcf8cfd2a3ff2da63e23f732de35db6"}, + {file = "pytest-8.3.2-py3-none-any.whl", hash = "sha256:4ba08f9ae7dcf84ded419494d229b48d0903ea6407b030eaec46df5e6a73bba5"}, + {file = "pytest-8.3.2.tar.gz", hash = "sha256:c132345d12ce551242c87269de812483f5bcc87cdbb4722e48487ba194f9fdce"}, ] [package.dependencies] @@ -4315,20 +4295,20 @@ files = [ [[package]] name = "pyviz-comms" -version = "3.0.2" +version = "3.0.3" description = "A JupyterLab extension for rendering HoloViz content." optional = true python-versions = ">=3.8" files = [ - {file = "pyviz_comms-3.0.2-py3-none-any.whl", hash = "sha256:31541b976a21b7738557c3ea23bd8e44e94e736b9ed269570dcc28db4449d7e3"}, - {file = "pyviz_comms-3.0.2.tar.gz", hash = "sha256:3167df932656416c4bd711205dad47e986a3ebae1f316258ddc26f9e01513ef7"}, + {file = "pyviz_comms-3.0.3-py3-none-any.whl", hash = "sha256:fd26951eebc7950106d481655d91ba06296d4cf352dffb1d03f88f959832448e"}, + {file = "pyviz_comms-3.0.3.tar.gz", hash = "sha256:fde4a017c2213ecee63a9a6741431c845e42a5c7b1588e4a7ba2e4370c583728"}, ] [package.dependencies] param = "*" [package.extras] -all = ["pyviz-comms[build]", "pyviz-comms[tests]"] +all = ["flake8", "jupyterlab (>=4.0,<5.0)", "keyring", "pytest", "rfc3986", "setuptools (>=40.8.0)", "twine"] build = ["jupyterlab (>=4.0,<5.0)", "keyring", "rfc3986", "setuptools (>=40.8.0)", "twine"] tests = ["flake8", "pytest"] @@ -4610,90 +4590,90 @@ rpds-py = ">=0.7.0" [[package]] name = "regex" -version = "2024.5.15" +version = "2024.7.24" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.8" files = [ - {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f"}, - {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6"}, - {file = "regex-2024.5.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53"}, - {file = "regex-2024.5.15-cp310-cp310-win32.whl", hash = "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3"}, - {file = "regex-2024.5.15-cp310-cp310-win_amd64.whl", hash = "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68"}, - {file = "regex-2024.5.15-cp311-cp311-win32.whl", hash = "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa"}, - {file = "regex-2024.5.15-cp311-cp311-win_amd64.whl", hash = "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80"}, - {file = "regex-2024.5.15-cp312-cp312-win32.whl", hash = "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe"}, - {file = "regex-2024.5.15-cp312-cp312-win_amd64.whl", hash = "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741"}, - {file = "regex-2024.5.15-cp38-cp38-win32.whl", hash = "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9"}, - {file = "regex-2024.5.15-cp38-cp38-win_amd64.whl", hash = "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456"}, - {file = "regex-2024.5.15-cp39-cp39-win32.whl", hash = "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694"}, - {file = "regex-2024.5.15-cp39-cp39-win_amd64.whl", hash = "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388"}, - {file = "regex-2024.5.15.tar.gz", hash = "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c"}, + {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce"}, + {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024"}, + {file = "regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa"}, + {file = "regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66"}, + {file = "regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e"}, + {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281"}, + {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b"}, + {file = "regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e"}, + {file = "regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c"}, + {file = "regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52"}, + {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86"}, + {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad"}, + {file = "regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38"}, + {file = "regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc"}, + {file = "regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908"}, + {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:66b4c0731a5c81921e938dcf1a88e978264e26e6ac4ec96a4d21ae0354581ae0"}, + {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:88ecc3afd7e776967fa16c80f974cb79399ee8dc6c96423321d6f7d4b881c92b"}, + {file = "regex-2024.7.24-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64bd50cf16bcc54b274e20235bf8edbb64184a30e1e53873ff8d444e7ac656b2"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb462f0e346fcf41a901a126b50f8781e9a474d3927930f3490f38a6e73b6950"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a82465ebbc9b1c5c50738536fdfa7cab639a261a99b469c9d4c7dcbb2b3f1e57"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:68a8f8c046c6466ac61a36b65bb2395c74451df2ffb8458492ef49900efed293"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac8e84fff5d27420f3c1e879ce9929108e873667ec87e0c8eeb413a5311adfe"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba2537ef2163db9e6ccdbeb6f6424282ae4dea43177402152c67ef869cf3978b"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:43affe33137fcd679bdae93fb25924979517e011f9dea99163f80b82eadc7e53"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c9bb87fdf2ab2370f21e4d5636e5317775e5d51ff32ebff2cf389f71b9b13750"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:945352286a541406f99b2655c973852da7911b3f4264e010218bbc1cc73168f2"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:8bc593dcce679206b60a538c302d03c29b18e3d862609317cb560e18b66d10cf"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:3f3b6ca8eae6d6c75a6cff525c8530c60e909a71a15e1b731723233331de4169"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c51edc3541e11fbe83f0c4d9412ef6c79f664a3745fab261457e84465ec9d5a8"}, + {file = "regex-2024.7.24-cp38-cp38-win32.whl", hash = "sha256:d0a07763776188b4db4c9c7fb1b8c494049f84659bb387b71c73bbc07f189e96"}, + {file = "regex-2024.7.24-cp38-cp38-win_amd64.whl", hash = "sha256:8fd5afd101dcf86a270d254364e0e8dddedebe6bd1ab9d5f732f274fa00499a5"}, + {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24"}, + {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d"}, + {file = "regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9"}, + {file = "regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1"}, + {file = "regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9"}, + {file = "regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506"}, ] [[package]] @@ -4758,110 +4738,114 @@ test = ["dask", "netcdf4", "pytest (>=3.6)", "pytest-cov", "pytest-timeout"] [[package]] name = "rpds-py" -version = "0.19.0" +version = "0.19.1" description = "Python bindings to Rust's persistent data structures (rpds)" optional = true python-versions = ">=3.8" files = [ - {file = "rpds_py-0.19.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:fb37bd599f031f1a6fb9e58ec62864ccf3ad549cf14bac527dbfa97123edcca4"}, - {file = "rpds_py-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3384d278df99ec2c6acf701d067147320b864ef6727405d6470838476e44d9e8"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54548e0be3ac117595408fd4ca0ac9278fde89829b0b518be92863b17ff67a2"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8eb488ef928cdbc05a27245e52de73c0d7c72a34240ef4d9893fdf65a8c1a955"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5da93debdfe27b2bfc69eefb592e1831d957b9535e0943a0ee8b97996de21b5"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79e205c70afddd41f6ee79a8656aec738492a550247a7af697d5bd1aee14f766"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:959179efb3e4a27610e8d54d667c02a9feaa86bbabaf63efa7faa4dfa780d4f1"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6e605bb9edcf010f54f8b6a590dd23a4b40a8cb141255eec2a03db249bc915b"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9133d75dc119a61d1a0ded38fb9ba40a00ef41697cc07adb6ae098c875195a3f"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd36b712d35e757e28bf2f40a71e8f8a2d43c8b026d881aa0c617b450d6865c9"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354f3a91718489912f2e0fc331c24eaaf6a4565c080e00fbedb6015857c00582"}, - {file = "rpds_py-0.19.0-cp310-none-win32.whl", hash = "sha256:ebcbf356bf5c51afc3290e491d3722b26aaf5b6af3c1c7f6a1b757828a46e336"}, - {file = "rpds_py-0.19.0-cp310-none-win_amd64.whl", hash = "sha256:75a6076289b2df6c8ecb9d13ff79ae0cad1d5fb40af377a5021016d58cd691ec"}, - {file = "rpds_py-0.19.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6d45080095e585f8c5097897313def60caa2046da202cdb17a01f147fb263b81"}, - {file = "rpds_py-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5c9581019c96f865483d031691a5ff1cc455feb4d84fc6920a5ffc48a794d8a"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1540d807364c84516417115c38f0119dfec5ea5c0dd9a25332dea60b1d26fc4d"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e65489222b410f79711dc3d2d5003d2757e30874096b2008d50329ea4d0f88c"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da6f400eeb8c36f72ef6646ea530d6d175a4f77ff2ed8dfd6352842274c1d8b"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f46bb11858717e0efa7893c0f7055c43b44c103e40e69442db5061cb26ed34"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:071d4adc734de562bd11d43bd134330fb6249769b2f66b9310dab7460f4bf714"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9625367c8955e4319049113ea4f8fee0c6c1145192d57946c6ffcd8fe8bf48dd"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e19509145275d46bc4d1e16af0b57a12d227c8253655a46bbd5ec317e941279d"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d438e4c020d8c39961deaf58f6913b1bf8832d9b6f62ec35bd93e97807e9cbc"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90bf55d9d139e5d127193170f38c584ed3c79e16638890d2e36f23aa1630b952"}, - {file = "rpds_py-0.19.0-cp311-none-win32.whl", hash = "sha256:8d6ad132b1bc13d05ffe5b85e7a01a3998bf3a6302ba594b28d61b8c2cf13aaf"}, - {file = "rpds_py-0.19.0-cp311-none-win_amd64.whl", hash = "sha256:7ec72df7354e6b7f6eb2a17fa6901350018c3a9ad78e48d7b2b54d0412539a67"}, - {file = "rpds_py-0.19.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5095a7c838a8647c32aa37c3a460d2c48debff7fc26e1136aee60100a8cd8f68"}, - {file = "rpds_py-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f2f78ef14077e08856e788fa482107aa602636c16c25bdf59c22ea525a785e9"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7cc6cb44f8636fbf4a934ca72f3e786ba3c9f9ba4f4d74611e7da80684e48d2"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf902878b4af334a09de7a45badbff0389e7cf8dc2e4dcf5f07125d0b7c2656d"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:688aa6b8aa724db1596514751ffb767766e02e5c4a87486ab36b8e1ebc1aedac"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57dbc9167d48e355e2569346b5aa4077f29bf86389c924df25c0a8b9124461fb"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4cf5a9497874822341c2ebe0d5850fed392034caadc0bad134ab6822c0925b"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a790d235b9d39c70a466200d506bb33a98e2ee374a9b4eec7a8ac64c2c261fa"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d16089dfa58719c98a1c06f2daceba6d8e3fb9b5d7931af4a990a3c486241cb"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bc9128e74fe94650367fe23f37074f121b9f796cabbd2f928f13e9661837296d"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8f77e661ffd96ff104bebf7d0f3255b02aa5d5b28326f5408d6284c4a8b3248"}, - {file = "rpds_py-0.19.0-cp312-none-win32.whl", hash = "sha256:5f83689a38e76969327e9b682be5521d87a0c9e5a2e187d2bc6be4765f0d4600"}, - {file = "rpds_py-0.19.0-cp312-none-win_amd64.whl", hash = "sha256:06925c50f86da0596b9c3c64c3837b2481337b83ef3519e5db2701df695453a4"}, - {file = "rpds_py-0.19.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:52e466bea6f8f3a44b1234570244b1cff45150f59a4acae3fcc5fd700c2993ca"}, - {file = "rpds_py-0.19.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e21cc693045fda7f745c790cb687958161ce172ffe3c5719ca1764e752237d16"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b31f059878eb1f5da8b2fd82480cc18bed8dcd7fb8fe68370e2e6285fa86da6"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dd46f309e953927dd018567d6a9e2fb84783963650171f6c5fe7e5c41fd5666"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a01a4490e170376cd79258b7f755fa13b1a6c3667e872c8e35051ae857a92b"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcf426a8c38eb57f7bf28932e68425ba86def6e756a5b8cb4731d8e62e4e0223"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68eea5df6347d3f1378ce992d86b2af16ad7ff4dcb4a19ccdc23dea901b87fb"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dab8d921b55a28287733263c0e4c7db11b3ee22aee158a4de09f13c93283c62d"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6fe87efd7f47266dfc42fe76dae89060038f1d9cb911f89ae7e5084148d1cc08"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:535d4b52524a961d220875688159277f0e9eeeda0ac45e766092bfb54437543f"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8b1a94b8afc154fbe36978a511a1f155f9bd97664e4f1f7a374d72e180ceb0ae"}, - {file = "rpds_py-0.19.0-cp38-none-win32.whl", hash = "sha256:7c98298a15d6b90c8f6e3caa6457f4f022423caa5fa1a1ca7a5e9e512bdb77a4"}, - {file = "rpds_py-0.19.0-cp38-none-win_amd64.whl", hash = "sha256:b0da31853ab6e58a11db3205729133ce0df26e6804e93079dee095be3d681dc1"}, - {file = "rpds_py-0.19.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5039e3cef7b3e7a060de468a4a60a60a1f31786da94c6cb054e7a3c75906111c"}, - {file = "rpds_py-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab1932ca6cb8c7499a4d87cb21ccc0d3326f172cfb6a64021a889b591bb3045c"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2afd2164a1e85226fcb6a1da77a5c8896c18bfe08e82e8ceced5181c42d2179"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b1c30841f5040de47a0046c243fc1b44ddc87d1b12435a43b8edff7e7cb1e0d0"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f757f359f30ec7dcebca662a6bd46d1098f8b9fb1fcd661a9e13f2e8ce343ba1"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15e65395a59d2e0e96caf8ee5389ffb4604e980479c32742936ddd7ade914b22"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb0f6eb3a320f24b94d177e62f4074ff438f2ad9d27e75a46221904ef21a7b05"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b228e693a2559888790936e20f5f88b6e9f8162c681830eda303bad7517b4d5a"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2575efaa5d949c9f4e2cdbe7d805d02122c16065bfb8d95c129372d65a291a0b"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5c872814b77a4e84afa293a1bee08c14daed1068b2bb1cc312edbf020bbbca2b"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:850720e1b383df199b8433a20e02b25b72f0fded28bc03c5bd79e2ce7ef050be"}, - {file = "rpds_py-0.19.0-cp39-none-win32.whl", hash = "sha256:ce84a7efa5af9f54c0aa7692c45861c1667080814286cacb9958c07fc50294fb"}, - {file = "rpds_py-0.19.0-cp39-none-win_amd64.whl", hash = "sha256:1c26da90b8d06227d7769f34915913911222d24ce08c0ab2d60b354e2d9c7aff"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:75969cf900d7be665ccb1622a9aba225cf386bbc9c3bcfeeab9f62b5048f4a07"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8445f23f13339da640d1be8e44e5baf4af97e396882ebbf1692aecd67f67c479"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5a7c1062ef8aea3eda149f08120f10795835fc1c8bc6ad948fb9652a113ca55"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:462b0c18fbb48fdbf980914a02ee38c423a25fcc4cf40f66bacc95a2d2d73bc8"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3208f9aea18991ac7f2b39721e947bbd752a1abbe79ad90d9b6a84a74d44409b"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3444fe52b82f122d8a99bf66777aed6b858d392b12f4c317da19f8234db4533"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb4bac7185a9f0168d38c01d7a00addece9822a52870eee26b8d5b61409213"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b130bd4163c93798a6b9bb96be64a7c43e1cec81126ffa7ffaa106e1fc5cef5"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a707b158b4410aefb6b054715545bbb21aaa5d5d0080217290131c49c2124a6e"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dc9ac4659456bde7c567107556ab065801622396b435a3ff213daef27b495388"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:81ea573aa46d3b6b3d890cd3c0ad82105985e6058a4baed03cf92518081eec8c"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3f148c3f47f7f29a79c38cc5d020edcb5ca780020fab94dbc21f9af95c463581"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0906357f90784a66e89ae3eadc2654f36c580a7d65cf63e6a616e4aec3a81be"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f629ecc2db6a4736b5ba95a8347b0089240d69ad14ac364f557d52ad68cf94b0"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6feacd1d178c30e5bc37184526e56740342fd2aa6371a28367bad7908d454fc"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b6068ee374fdfab63689be0963333aa83b0815ead5d8648389a8ded593378"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d57546bad81e0da13263e4c9ce30e96dcbe720dbff5ada08d2600a3502e526"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6683a37338818646af718c9ca2a07f89787551057fae57c4ec0446dc6224b"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e8481b946792415adc07410420d6fc65a352b45d347b78fec45d8f8f0d7496f0"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bec35eb20792ea64c3c57891bc3ca0bedb2884fbac2c8249d9b731447ecde4fa"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:aa5476c3e3a402c37779e95f7b4048db2cb5b0ed0b9d006983965e93f40fe05a"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:19d02c45f2507b489fd4df7b827940f1420480b3e2e471e952af4d44a1ea8e34"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3e2fd14c5d49ee1da322672375963f19f32b3d5953f0615b175ff7b9d38daed"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:93a91c2640645303e874eada51f4f33351b84b351a689d470f8108d0e0694210"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b9fc03bf76a94065299d4a2ecd8dfbae4ae8e2e8098bbfa6ab6413ca267709"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5a4b07cdf3f84310c08c1de2c12ddadbb7a77568bcb16e95489f9c81074322ed"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba0ed0dc6763d8bd6e5de5cf0d746d28e706a10b615ea382ac0ab17bb7388633"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:474bc83233abdcf2124ed3f66230a1c8435896046caa4b0b5ab6013c640803cc"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329c719d31362355a96b435f4653e3b4b061fcc9eba9f91dd40804ca637d914e"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef9101f3f7b59043a34f1dccbb385ca760467590951952d6701df0da9893ca0c"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0121803b0f424ee2109d6e1f27db45b166ebaa4b32ff47d6aa225642636cd834"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8344127403dea42f5970adccf6c5957a71a47f522171fafaf4c6ddb41b61703a"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:443cec402ddd650bb2b885113e1dcedb22b1175c6be223b14246a714b61cd521"}, - {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, + {file = "rpds_py-0.19.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:aaf71f95b21f9dc708123335df22e5a2fef6307e3e6f9ed773b2e0938cc4d491"}, + {file = "rpds_py-0.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca0dda0c5715efe2ab35bb83f813f681ebcd2840d8b1b92bfc6fe3ab382fae4a"}, + {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81db2e7282cc0487f500d4db203edc57da81acde9e35f061d69ed983228ffe3b"}, + {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1a8dfa125b60ec00c7c9baef945bb04abf8ac772d8ebefd79dae2a5f316d7850"}, + {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271accf41b02687cef26367c775ab220372ee0f4925591c6796e7c148c50cab5"}, + {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9bc4161bd3b970cd6a6fcda70583ad4afd10f2750609fb1f3ca9505050d4ef3"}, + {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0cf2a0dbb5987da4bd92a7ca727eadb225581dd9681365beba9accbe5308f7d"}, + {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5e28e56143750808c1c79c70a16519e9bc0a68b623197b96292b21b62d6055c"}, + {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c7af6f7b80f687b33a4cdb0a785a5d4de1fb027a44c9a049d8eb67d5bfe8a687"}, + {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e429fc517a1c5e2a70d576077231538a98d59a45dfc552d1ac45a132844e6dfb"}, + {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d2dbd8f4990d4788cb122f63bf000357533f34860d269c1a8e90ae362090ff3a"}, + {file = "rpds_py-0.19.1-cp310-none-win32.whl", hash = "sha256:e0f9d268b19e8f61bf42a1da48276bcd05f7ab5560311f541d22557f8227b866"}, + {file = "rpds_py-0.19.1-cp310-none-win_amd64.whl", hash = "sha256:df7c841813f6265e636fe548a49664c77af31ddfa0085515326342a751a6ba51"}, + {file = "rpds_py-0.19.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:902cf4739458852fe917104365ec0efbea7d29a15e4276c96a8d33e6ed8ec137"}, + {file = "rpds_py-0.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3d73022990ab0c8b172cce57c69fd9a89c24fd473a5e79cbce92df87e3d9c48"}, + {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3837c63dd6918a24de6c526277910e3766d8c2b1627c500b155f3eecad8fad65"}, + {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cdb7eb3cf3deb3dd9e7b8749323b5d970052711f9e1e9f36364163627f96da58"}, + {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26ab43b6d65d25b1a333c8d1b1c2f8399385ff683a35ab5e274ba7b8bb7dc61c"}, + {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75130df05aae7a7ac171b3b5b24714cffeabd054ad2ebc18870b3aa4526eba23"}, + {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c34f751bf67cab69638564eee34023909380ba3e0d8ee7f6fe473079bf93f09b"}, + {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f2671cb47e50a97f419a02cd1e0c339b31de017b033186358db92f4d8e2e17d8"}, + {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3c73254c256081704dba0a333457e2fb815364018788f9b501efe7c5e0ada401"}, + {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4383beb4a29935b8fa28aca8fa84c956bf545cb0c46307b091b8d312a9150e6a"}, + {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dbceedcf4a9329cc665452db1aaf0845b85c666e4885b92ee0cddb1dbf7e052a"}, + {file = "rpds_py-0.19.1-cp311-none-win32.whl", hash = "sha256:f0a6d4a93d2a05daec7cb885157c97bbb0be4da739d6f9dfb02e101eb40921cd"}, + {file = "rpds_py-0.19.1-cp311-none-win_amd64.whl", hash = "sha256:c149a652aeac4902ecff2dd93c3b2681c608bd5208c793c4a99404b3e1afc87c"}, + {file = "rpds_py-0.19.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:56313be667a837ff1ea3508cebb1ef6681d418fa2913a0635386cf29cff35165"}, + {file = "rpds_py-0.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d1d7539043b2b31307f2c6c72957a97c839a88b2629a348ebabe5aa8b626d6b"}, + {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e1dc59a5e7bc7f44bd0c048681f5e05356e479c50be4f2c1a7089103f1621d5"}, + {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8f78398e67a7227aefa95f876481485403eb974b29e9dc38b307bb6eb2315ea"}, + {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ef07a0a1d254eeb16455d839cef6e8c2ed127f47f014bbda64a58b5482b6c836"}, + {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8124101e92c56827bebef084ff106e8ea11c743256149a95b9fd860d3a4f331f"}, + {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08ce9c95a0b093b7aec75676b356a27879901488abc27e9d029273d280438505"}, + {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b02dd77a2de6e49078c8937aadabe933ceac04b41c5dde5eca13a69f3cf144e"}, + {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4dd02e29c8cbed21a1875330b07246b71121a1c08e29f0ee3db5b4cfe16980c4"}, + {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9c7042488165f7251dc7894cd533a875d2875af6d3b0e09eda9c4b334627ad1c"}, + {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f809a17cc78bd331e137caa25262b507225854073fd319e987bd216bed911b7c"}, + {file = "rpds_py-0.19.1-cp312-none-win32.whl", hash = "sha256:3ddab996807c6b4227967fe1587febade4e48ac47bb0e2d3e7858bc621b1cace"}, + {file = "rpds_py-0.19.1-cp312-none-win_amd64.whl", hash = "sha256:32e0db3d6e4f45601b58e4ac75c6f24afbf99818c647cc2066f3e4b192dabb1f"}, + {file = "rpds_py-0.19.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:747251e428406b05fc86fee3904ee19550c4d2d19258cef274e2151f31ae9d38"}, + {file = "rpds_py-0.19.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dc733d35f861f8d78abfaf54035461e10423422999b360966bf1c443cbc42705"}, + {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbda75f245caecff8faa7e32ee94dfaa8312a3367397975527f29654cd17a6ed"}, + {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd04d8cab16cab5b0a9ffc7d10f0779cf1120ab16c3925404428f74a0a43205a"}, + {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2d66eb41ffca6cc3c91d8387509d27ba73ad28371ef90255c50cb51f8953301"}, + {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fdf4890cda3b59170009d012fca3294c00140e7f2abe1910e6a730809d0f3f9b"}, + {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1fa67ef839bad3815124f5f57e48cd50ff392f4911a9f3cf449d66fa3df62a5"}, + {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b82c9514c6d74b89a370c4060bdb80d2299bc6857e462e4a215b4ef7aa7b090e"}, + {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c7b07959866a6afb019abb9564d8a55046feb7a84506c74a6f197cbcdf8a208e"}, + {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4f580ae79d0b861dfd912494ab9d477bea535bfb4756a2269130b6607a21802e"}, + {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c6d20c8896c00775e6f62d8373aba32956aa0b850d02b5ec493f486c88e12859"}, + {file = "rpds_py-0.19.1-cp313-none-win32.whl", hash = "sha256:afedc35fe4b9e30ab240b208bb9dc8938cb4afe9187589e8d8d085e1aacb8309"}, + {file = "rpds_py-0.19.1-cp313-none-win_amd64.whl", hash = "sha256:1d4af2eb520d759f48f1073ad3caef997d1bfd910dc34e41261a595d3f038a94"}, + {file = "rpds_py-0.19.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:34bca66e2e3eabc8a19e9afe0d3e77789733c702c7c43cd008e953d5d1463fde"}, + {file = "rpds_py-0.19.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:24f8ae92c7fae7c28d0fae9b52829235df83f34847aa8160a47eb229d9666c7b"}, + {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71157f9db7f6bc6599a852852f3389343bea34315b4e6f109e5cbc97c1fb2963"}, + {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1d494887d40dc4dd0d5a71e9d07324e5c09c4383d93942d391727e7a40ff810b"}, + {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7b3661e6d4ba63a094138032c1356d557de5b3ea6fd3cca62a195f623e381c76"}, + {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97fbb77eaeb97591efdc654b8b5f3ccc066406ccfb3175b41382f221ecc216e8"}, + {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cc4bc73e53af8e7a42c8fd7923bbe35babacfa7394ae9240b3430b5dcf16b2a"}, + {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:35af5e4d5448fa179fd7fff0bba0fba51f876cd55212f96c8bbcecc5c684ae5c"}, + {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3511f6baf8438326e351097cecd137eb45c5f019944fe0fd0ae2fea2fd26be39"}, + {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:57863d16187995c10fe9cf911b897ed443ac68189179541734502353af33e693"}, + {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:9e318e6786b1e750a62f90c6f7fa8b542102bdcf97c7c4de2a48b50b61bd36ec"}, + {file = "rpds_py-0.19.1-cp38-none-win32.whl", hash = "sha256:53dbc35808c6faa2ce3e48571f8f74ef70802218554884787b86a30947842a14"}, + {file = "rpds_py-0.19.1-cp38-none-win_amd64.whl", hash = "sha256:8df1c283e57c9cb4d271fdc1875f4a58a143a2d1698eb0d6b7c0d7d5f49c53a1"}, + {file = "rpds_py-0.19.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:e76c902d229a3aa9d5ceb813e1cbcc69bf5bda44c80d574ff1ac1fa3136dea71"}, + {file = "rpds_py-0.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de1f7cd5b6b351e1afd7568bdab94934d656abe273d66cda0ceea43bbc02a0c2"}, + {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24fc5a84777cb61692d17988989690d6f34f7f95968ac81398d67c0d0994a897"}, + {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:74129d5ffc4cde992d89d345f7f7d6758320e5d44a369d74d83493429dad2de5"}, + {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e360188b72f8080fefa3adfdcf3618604cc8173651c9754f189fece068d2a45"}, + {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13e6d4840897d4e4e6b2aa1443e3a8eca92b0402182aafc5f4ca1f5e24f9270a"}, + {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f09529d2332264a902688031a83c19de8fda5eb5881e44233286b9c9ec91856d"}, + {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0d4b52811dcbc1aba08fd88d475f75b4f6db0984ba12275d9bed1a04b2cae9b5"}, + {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dd635c2c4043222d80d80ca1ac4530a633102a9f2ad12252183bcf338c1b9474"}, + {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f35b34a5184d5e0cc360b61664c1c06e866aab077b5a7c538a3e20c8fcdbf90b"}, + {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d4ec0046facab83012d821b33cead742a35b54575c4edfb7ed7445f63441835f"}, + {file = "rpds_py-0.19.1-cp39-none-win32.whl", hash = "sha256:f5b8353ea1a4d7dfb59a7f45c04df66ecfd363bb5b35f33b11ea579111d4655f"}, + {file = "rpds_py-0.19.1-cp39-none-win_amd64.whl", hash = "sha256:1fb93d3486f793d54a094e2bfd9cd97031f63fcb5bc18faeb3dd4b49a1c06523"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7d5c7e32f3ee42f77d8ff1a10384b5cdcc2d37035e2e3320ded909aa192d32c3"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:89cc8921a4a5028d6dd388c399fcd2eef232e7040345af3d5b16c04b91cf3c7e"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bca34e913d27401bda2a6f390d0614049f5a95b3b11cd8eff80fe4ec340a1208"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5953391af1405f968eb5701ebbb577ebc5ced8d0041406f9052638bafe52209d"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:840e18c38098221ea6201f091fc5d4de6128961d2930fbbc96806fb43f69aec1"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6d8b735c4d162dc7d86a9cf3d717f14b6c73637a1f9cd57fe7e61002d9cb1972"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce757c7c90d35719b38fa3d4ca55654a76a40716ee299b0865f2de21c146801c"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a9421b23c85f361a133aa7c5e8ec757668f70343f4ed8fdb5a4a14abd5437244"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3b823be829407393d84ee56dc849dbe3b31b6a326f388e171555b262e8456cc1"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:5e58b61dcbb483a442c6239c3836696b79f2cd8e7eec11e12155d3f6f2d886d1"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39d67896f7235b2c886fb1ee77b1491b77049dcef6fbf0f401e7b4cbed86bbd4"}, + {file = "rpds_py-0.19.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8b32cd4ab6db50c875001ba4f5a6b30c0f42151aa1fbf9c2e7e3674893fb1dc4"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1c32e41de995f39b6b315d66c27dea3ef7f7c937c06caab4c6a79a5e09e2c415"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a129c02b42d46758c87faeea21a9f574e1c858b9f358b6dd0bbd71d17713175"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:346557f5b1d8fd9966059b7a748fd79ac59f5752cd0e9498d6a40e3ac1c1875f"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:31e450840f2f27699d014cfc8865cc747184286b26d945bcea6042bb6aa4d26e"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01227f8b3e6c8961490d869aa65c99653df80d2f0a7fde8c64ebddab2b9b02fd"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69084fd29bfeff14816666c93a466e85414fe6b7d236cfc108a9c11afa6f7301"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d2b88efe65544a7d5121b0c3b003ebba92bfede2ea3577ce548b69c5235185"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ea961a674172ed2235d990d7edf85d15d8dfa23ab8575e48306371c070cda67"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5beffdbe766cfe4fb04f30644d822a1080b5359df7db3a63d30fa928375b2720"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:720f3108fb1bfa32e51db58b832898372eb5891e8472a8093008010911e324c5"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c2087dbb76a87ec2c619253e021e4fb20d1a72580feeaa6892b0b3d955175a71"}, + {file = "rpds_py-0.19.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2ddd50f18ebc05ec29a0d9271e9dbe93997536da3546677f8ca00b76d477680c"}, + {file = "rpds_py-0.19.1.tar.gz", hash = "sha256:31dd5794837f00b46f4096aa8ccaa5972f73a938982e32ed817bb520c465e520"}, ] [[package]] @@ -4996,13 +4980,13 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "71.1.0" +version = "72.1.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855"}, - {file = "setuptools-71.1.0.tar.gz", hash = "sha256:032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"}, + {file = "setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1"}, + {file = "setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec"}, ] [package.extras] @@ -5623,13 +5607,13 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"] [[package]] name = "widgetsnbextension" -version = "3.6.7" +version = "3.6.8" description = "IPython HTML widgets for Jupyter" optional = true python-versions = "*" files = [ - {file = "widgetsnbextension-3.6.7-py2.py3-none-any.whl", hash = "sha256:8a36ee7a3c12e273522c15206ee2bc4d6aad46b1944b697024f6bef828139df3"}, - {file = "widgetsnbextension-3.6.7.tar.gz", hash = "sha256:7eca1116ad1d6ce69ea3fb0a113c7453cb7175a30fd387fb820a348243dd96fb"}, + {file = "widgetsnbextension-3.6.8-py2.py3-none-any.whl", hash = "sha256:35a8c9430e370a79fabe1b79c4346362a1fac777ea523017d10d512c85d0d371"}, + {file = "widgetsnbextension-3.6.8.tar.gz", hash = "sha256:85530f02dbb50cc961d01a119d521f356a881bddf514e5676a6f5761427ee6f5"}, ] [package.dependencies] @@ -5716,13 +5700,13 @@ files = [ [[package]] name = "xarray" -version = "2024.6.0" +version = "2024.7.0" description = "N-D labeled arrays and datasets in Python" optional = false python-versions = ">=3.9" files = [ - {file = "xarray-2024.6.0-py3-none-any.whl", hash = "sha256:721a7394e8ec3d592b2d8ebe21eed074ac077dc1bb1bd777ce00e41700b4866c"}, - {file = "xarray-2024.6.0.tar.gz", hash = "sha256:0b91e0bc4dc0296947947640fe31ec6e867ce258d2f7cbc10bedf4a6d68340c7"}, + {file = "xarray-2024.7.0-py3-none-any.whl", hash = "sha256:1b0fd51ec408474aa1f4a355d75c00cc1c02bd425d97b2c2e551fd21810e7f64"}, + {file = "xarray-2024.7.0.tar.gz", hash = "sha256:4cae512d121a8522d41e66d942fb06c526bc1fd32c2c181d5fe62fe65b671638"}, ] [package.dependencies] diff --git a/scripts/generate_locks.sh b/scripts/generate_locks.sh index 264418e1..ad766b29 100755 --- a/scripts/generate_locks.sh +++ b/scripts/generate_locks.sh @@ -5,11 +5,11 @@ set -xeuo pipefail # Schism conda-lock lock --mamba --check-input-hash -p linux-64 -p osx-64 -f dependencies/schism_openmpi.yml --lockfile locks/schism_openmpi.yml -conda-lock lock --mamba --check-input-hash -p linux-64 -f dependencies/schism_mpich.yml --lockfile locks/schism_mpich.yml +conda-lock lock --mamba --check-input-hash -p linux-64 -p osx-64 -f dependencies/schism_mpich.yml --lockfile locks/schism_mpich.yml conda-lock render -p linux-64 --filename-template locks/conda-ubuntu-latest-schism_openmpi.lock locks/schism_openmpi.yml conda-lock render -p linux-64 --filename-template locks/conda-ubuntu-latest-schism_mpich.lock locks/schism_mpich.yml conda-lock render -p osx-64 --filename-template locks/conda-macos-latest-schism_openmpi.lock locks/schism_openmpi.yml -#conda-lock render -p osx-64 --filename-template locks/conda-macos-latest-schism_mpich.lock locks/schism_mpich.yml +conda-lock render -p osx-64 --filename-template locks/conda-macos-latest-schism_mpich.lock locks/schism_mpich.yml # delft3d conda-lock lock --mamba --check-input-hash -p linux-64 -p osx-64 -f dependencies/delft3d_openmpi.yml --lockfile locks/delft3d_openmpi.yml From 2cafc87330cbfb4d8c8f801da2035ff59df061fa Mon Sep 17 00:00:00 2001 From: George Breyiannis Date: Wed, 24 Jul 2024 16:38:23 +0200 Subject: [PATCH 22/26] tests: fix-updates Work towards tests with schism-5.12rc1 --- pyposeidon/dem_tools.py | 10 +- pyposeidon/mgmsh.py | 7 +- pyposeidon/misc/param.nml | 5 + pyposeidon/schism.py | 6 ++ tests/test_mesh_global.py | 13 +-- tests/test_schism_cast.py | 7 +- tests/test_schism_reforecast.py | 170 -------------------------------- 7 files changed, 32 insertions(+), 186 deletions(-) delete mode 100644 tests/test_schism_reforecast.py diff --git a/pyposeidon/dem_tools.py b/pyposeidon/dem_tools.py index 01de4ea3..9c7134de 100644 --- a/pyposeidon/dem_tools.py +++ b/pyposeidon/dem_tools.py @@ -810,11 +810,11 @@ def scale_dem(b, res_min, res_max, **kwargs): return nodes -def make_bgmesh(df, fpos, dem=None, scale=True, **kwargs): - lon_min = df.bounds.minx.min() - lon_max = df.bounds.maxx.max() - lat_min = df.bounds.miny.min() - lat_max = df.bounds.maxy.max() +def make_bgmesh(dc, fpos, dem=None, scale=True, **kwargs): + lon_min = dc.bounds.minx.min() + lon_max = dc.bounds.maxx.max() + lat_min = dc.bounds.miny.min() + lat_max = dc.bounds.maxy.max() kwargs_ = kwargs.copy() kwargs_.pop("lon_min", None) diff --git a/pyposeidon/mgmsh.py b/pyposeidon/mgmsh.py index f74514c6..84a54484 100644 --- a/pyposeidon/mgmsh.py +++ b/pyposeidon/mgmsh.py @@ -591,10 +591,13 @@ def to_geo(df, **kwargs): f.write("Physical Surface(1) = {2};\n") f.write("Field[1] = Distance;\n") + curve_list = np.arange(ltag + 1) if not gglobal: - curve_list = [x for x in np.arange(1, ltag + 1) if x not in loops] + idx = [0] + loops + curve_list = np.delete(curve_list, idx) else: - curve_list = [x for x in np.arange(2, ltag + 1) if x not in loops] + idx = [0, 1] + loops + curve_list = np.delete(curve_list, idx) if not bspline: f.write("Field[1].CurvesList = {{{}}};\n".format(",".join(map(str, curve_list)))) diff --git a/pyposeidon/misc/param.nml b/pyposeidon/misc/param.nml index 69ffe1a2..83878b8e 100644 --- a/pyposeidon/misc/param.nml +++ b/pyposeidon/misc/param.nml @@ -502,6 +502,10 @@ drampwind = 0. !needed if nrampwind/=0; ramp-up period in days ! iwindoff = 0 !needed only if nws/=0; '1': needs windfactor.gr3 iwind_form = -1 !needed if nws/=0 + !If impose_net_flux/=0 and nws=2, read in net _surface_ heat flux as var 'dlwrf' + !(Downward Long Wave) in sflux_rad (solar radiation is still used separately), + !and if PREC_EVAP is on, also read in net P-E as 'prate' (Surface Precipitation Rate) in sflux_prc. + ! impose_net_flux = 0 !----------------------------------------------------------------------- ! Heat and salt exchange. isconsv=1 needs ihconsv=1; ihconsv=1 needs nws=2. @@ -650,6 +654,7 @@ ! If USE_MARSH is on and isav=1, all .gr3 must have constant depths! !---------------------------------------------------------------------- iveg = 0 !on/off flag +! isav = 0 !on/off flag !---------------------------------------------------------------------- ! Coupling step with ICE module. diff --git a/pyposeidon/schism.py b/pyposeidon/schism.py index ea76804d..0c4f3589 100644 --- a/pyposeidon/schism.py +++ b/pyposeidon/schism.py @@ -1335,6 +1335,12 @@ def results(self, **kwargs): # fix fortran/python index x2d["SCHISM_hgrid_face_nodes"][:, :3] = x2d["SCHISM_hgrid_face_nodes"].values[:, :3] - 1 # set time to Datetime + if x2d.time.dtype == "float64": + times = pd.to_datetime(x2d.time.values, unit="s", origin=sdate.tz_convert(None)) + else: + times = pd.to_datetime(x2d.time) + + x2d = x2d.assign_coords({"time": ("time", times, x2d.time.attrs)}) logger.info("get combined 3D netcdf files \n") diff --git a/tests/test_mesh_global.py b/tests/test_mesh_global.py index f7164b81..d79dd646 100644 --- a/tests/test_mesh_global.py +++ b/tests/test_mesh_global.py @@ -15,17 +15,13 @@ @pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) @pytest.mark.parametrize("bgmesh", [None, DEM_FILE]) @pytest.mark.parametrize("bindings", [True, False]) -def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings): +@pytest.mark.parametrize("cbuffer", [None, 0.001]) +def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings, cbuffer): # Skip the test unless --runslow has been passed if bgmesh is not None: if not pytestconfig.getoption("--runslow"): pytest.skip("slow test") - if ggor == "jigsaw": - cb = 0.001 - else: - cb = None - mesh = pmesh.set( type="tri2d", geometry="global", @@ -34,7 +30,7 @@ def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings): mesh_generator=ggor, dem_source=bgmesh, use_bindings=bindings, - cbuffer=cb, + cbuffer=cbuffer, ) # save to file @@ -62,9 +58,10 @@ def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings): @pytest.mark.schism -@pytest.mark.parametrize("ggor,cbuffer", [("jigsaw", 0.001), ("gmsh", None)]) +@pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) @pytest.mark.parametrize("bgmesh", [None, DEM_FILE]) @pytest.mark.parametrize("bindings", [True, False]) +@pytest.mark.parametrize("cbuffer", [None, 0.001]) def test_validate(pytestconfig, tmpdir, ggor, cbuffer, bgmesh, bindings): if bgmesh is not None: if not pytestconfig.getoption("--runslow"): diff --git a/tests/test_schism_cast.py b/tests/test_schism_cast.py index 12a16af9..ccc00d69 100644 --- a/tests/test_schism_cast.py +++ b/tests/test_schism_cast.py @@ -140,7 +140,11 @@ def test_schism_cast(tmpdir, copy): @pytest.mark.schism -def test_schism_cast_workflow(tmpdir): +@pytest.mark.parametrize( + "hotstart", + [1, 2], +) +def test_schism_cast_workflow(tmpdir, hotstart): # initialize a model rpath = str(tmpdir) + "/schism/" test_case.update({"rpath": rpath + "20181001.00/"}) # use tmpdir for running the model @@ -177,6 +181,7 @@ def test_schism_cast_workflow(tmpdir): cpath=rpaths[l + 1], meteo=meteo[l + 1], sdate=date_list[l + 1], + ihot=hotstart, ) h.run(execute=True) # execute diff --git a/tests/test_schism_reforecast.py b/tests/test_schism_reforecast.py deleted file mode 100644 index 34181914..00000000 --- a/tests/test_schism_reforecast.py +++ /dev/null @@ -1,170 +0,0 @@ -import pytest -import pyposeidon -from pyposeidon.utils import cast, data -import pyposeidon.meteo as pm -import json -import pandas as pd -import datetime -import os -import numpy as np -import xarray as xr - -from . import DATA_DIR - - -MESH_FILE = (DATA_DIR / "hgrid.gr3").as_posix() -DEM_FILE = (DATA_DIR / "dem.nc").as_posix() -METEO_FILES_1 = [(DATA_DIR / "uvp_2018100100.grib").as_posix()] -METEO_FILES_2 = [ - (DATA_DIR / name).as_posix() - for name in ( - "uvp_2018100100.grib", - "uvp_2018100112.grib", - "uvp_2018100200.grib", - "uvp_2018100212.grib", - ) -] - - -# define in a dictionary the properties of the model.. -case = { - "solver_name": "schism", - "mesh_file": MESH_FILE, - "manning": 0.12, - "windrot": 0.00001, - "tag": "schism", - "start_date": "2018-10-1 0:0:0", - "time_frame": "12h", - "dem_source": DEM_FILE, - "meteo_source": METEO_FILES_1, - "meteo_merge": "first", # combine meteo - "meteo_combine_by": "nested", - "meteo_xr_kwargs": {"concat_dim": "step"}, - "update": ["all"], # update only meteo, keep dem - "parameters": { - "dt": 400, - "rnday": 0.5, - "nhot": 1, - "ihot": 0, - "nspool": 9, - "ihfskip": 36, - "nhot_write": 108, - }, - "scribes": 1, -} - - -# define in a dictionary the properties of the model.. -check = { - "solver_name": "schism", - "mesh_file": MESH_FILE, - "manning": 0.12, - "windrot": 0.00001, - "tag": "schism", - "start_date": "2018-10-1 0:0:0", - "time_frame": "36h", - "dem_source": DEM_FILE, - "update": ["all"], # update only meteo, keep dem - "parameters": { - "dt": 400, - "rnday": 1.5, - "nhot": 0, - "ihot": 0, - "nspool": 9, - "ihfskip": 36, - "nhot_write": 108, - }, - "scribes": 1, -} - - -@pytest.mark.schism -def test_schism_reforecast_workflow(tmpdir): - # initialize a model - rpath = str(tmpdir) + "/schism/" - case.update({"rpath": rpath + "20181001.00/"}) # use tmpdir for running the model - - b = pyposeidon.model.set(**case) - - b.execute() - - # creating a time sequence of the runs - start_date = pd.to_datetime("2018-10-1 0:0:0") - end_date = pd.to_datetime("2018-10-2 0:0:0") - date_list = pd.date_range(start_date, end_date, freq="12h") - - # creating a sequence of folder to store the runs. In this case we name them after the date attribute. - # NOTE that the first folder is the fisrt run already perfomed!! - rpaths = [rpath + datetime.datetime.strftime(x, "%Y%m%d.%H") + "/" for x in date_list] - - # creating a sequence of folder from which we read the meteo. - meteo = [] - for date in date_list: - prev_date = pd.to_datetime(date) - pd.to_timedelta("12h") - prev_date = prev_date.strftime(format="%Y-%m-%d %H:%M:%S") - dr = pd.date_range(prev_date, date, freq="12h") - names = ["uvp_" + datetime.datetime.strftime(x, "%Y%m%d%H") + ".grib" for x in dr] - dur = [(DATA_DIR / name).as_posix() for name in names] - meteo.append(dur) - - # set cast - for l in range(len(rpaths) - 1): - h = cast.set( - solver_name="schism", - model=b, - ppath=rpaths[l], - cpath=rpaths[l + 1], - meteo=meteo[l + 1], - sdate=date_list[l + 1], - ) - h.run(execute=True) # execute - - # Run check case - Total duration - check.update({"rpath": rpath + "check/"}) # use tmpdir for running the model - - # Combine meteo appropriately - - m1 = pm.Meteo(meteo_source=METEO_FILES_2[0]) - m2 = pm.Meteo(meteo_source=METEO_FILES_2[1]) - m3 = pm.Meteo(meteo_source=METEO_FILES_2[2]) - m4 = pm.Meteo(meteo_source=METEO_FILES_2[3]) - - # extract correct chunk - - w1 = m1.Dataset.isel(time=slice(0, 13)) - w2 = m2.Dataset.isel(time=slice(1, 13)) # note that we keep the 12 hour from the previous file - w3 = m3.Dataset.isel(time=slice(1, 13)) - w4 = m4.Dataset.isel(time=slice(1, 13)) - - # combine - meteo = xr.combine_by_coords([w1, w2, w3, w4], combine_attrs="override") - # saving - check.update({"meteo_source": meteo}) - - c = pyposeidon.model.set(**check) - - c.execute() - - # COMPARE - output = data.get_output(folders=rpaths, solver_name="schism") - - total = data.get_output(folders=[rpath + "check/"], solver_name="schism") - - r = output.Dataset.isel(time=slice(0, 36)) - - rb = [] - for var in total.Dataset.data_vars: - if not total.Dataset[var].equals(r[var]): - rb.append(var) - - # print(rb) - - # flag = True TODO - # for var in rb: - # flag = False - # mdif = np.abs(total.results.Dataset[var].values - output.results.Dataset[var].values).max() - # if mdif < 1.e-14 : - # flag = True - # print(mdif) - # expected = ["wetdry_side", "wetdry_elem", "wetdry_node", "zcor", "elev", "hvel"] - assert (rb == ["zcor"]) or (rb == []) From 9859d255401e7fd85df7f0d4d24643a0b6d53cfe Mon Sep 17 00:00:00 2001 From: brey Date: Tue, 6 Aug 2024 14:13:57 +0300 Subject: [PATCH 23/26] tests: make sure they pass --- pyposeidon/mjigsaw.py | 21 +++++++++++---------- pyposeidon/tools.py | 3 +-- pyposeidon/utils/coastfix.py | 6 +++--- tests/conftest.py | 3 ++- tests/test_boundary.py | 4 ++-- tests/test_dem_fix.py | 4 ++-- tests/test_dem_tile.py | 4 ++-- tests/test_mesh.py | 2 +- tests/test_mesh_global.py | 9 ++++++--- tests/test_schism_total.py | 2 +- 10 files changed, 31 insertions(+), 27 deletions(-) diff --git a/pyposeidon/mjigsaw.py b/pyposeidon/mjigsaw.py index b19cda43..3009894f 100644 --- a/pyposeidon/mjigsaw.py +++ b/pyposeidon/mjigsaw.py @@ -243,13 +243,13 @@ def read_msh(filename, **kwargs): A, idxA = np.unique(nodes["tag"], return_inverse=True) B, idxB = np.unique(tria["a"], return_inverse=True) - IDX = np.in1d(A, B) + IDX = np.isin(A, B) tria["a"] = idxA[IDX][idxB] B, idxB = np.unique(tria["b"], return_inverse=True) - IDX = np.in1d(A, B) + IDX = np.isin(A, B) tria["b"] = idxA[IDX][idxB] B, idxB = np.unique(tria["c"], return_inverse=True) - IDX = np.in1d(A, B) + IDX = np.isin(A, B) tria["c"] = idxA[IDX][idxB] # Drop invalid edges @@ -258,10 +258,10 @@ def read_msh(filename, **kwargs): ### Re-index edges A, idxA = np.unique(nodes["tag"], return_inverse=True) B, idxB = np.unique(edges["e1"], return_inverse=True) - IDX = np.in1d(A, B) + IDX = np.isin(A, B) edges["e1"] = idxA[IDX][idxB] B, idxB = np.unique(edges["e2"], return_inverse=True) - IDX = np.in1d(A, B) + IDX = np.isin(A, B) edges["e2"] = idxA[IDX][idxB] # clean up nodes = nodes.drop("tag", axis=1) @@ -479,20 +479,21 @@ def get(contours, **kwargs): hfun_scal = kwargs.get("hfun_scal", "ABSOLUTE") hfun_min = kwargs.get("hfun_min", 0.0) - hfun_max = kwargs.get("hfun_max", 1000.0) + hfun_max = kwargs.get("hfun_max", 100.0) + mesh_eps1 = kwargs.get("mesh_eps1", 0.3) with open(fjig, "w") as f: f.write("GEOM_FILE ={}\n".format(tag + "-geo.msh")) f.write("MESH_FILE ={}\n".format(tag + ".msh")) if bgmesh: f.write("HFUN_FILE ={}\n".format(tag + "-hfun.msh")) - f.write("HFUN_SCAL = {}\n".format(hfun_scal)) - f.write("HFUN_HMAX = {}\n".format(hfun_max)) - f.write("HFUN_HMIN = {}\n".format(hfun_min)) + f.write(f"HFUN_SCAL = {hfun_scal}\n") + f.write(f"HFUN_HMAX = {hfun_max}\n") + f.write(f"HFUN_HMIN = {hfun_min}\n") f.write("MESH_DIMS = 2\n") f.write("MESH_TOP1 = TRUE\n") # f.write('MESH_TOP2 = TRUE\n') - f.write("MESH_EPS1 = 1.0\n") + f.write(f"MESH_EPS1 = {mesh_eps1}\n") f.write("MESH_RAD2 = 1\n") f.write("GEOM_FEAT = TRUE\n") f.write("VERBOSITY = 2") diff --git a/pyposeidon/tools.py b/pyposeidon/tools.py index 4435f12c..ec91e77f 100644 --- a/pyposeidon/tools.py +++ b/pyposeidon/tools.py @@ -156,7 +156,6 @@ def setup_logging( logger.addHandler(file_handler) -# TODO Handle master/develop version def parse_schism_version(version_output: str) -> str: if "schism develop" in version_output: version = "develop" @@ -530,7 +529,7 @@ def dequantize( missing_value: int, dtype: npt.DTypeLike, ) -> npt.NDArray[np.float_]: - array = bn.replace(array.astype(np.float_), missing_value, np.nan) + array = bn.replace(array.astype(np.float64), missing_value, np.nan) dequantized = (array * scale_factor) + add_offset return dequantized diff --git a/pyposeidon/utils/coastfix.py b/pyposeidon/utils/coastfix.py index 785fca6e..1c081cf3 100644 --- a/pyposeidon/utils/coastfix.py +++ b/pyposeidon/utils/coastfix.py @@ -25,9 +25,9 @@ def simplify(geo): if (geo.geom_type == "Polygon").all(): try: - geo_ = list(geo.buffer(0).unary_union.geoms) + geo_ = list(geo.buffer(0).union_all().geoms) except TypeError: - geo_ = [geo.buffer(0).unary_union] + geo_ = [geo.buffer(0).union_all()] geo = gp.GeoDataFrame(geometry=geo_) geo = gp.GeoDataFrame(geometry=geo.buffer(0)) @@ -40,7 +40,7 @@ def simplify(geo): for idx, geom in dg.iterrows(): pl = shapely.polygonize_full(dg.loc[[idx]].boundary.explode(index_parts=False).values) df = gp.GeoDataFrame(geometry=[pl[0]]).explode(index_parts=False) - dff = gp.GeoDataFrame(geometry=[df.unary_union]) + dff = gp.GeoDataFrame(geometry=[df.union_all()]) geo.loc[idx, "geometry"] = dff.geometry.buffer(0).values[0] if geo.is_valid.all() and (geo.boundary.geom_type == "LineString").all(): diff --git a/tests/conftest.py b/tests/conftest.py index 88c08472..671ee8c3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -79,7 +79,8 @@ def save_as(url: str, path: pathlib.Path) -> None: TEST_DATA = { - DATA_DIR / "ocean.zip": "https://www.dropbox.com/sh/cgyk6ychwimjlzr/AADlueXH1I1F01mlgerMUSb6a?dl=1", + DATA_DIR + / "ocean.parquet": "https://www.dropbox.com/scl/fi/msiru06qdh7cq99lsxicx/ocean.parquet?rlkey=ku7afiues47y91a15hdvtcybu&st=nayi0hc2&dl=1", DATA_DIR / "bl.zip": "https://www.dropbox.com/sh/9tfdl67sll1ax8c/AACntQeIavCzRfTZZ9Tp8uFda?dl=1", DATA_DIR / "dem.nc": "https://www.dropbox.com/s/l16crheqc9d89gy/dem.nc?dl=1", DATA_DIR / "dem.tif": "https://www.dropbox.com/s/dgdlnr2p5q66np7/dem.tif?dl=1", diff --git a/tests/test_boundary.py b/tests/test_boundary.py index 472d276d..7d19d75b 100644 --- a/tests/test_boundary.py +++ b/tests/test_boundary.py @@ -6,9 +6,9 @@ noaa = DATA_DIR / "bl.zip" -COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() +COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() -land = gp.read_file(COAST_FILE).drop("FID", axis=1) +land = gp.read_file(COAST_FILE) coast = gp.GeoDataFrame(geometry=land.boundary) INPUTS = pytest.mark.parametrize("input", [land, coast]) diff --git a/tests/test_dem_fix.py b/tests/test_dem_fix.py index 5d401cfd..30bdbb5e 100644 --- a/tests/test_dem_fix.py +++ b/tests/test_dem_fix.py @@ -6,7 +6,7 @@ from . import DATA_DIR -COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() +COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() DEM_SOURCES = pytest.mark.parametrize( "dem_source", @@ -29,7 +29,7 @@ @pytest.fixture(scope="session") def coasts(): - coast = gp.read_file(COAST_FILE).drop("FID", axis=1) + coast = gp.read_file(COAST_FILE) return coast diff --git a/tests/test_dem_tile.py b/tests/test_dem_tile.py index 50470511..dc0ca133 100644 --- a/tests/test_dem_tile.py +++ b/tests/test_dem_tile.py @@ -6,7 +6,7 @@ from . import DATA_DIR -COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() +COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() DEM_SOURCES = pytest.mark.parametrize( "dem_source", @@ -18,7 +18,7 @@ @pytest.fixture(scope="session") def coasts(): - # coast = gp.read_file(COAST_FILE).drop("FID", axis=1) + # coast = gp.read_file(COAST_FILE) cr = "h" coast = cf.NaturalEarthFeature( category="physical", name="land", scale="{}m".format({"l": 110, "i": 50, "h": 10}[cr]) diff --git a/tests/test_mesh.py b/tests/test_mesh.py index 9688e684..e97d8ac8 100644 --- a/tests/test_mesh.py +++ b/tests/test_mesh.py @@ -5,7 +5,7 @@ from . import DATA_DIR -COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() +COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() WINDOWS = pytest.mark.parametrize( "window", diff --git a/tests/test_mesh_global.py b/tests/test_mesh_global.py index d79dd646..eff2b292 100644 --- a/tests/test_mesh_global.py +++ b/tests/test_mesh_global.py @@ -9,13 +9,13 @@ DEM_FILE = (DATA_DIR / "dem.nc").as_posix() -COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() +COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() @pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) @pytest.mark.parametrize("bgmesh", [None, DEM_FILE]) @pytest.mark.parametrize("bindings", [True, False]) -@pytest.mark.parametrize("cbuffer", [None, 0.001]) +@pytest.mark.parametrize("cbuffer", [None, 0.01]) def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings, cbuffer): # Skip the test unless --runslow has been passed if bgmesh is not None: @@ -61,7 +61,7 @@ def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings, cbuffer): @pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) @pytest.mark.parametrize("bgmesh", [None, DEM_FILE]) @pytest.mark.parametrize("bindings", [True, False]) -@pytest.mark.parametrize("cbuffer", [None, 0.001]) +@pytest.mark.parametrize("cbuffer", [None, 0.01]) def test_validate(pytestconfig, tmpdir, ggor, cbuffer, bgmesh, bindings): if bgmesh is not None: if not pytestconfig.getoption("--runslow"): @@ -69,6 +69,9 @@ def test_validate(pytestconfig, tmpdir, ggor, cbuffer, bgmesh, bindings): if ggor == "jigsaw": pytest.xfail("Fixing these is a WIP") + # if ggor == "jigsaw": + # pytest.xfail("Fixing these is a WIP") + mesh = pmesh.set( type="tri2d", geometry="global", diff --git a/tests/test_schism_total.py b/tests/test_schism_total.py index d1af198d..5a05dbdd 100644 --- a/tests/test_schism_total.py +++ b/tests/test_schism_total.py @@ -8,7 +8,7 @@ DEM_FILE = DATA_DIR / "dem.nc" -COAST_FILE = (DATA_DIR / "ocean.zip").as_posix() +COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() WINDOWS = pytest.mark.parametrize( "window", From f0a5492726382a1aedd0cf33035812fc3ba6a67d Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Thu, 22 Aug 2024 11:49:09 +0300 Subject: [PATCH 24/26] feat: Add `to_geodataframe()` --- locks/requirements-ci.txt | 43 +- locks/requirements-full.txt | 63 +- locks/requirements-viz.txt | 48 +- locks/requirements.txt | 41 +- poetry.lock | 1590 +++++++++++++++++++---------------- pyposeidon/boundary.py | 7 +- pyposeidon/d3d.py | 3 +- pyposeidon/dem_tools.py | 3 +- pyposeidon/schism.py | 5 +- pyposeidon/tools.py | 11 + pyposeidon/utils/post.py | 5 +- pyposeidon/utils/pplot.py | 5 +- pyproject.toml | 4 +- tests/test_boundary.py | 7 +- tests/test_dem_fix.py | 9 +- 15 files changed, 982 insertions(+), 862 deletions(-) diff --git a/locks/requirements-ci.txt b/locks/requirements-ci.txt index d3520715..9cba4f92 100644 --- a/locks/requirements-ci.txt +++ b/locks/requirements-ci.txt @@ -2,7 +2,7 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" -attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" black==24.8.0 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" @@ -10,7 +10,7 @@ bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" -cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" +cffi==1.17.0 ; python_version >= "3.9" and python_version < "4" cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" @@ -22,12 +22,12 @@ colorama==0.4.6 ; python_version >= "3.9" and python_version < "4" and (sys_plat colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" -coverage[toml]==7.6.0 ; python_version >= "3.9" and python_version < "4" +coverage[toml]==7.6.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" +dask==2024.8.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.10 ; python_version >= "3.9" and python_version < "4.0" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" -docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" +docopt-ng==0.9.0 ; python_version >= "3.9" and python_version < "4" donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" erddapy==2.2.0 ; python_version >= "3.9" and python_version < "4.0" @@ -45,8 +45,8 @@ html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" -importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" +importlib-metadata==8.4.0 ; python_version >= "3.9" and python_version < "4" +importlib-resources==6.4.4 ; python_version >= "3.9" and python_version < "4" iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4" jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" @@ -55,14 +55,14 @@ limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" -lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" -lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.3.0 ; python_version >= "3.9" and python_version < "4" +lxml[html-clean]==5.3.0 ; python_version >= "3.9" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.2 ; python_version >= "3.9" and python_version < "4" mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post2 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" -numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" +numpy==2.0.1 ; python_version >= "3.9" and python_version < "4" packaging==24.1 ; python_version >= "3.9" and python_version < "4" pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" partd==1.4.2 ; python_version >= "3.9" and python_version < "4" @@ -71,10 +71,11 @@ pillow==10.4.0 ; python_version >= "3.9" and python_version < "4" platformdirs==4.2.2 ; python_version >= "3.9" and python_version < "4" pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4" psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" +pyarrow==17.0.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" -pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" +pydap==3.5 ; python_version >= "3.9" and python_version < "4" pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" @@ -87,30 +88,30 @@ pytest-xdist==3.6.1 ; python_version >= "3.9" and python_version < "4" pytest==8.3.2 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" -pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" +pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" -setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" +setuptools==73.0.1 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.6 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" -soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" +soupsieve==2.6 ; python_version >= "3.9" and python_version < "4" srsly==2.4.8 ; python_version >= "3.9" and python_version < "4" threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" +tqdm==4.66.5 ; python_version >= "3.9" and python_version < "4" typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" -webob==1.8.7 ; python_version >= "3.9" and python_version < "4" +webob==1.8.8 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" +zipp==3.20.0 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements-full.txt b/locks/requirements-full.txt index c1dc8cf7..de5eed9d 100644 --- a/locks/requirements-full.txt +++ b/locks/requirements-full.txt @@ -7,9 +7,8 @@ argon2-cffi-bindings==21.2.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi==23.1.0 ; python_version >= "3.9" and python_version < "4" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" asttokens==2.4.1 ; python_version >= "3.9" and python_version < "4" -attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" -babel==2.15.0 ; python_version >= "3.9" and python_version < "4" -backports-strenum==1.3.1 ; python_version >= "3.9" and python_version < "3.11" +attrs==24.2.0 ; python_version >= "3.9" and python_version < "4" +babel==2.16.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" black==24.8.0 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" @@ -19,7 +18,7 @@ bump2version==1.0.1 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" catalogue==2.0.10 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" -cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" +cffi==1.17.0 ; python_version >= "3.9" and python_version < "4" cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" @@ -33,16 +32,16 @@ colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" comm==0.2.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" -coverage[toml]==7.6.0 ; python_version >= "3.9" and python_version < "4" +coverage[toml]==7.6.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" +dask==2024.8.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.10 ; python_version >= "3.9" and python_version < "4.0" datashader==0.16.3 ; python_version >= "3.9" and python_version < "4" -debugpy==1.8.3 ; python_version >= "3.9" and python_version < "4" +debugpy==1.8.5 ; python_version >= "3.9" and python_version < "4" decorator==5.1.1 ; python_version >= "3.9" and python_version < "4" defusedxml==0.7.1 ; python_version >= "3.9" and python_version < "4" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" -docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" +docopt-ng==0.9.0 ; python_version >= "3.9" and python_version < "4" donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" envisage==7.0.3 ; python_version >= "3.9" and python_version < "4" @@ -60,7 +59,7 @@ geopandas==1.0.1 ; python_version >= "3.9" and python_version < "4" geoviews[recommended]==1.12.0 ; python_version >= "3.9" and python_version < "4" ghp-import==2.1.0 ; python_version >= "3.9" and python_version < "4" gmsh==4.13.1 ; python_version >= "3.9" and python_version < "4" -griffe==0.48.0 ; python_version >= "3.9" and python_version < "4" +griffe==1.1.1 ; python_version >= "3.9" and python_version < "4" h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0" holoviews==1.19.1 ; python_version >= "3.9" and python_version < "4" html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" @@ -68,8 +67,8 @@ httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" hvplot==0.10.0 ; python_version >= "3.9" and python_version < "4" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" -importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" +importlib-metadata==8.4.0 ; python_version >= "3.9" and python_version < "4" +importlib-resources==6.4.4 ; python_version >= "3.9" and python_version < "4" iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4" ipydatawidgets==4.3.2 ; python_version >= "3.9" and python_version < "4" ipykernel==6.29.5 ; python_version >= "3.9" and python_version < "4" @@ -97,24 +96,24 @@ linkify-it-py==2.0.3 ; python_version >= "3.9" and python_version < "4" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" -lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" -lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.3.0 ; python_version >= "3.9" and python_version < "4" +lxml[html-clean]==5.3.0 ; python_version >= "3.9" and python_version < "4.0" markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4" -markdown==3.6 ; python_version >= "3.9" and python_version < "4" +markdown==3.7 ; python_version >= "3.9" and python_version < "4" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" matplotlib-inline==0.1.7 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.2 ; python_version >= "3.9" and python_version < "4" mayavi==4.8.2 ; python_version >= "3.9" and python_version < "4" mdit-py-plugins==0.4.1 ; python_version >= "3.9" and python_version < "4" mdurl==0.1.2 ; python_version >= "3.9" and python_version < "4" mergedeep==1.3.4 ; python_version >= "3.9" and python_version < "4" mistune==3.0.2 ; python_version >= "3.9" and python_version < "4" -mkdocs-autorefs==1.0.1 ; python_version >= "3.9" and python_version < "4" +mkdocs-autorefs==1.1.0 ; python_version >= "3.9" and python_version < "4" mkdocs-get-deps==0.2.0 ; python_version >= "3.9" and python_version < "4" mkdocs-material-extensions==1.3.1 ; python_version >= "3.9" and python_version < "4" -mkdocs-material==9.5.31 ; python_version >= "3.9" and python_version < "4" +mkdocs-material==9.5.32 ; python_version >= "3.9" and python_version < "4" mkdocs==1.6.0 ; python_version >= "3.9" and python_version < "4" -mkdocstrings-python==1.10.7 ; python_version >= "3.9" and python_version < "4" +mkdocstrings-python==1.10.8 ; python_version >= "3.9" and python_version < "4" mkdocstrings==0.25.2 ; python_version >= "3.9" and python_version < "4" multipledispatch==1.0.0 ; python_version >= "3.9" and python_version < "4" mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4" @@ -122,11 +121,11 @@ nbclient==0.10.0 ; python_version >= "3.9" and python_version < "4" nbconvert==7.16.4 ; python_version >= "3.9" and python_version < "4" nbformat==5.10.4 ; python_version >= "3.9" and python_version < "4" nest-asyncio==1.6.0 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post2 ; python_version >= "3.9" and python_version < "4" notebook==6.4.13 ; python_version >= "3.9" and python_version < "4" numba==0.60.0 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" -numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" +numpy==2.0.1 ; python_version >= "3.9" and python_version < "4" packaging==24.1 ; python_version >= "3.9" and python_version < "4" paginate==0.5.6 ; python_version >= "3.9" and python_version < "4" pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" @@ -151,7 +150,7 @@ pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pyct==0.5.0 ; python_version >= "3.9" and python_version < "4" pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" -pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" +pydap==3.5 ; python_version >= "3.9" and python_version < "4" pyface==8.0.0 ; python_version >= "3.9" and python_version < "4" pygments==2.18.0 ; python_version >= "3.9" and python_version < "4" pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" @@ -171,25 +170,25 @@ pyviz-comms==3.0.3 ; python_version >= "3.9" and python_version < "4" pywin32==306 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4" pywinpty==2.0.13 ; python_version >= "3.9" and python_version < "4" and os_name == "nt" pyyaml-env-tag==0.1 ; python_version >= "3.9" and python_version < "4" -pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" -pyzmq==26.0.3 ; python_version >= "3.9" and python_version < "4" +pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4" +pyzmq==26.2.0 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" referencing==0.35.1 ; python_version >= "3.9" and python_version < "4" regex==2024.7.24 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" retrying==1.3.4 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -rpds-py==0.19.1 ; python_version >= "3.9" and python_version < "4" +rpds-py==0.20.0 ; python_version >= "3.9" and python_version < "4" scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" send2trash==1.8.3 ; python_version >= "3.9" and python_version < "4" -setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" +setuptools==73.0.1 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.6 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" -soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" +soupsieve==2.6 ; python_version >= "3.9" and python_version < "4" spatialpandas==0.4.10 ; python_version >= "3.9" and python_version < "4" srsly==2.4.8 ; python_version >= "3.9" and python_version < "4" stack-data==0.6.3 ; python_version >= "3.9" and python_version < "4" @@ -199,7 +198,7 @@ tinycss2==1.3.0 ; python_version >= "3.9" and python_version < "4" tomli==2.0.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" tornado==6.4.1 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" +tqdm==4.66.5 ; python_version >= "3.9" and python_version < "4" traitlets==5.6.0 ; python_version >= "3.9" and python_version < "4" traits==6.4.3 ; python_version >= "3.9" and python_version < "4" traitsui==8.0.0 ; python_version >= "3.9" and python_version < "4" @@ -209,14 +208,14 @@ tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" uc-micro-py==1.0.3 ; python_version >= "3.9" and python_version < "4" urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" vtk==9.3.1 ; python_version >= "3.9" and python_version < "4" -watchdog==4.0.1 ; python_version >= "3.9" and python_version < "4" +watchdog==4.0.2 ; python_version >= "3.9" and python_version < "4" wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" -webob==1.8.7 ; python_version >= "3.9" and python_version < "4" +webob==1.8.8 ; python_version >= "3.9" and python_version < "4" widgetsnbextension==3.6.8 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" xyzservices==2024.6.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" +zipp==3.20.0 ; python_version >= "3.9" and python_version < "4" zstandard==0.23.0 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements-viz.txt b/locks/requirements-viz.txt index 782fb4fd..c6fb28d1 100644 --- a/locks/requirements-viz.txt +++ b/locks/requirements-viz.txt @@ -7,14 +7,14 @@ argon2-cffi-bindings==21.2.0 ; python_version >= "3.9" and python_version < "4" argon2-cffi==23.1.0 ; python_version >= "3.9" and python_version < "4" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" asttokens==2.4.1 ; python_version >= "3.9" and python_version < "4" -attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" bleach==6.1.0 ; python_version >= "3.9" and python_version < "4" bokeh==3.4.3 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" -cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" +cffi==1.17.0 ; python_version >= "3.9" and python_version < "4" cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" @@ -29,14 +29,14 @@ comm==0.2.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" +dask==2024.8.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.10 ; python_version >= "3.9" and python_version < "4.0" datashader==0.16.3 ; python_version >= "3.9" and python_version < "4" -debugpy==1.8.3 ; python_version >= "3.9" and python_version < "4" +debugpy==1.8.5 ; python_version >= "3.9" and python_version < "4" decorator==5.1.1 ; python_version >= "3.9" and python_version < "4" defusedxml==0.7.1 ; python_version >= "3.9" and python_version < "4" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" -docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" +docopt-ng==0.9.0 ; python_version >= "3.9" and python_version < "4" donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" envisage==7.0.3 ; python_version >= "3.9" and python_version < "4" @@ -59,8 +59,8 @@ httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" hvplot==0.10.0 ; python_version >= "3.9" and python_version < "4" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" -importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" +importlib-metadata==8.4.0 ; python_version >= "3.9" and python_version < "4" +importlib-resources==6.4.4 ; python_version >= "3.9" and python_version < "4" ipydatawidgets==4.3.2 ; python_version >= "3.9" and python_version < "4" ipykernel==6.29.5 ; python_version >= "3.9" and python_version < "4" ipympl==0.9.4 ; python_version >= "3.9" and python_version < "4" @@ -87,13 +87,13 @@ linkify-it-py==2.0.3 ; python_version >= "3.9" and python_version < "4" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" -lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" -lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.3.0 ; python_version >= "3.9" and python_version < "4" +lxml[html-clean]==5.3.0 ; python_version >= "3.9" and python_version < "4.0" markdown-it-py==3.0.0 ; python_version >= "3.9" and python_version < "4" -markdown==3.6 ; python_version >= "3.9" and python_version < "4" +markdown==3.7 ; python_version >= "3.9" and python_version < "4" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" matplotlib-inline==0.1.7 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.2 ; python_version >= "3.9" and python_version < "4" mayavi==4.8.2 ; python_version >= "3.9" and python_version < "4" mdit-py-plugins==0.4.1 ; python_version >= "3.9" and python_version < "4" mdurl==0.1.2 ; python_version >= "3.9" and python_version < "4" @@ -103,11 +103,11 @@ nbclient==0.10.0 ; python_version >= "3.9" and python_version < "4" nbconvert==7.16.4 ; python_version >= "3.9" and python_version < "4" nbformat==5.10.4 ; python_version >= "3.9" and python_version < "4" nest-asyncio==1.6.0 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post2 ; python_version >= "3.9" and python_version < "4" notebook==6.4.13 ; python_version >= "3.9" and python_version < "4" numba==0.60.0 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" -numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" +numpy==2.0.1 ; python_version >= "3.9" and python_version < "4" packaging==24.1 ; python_version >= "3.9" and python_version < "4" pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" pandocfilters==1.5.1 ; python_version >= "3.9" and python_version < "4" @@ -129,7 +129,7 @@ pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pyct==0.5.0 ; python_version >= "3.9" and python_version < "4" pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" -pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" +pydap==3.5 ; python_version >= "3.9" and python_version < "4" pyface==8.0.0 ; python_version >= "3.9" and python_version < "4" pygments==2.18.0 ; python_version >= "3.9" and python_version < "4" pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" @@ -144,24 +144,24 @@ pytz==2024.1 ; python_version >= "3.9" and python_version < "4" pyviz-comms==3.0.3 ; python_version >= "3.9" and python_version < "4" pywin32==306 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4" pywinpty==2.0.13 ; python_version >= "3.9" and python_version < "4" and os_name == "nt" -pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" -pyzmq==26.0.3 ; python_version >= "3.9" and python_version < "4" +pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4" +pyzmq==26.2.0 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" referencing==0.35.1 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" retrying==1.3.4 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" -rpds-py==0.19.1 ; python_version >= "3.9" and python_version < "4" +rpds-py==0.20.0 ; python_version >= "3.9" and python_version < "4" scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" send2trash==1.8.3 ; python_version >= "3.9" and python_version < "4" -setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" +setuptools==73.0.1 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.6 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" -soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" +soupsieve==2.6 ; python_version >= "3.9" and python_version < "4" spatialpandas==0.4.10 ; python_version >= "3.9" and python_version < "4" stack-data==0.6.3 ; python_version >= "3.9" and python_version < "4" terminado==0.18.1 ; python_version >= "3.9" and python_version < "4" @@ -169,7 +169,7 @@ threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" tinycss2==1.3.0 ; python_version >= "3.9" and python_version < "4" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" tornado==6.4.1 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" +tqdm==4.66.5 ; python_version >= "3.9" and python_version < "4" traitlets==5.6.0 ; python_version >= "3.9" and python_version < "4" traits==6.4.3 ; python_version >= "3.9" and python_version < "4" traitsui==8.0.0 ; python_version >= "3.9" and python_version < "4" @@ -181,11 +181,11 @@ urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" vtk==9.3.1 ; python_version >= "3.9" and python_version < "4" wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" -webob==1.8.7 ; python_version >= "3.9" and python_version < "4" +webob==1.8.8 ; python_version >= "3.9" and python_version < "4" widgetsnbextension==3.6.8 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" xyzservices==2024.6.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" +zipp==3.20.0 ; python_version >= "3.9" and python_version < "4" zstandard==0.23.0 ; python_version >= "3.9" and python_version < "4" diff --git a/locks/requirements.txt b/locks/requirements.txt index 7f91c9cc..7c8ad763 100644 --- a/locks/requirements.txt +++ b/locks/requirements.txt @@ -2,12 +2,12 @@ affine==2.4.0 ; python_version >= "3.9" and python_version < "4" annotated-types==0.7.0 ; python_version >= "3.9" and python_version < "4.0" anyio==4.4.0 ; python_version >= "3.9" and python_version < "4.0" asciitree==0.3.3 ; python_version >= "3.9" and python_version < "4" -attrs==24.1.0 ; python_version >= "3.9" and python_version < "4" +attrs==24.2.0 ; python_version >= "3.9" and python_version < "4" beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4" bottleneck==1.4.0 ; python_version >= "3.9" and python_version < "4" cartopy==0.23.0 ; python_version >= "3.9" and python_version < "4" certifi==2024.7.4 ; python_version >= "3.9" and python_version < "4" -cffi==1.16.0 ; python_version >= "3.9" and python_version < "4" +cffi==1.17.0 ; python_version >= "3.9" and python_version < "4" cfgrib==0.9.14.0 ; python_version >= "3.9" and python_version < "4" cftime==1.6.4 ; python_version >= "3.9" and python_version < "4" charset-normalizer==3.3.2 ; python_version >= "3.9" and python_version < "4" @@ -20,10 +20,10 @@ colorlog==6.8.2 ; python_version >= "3.9" and python_version < "4" configobj==5.0.8 ; python_version >= "3.9" and python_version < "4" contourpy==1.2.1 ; python_version >= "3.9" and python_version < "4" cycler==0.12.1 ; python_version >= "3.9" and python_version < "4" -dask==2024.7.1 ; python_version >= "3.9" and python_version < "4" -dataretrieval==1.0.9 ; python_version >= "3.9" and python_version < "4.0" +dask==2024.8.0 ; python_version >= "3.9" and python_version < "4" +dataretrieval==1.0.10 ; python_version >= "3.9" and python_version < "4.0" deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0" -docopt==0.6.2 ; python_version >= "3.9" and python_version < "4" +docopt-ng==0.9.0 ; python_version >= "3.9" and python_version < "4" donfig==0.8.1.post1 ; python_version >= "3.9" and python_version < "4" eccodes==1.7.1 ; python_version >= "3.9" and python_version < "4" erddapy==2.2.0 ; python_version >= "3.9" and python_version < "4.0" @@ -40,8 +40,8 @@ html5lib==1.1 ; python_version >= "3.9" and python_version < "4.0" httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0" httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0" idna==3.7 ; python_version >= "3.9" and python_version < "4" -importlib-metadata==8.2.0 ; python_version >= "3.9" and python_version < "3.12" -importlib-resources==6.4.0 ; python_version >= "3.9" and python_version < "4.0" +importlib-metadata==8.4.0 ; python_version >= "3.9" and python_version < "4" +importlib-resources==6.4.4 ; python_version >= "3.9" and python_version < "4" jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4" joblib==1.4.2 ; python_version >= "3.9" and python_version < "4" kiwisolver==1.4.5 ; python_version >= "3.9" and python_version < "4" @@ -49,23 +49,24 @@ limits==3.13.0 ; python_version >= "3.9" and python_version < "4.0" llvmlite==0.43.0 ; python_version >= "3.9" and python_version < "4" locket==1.0.0 ; python_version >= "3.9" and python_version < "4" lxml-html-clean==0.2.0 ; python_version >= "3.9" and python_version < "4.0" -lxml==5.2.2 ; python_version >= "3.9" and python_version < "4.0" -lxml[html-clean]==5.2.2 ; python_version >= "3.9" and python_version < "4.0" +lxml==5.3.0 ; python_version >= "3.9" and python_version < "4" +lxml[html-clean]==5.3.0 ; python_version >= "3.9" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4" -matplotlib==3.9.1 ; python_version >= "3.9" and python_version < "4" -netcdf4==1.7.1.post1 ; python_version >= "3.9" and python_version < "4" +matplotlib==3.9.2 ; python_version >= "3.9" and python_version < "4" +netcdf4==1.7.1.post2 ; python_version >= "3.9" and python_version < "4" numcodecs==0.12.1 ; python_version >= "3.9" and python_version < "4" -numpy==1.26.4 ; python_version >= "3.9" and python_version < "4" +numpy==2.0.1 ; python_version >= "3.9" and python_version < "4" packaging==24.1 ; python_version >= "3.9" and python_version < "4" pandas==2.2.2 ; python_version >= "3.9" and python_version < "4" partd==1.4.2 ; python_version >= "3.9" and python_version < "4" pillow==10.4.0 ; python_version >= "3.9" and python_version < "4" platformdirs==4.2.2 ; python_version >= "3.9" and python_version < "4" psutil==6.0.0 ; python_version >= "3.9" and python_version < "4" +pyarrow==17.0.0 ; python_version >= "3.9" and python_version < "4" pycparser==2.22 ; python_version >= "3.9" and python_version < "4" pydantic-core==2.20.1 ; python_version >= "3.9" and python_version < "4.0" pydantic==2.8.2 ; python_version >= "3.9" and python_version < "4.0" -pydap==3.4.1 ; python_version >= "3.9" and python_version < "4" +pydap==3.5 ; python_version >= "3.9" and python_version < "4" pykdtree==1.3.12 ; python_version >= "3.9" and python_version < "4" pymap3d==3.1.0 ; python_version >= "3.9" and python_version < "4" pyogrio==0.9.0 ; python_version >= "3.9" and python_version < "4" @@ -75,28 +76,28 @@ pyresample==1.29.0 ; python_version >= "3.9" and python_version < "4" pyshp==2.3.1 ; python_version >= "3.9" and python_version < "4" python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4" pytz==2024.1 ; python_version >= "3.9" and python_version < "4" -pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4" +pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4" rasterio==1.3.10 ; python_version >= "3.9" and python_version < "4" requests==2.32.3 ; python_version >= "3.9" and python_version < "4" rioxarray==0.15.0 ; python_version >= "3.9" and python_version < "4" scikit-learn==1.5.1 ; python_version >= "3.9" and python_version < "4" scipy==1.13.1 ; python_version >= "3.9" and python_version < "4" searvey==0.3.13 ; python_version >= "3.9" and python_version < "4.0" -setuptools==72.1.0 ; python_version >= "3.9" and python_version < "4" -shapely==2.0.5 ; python_version >= "3.9" and python_version < "4" +setuptools==73.0.1 ; python_version >= "3.9" and python_version < "4" +shapely==2.0.6 ; python_version >= "3.9" and python_version < "4" six==1.16.0 ; python_version >= "3.9" and python_version < "4" sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0" snuggs==1.4.7 ; python_version >= "3.9" and python_version < "4" -soupsieve==2.5 ; python_version >= "3.9" and python_version < "4" +soupsieve==2.6 ; python_version >= "3.9" and python_version < "4" threadpoolctl==3.5.0 ; python_version >= "3.9" and python_version < "4" toolz==0.12.1 ; python_version >= "3.9" and python_version < "4" -tqdm==4.66.4 ; python_version >= "3.9" and python_version < "4" +tqdm==4.66.5 ; python_version >= "3.9" and python_version < "4" typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0" tzdata==2024.1 ; python_version >= "3.9" and python_version < "4" urllib3==2.2.2 ; python_version >= "3.9" and python_version < "4" webencodings==0.5.1 ; python_version >= "3.9" and python_version < "4.0" -webob==1.8.7 ; python_version >= "3.9" and python_version < "4" +webob==1.8.8 ; python_version >= "3.9" and python_version < "4" wrapt==1.16.0 ; python_version >= "3.9" and python_version < "4.0" xarray==2024.7.0 ; python_version >= "3.9" and python_version < "4" zarr==2.18.2 ; python_version >= "3.9" and python_version < "4" -zipp==3.19.2 ; python_version >= "3.9" and python_version < "3.12" +zipp==3.20.0 ; python_version >= "3.9" and python_version < "4" diff --git a/poetry.lock b/poetry.lock index 72750e37..4a2c4fd8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -168,13 +168,13 @@ test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] [[package]] name = "attrs" -version = "24.1.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-24.1.0-py3-none-any.whl", hash = "sha256:377b47448cb61fea38533f671fba0d0f8a96fd58facd4dc518e3dac9dbea0905"}, - {file = "attrs-24.1.0.tar.gz", hash = "sha256:adbdec84af72d38be7628e353a09b6a6790d15cd71819f6e9d7b0faa8a125745"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] @@ -187,29 +187,18 @@ tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "babel" -version = "2.15.0" +version = "2.16.0" description = "Internationalization utilities" optional = false python-versions = ">=3.8" files = [ - {file = "Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb"}, - {file = "babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] [package.extras] dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] -[[package]] -name = "backports-strenum" -version = "1.3.1" -description = "Base class for creating enumerated constants that are also subclasses of str" -optional = false -python-versions = ">=3.8.6,<3.11" -files = [ - {file = "backports_strenum-1.3.1-py3-none-any.whl", hash = "sha256:cdcfe36dc897e2615dc793b7d3097f54d359918fc448754a517e6f23044ccf83"}, - {file = "backports_strenum-1.3.1.tar.gz", hash = "sha256:77c52407342898497714f0596e86188bb7084f89063226f4ba66863482f42414"}, -] - [[package]] name = "beautifulsoup4" version = "4.12.3" @@ -451,63 +440,78 @@ files = [ [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.0" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"}, + {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"}, + {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"}, + {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"}, + {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"}, + {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"}, + {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"}, + {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"}, + {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"}, + {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"}, + {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"}, + {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"}, + {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"}, + {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"}, + {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"}, ] [package.dependencies] @@ -880,63 +884,83 @@ test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] [[package]] name = "coverage" -version = "7.6.0" +version = "7.6.1" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dff044f661f59dace805eedb4a7404c573b6ff0cdba4a524141bc63d7be5c7fd"}, - {file = "coverage-7.6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8659fd33ee9e6ca03950cfdcdf271d645cf681609153f218826dd9805ab585c"}, - {file = "coverage-7.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7792f0ab20df8071d669d929c75c97fecfa6bcab82c10ee4adb91c7a54055463"}, - {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4b3cd1ca7cd73d229487fa5caca9e4bc1f0bca96526b922d61053ea751fe791"}, - {file = "coverage-7.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7e128f85c0b419907d1f38e616c4f1e9f1d1b37a7949f44df9a73d5da5cd53c"}, - {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a94925102c89247530ae1dab7dc02c690942566f22e189cbd53579b0693c0783"}, - {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dcd070b5b585b50e6617e8972f3fbbee786afca71b1936ac06257f7e178f00f6"}, - {file = "coverage-7.6.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d50a252b23b9b4dfeefc1f663c568a221092cbaded20a05a11665d0dbec9b8fb"}, - {file = "coverage-7.6.0-cp310-cp310-win32.whl", hash = "sha256:0e7b27d04131c46e6894f23a4ae186a6a2207209a05df5b6ad4caee6d54a222c"}, - {file = "coverage-7.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:54dece71673b3187c86226c3ca793c5f891f9fc3d8aa183f2e3653da18566169"}, - {file = "coverage-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7b525ab52ce18c57ae232ba6f7010297a87ced82a2383b1afd238849c1ff933"}, - {file = "coverage-7.6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bea27c4269234e06f621f3fac3925f56ff34bc14521484b8f66a580aacc2e7d"}, - {file = "coverage-7.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed8d1d1821ba5fc88d4a4f45387b65de52382fa3ef1f0115a4f7a20cdfab0e94"}, - {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c322ef2bbe15057bc4bf132b525b7e3f7206f071799eb8aa6ad1940bcf5fb1"}, - {file = "coverage-7.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03cafe82c1b32b770a29fd6de923625ccac3185a54a5e66606da26d105f37dac"}, - {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0d1b923fc4a40c5832be4f35a5dab0e5ff89cddf83bb4174499e02ea089daf57"}, - {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4b03741e70fb811d1a9a1d75355cf391f274ed85847f4b78e35459899f57af4d"}, - {file = "coverage-7.6.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a73d18625f6a8a1cbb11eadc1d03929f9510f4131879288e3f7922097a429f63"}, - {file = "coverage-7.6.0-cp311-cp311-win32.whl", hash = "sha256:65fa405b837060db569a61ec368b74688f429b32fa47a8929a7a2f9b47183713"}, - {file = "coverage-7.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:6379688fb4cfa921ae349c76eb1a9ab26b65f32b03d46bb0eed841fd4cb6afb1"}, - {file = "coverage-7.6.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7db0b6ae1f96ae41afe626095149ecd1b212b424626175a6633c2999eaad45b"}, - {file = "coverage-7.6.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bbdf9a72403110a3bdae77948b8011f644571311c2fb35ee15f0f10a8fc082e8"}, - {file = "coverage-7.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc44bf0315268e253bf563f3560e6c004efe38f76db03a1558274a6e04bf5d5"}, - {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:da8549d17489cd52f85a9829d0e1d91059359b3c54a26f28bec2c5d369524807"}, - {file = "coverage-7.6.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0086cd4fc71b7d485ac93ca4239c8f75732c2ae3ba83f6be1c9be59d9e2c6382"}, - {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1fad32ee9b27350687035cb5fdf9145bc9cf0a094a9577d43e909948ebcfa27b"}, - {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:044a0985a4f25b335882b0966625270a8d9db3d3409ddc49a4eb00b0ef5e8cee"}, - {file = "coverage-7.6.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:76d5f82213aa78098b9b964ea89de4617e70e0d43e97900c2778a50856dac605"}, - {file = "coverage-7.6.0-cp312-cp312-win32.whl", hash = "sha256:3c59105f8d58ce500f348c5b56163a4113a440dad6daa2294b5052a10db866da"}, - {file = "coverage-7.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca5d79cfdae420a1d52bf177de4bc2289c321d6c961ae321503b2ca59c17ae67"}, - {file = "coverage-7.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d39bd10f0ae453554798b125d2f39884290c480f56e8a02ba7a6ed552005243b"}, - {file = "coverage-7.6.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:beb08e8508e53a568811016e59f3234d29c2583f6b6e28572f0954a6b4f7e03d"}, - {file = "coverage-7.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2e16f4cd2bc4d88ba30ca2d3bbf2f21f00f382cf4e1ce3b1ddc96c634bc48ca"}, - {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6616d1c9bf1e3faea78711ee42a8b972367d82ceae233ec0ac61cc7fec09fa6b"}, - {file = "coverage-7.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4567d6c334c46046d1c4c20024de2a1c3abc626817ae21ae3da600f5779b44"}, - {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:d17c6a415d68cfe1091d3296ba5749d3d8696e42c37fca5d4860c5bf7b729f03"}, - {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9146579352d7b5f6412735d0f203bbd8d00113a680b66565e205bc605ef81bc6"}, - {file = "coverage-7.6.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:cdab02a0a941af190df8782aafc591ef3ad08824f97850b015c8c6a8b3877b0b"}, - {file = "coverage-7.6.0-cp38-cp38-win32.whl", hash = "sha256:df423f351b162a702c053d5dddc0fc0ef9a9e27ea3f449781ace5f906b664428"}, - {file = "coverage-7.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:f2501d60d7497fd55e391f423f965bbe9e650e9ffc3c627d5f0ac516026000b8"}, - {file = "coverage-7.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7221f9ac9dad9492cecab6f676b3eaf9185141539d5c9689d13fd6b0d7de840c"}, - {file = "coverage-7.6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ddaaa91bfc4477d2871442bbf30a125e8fe6b05da8a0015507bfbf4718228ab2"}, - {file = "coverage-7.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4cbe651f3904e28f3a55d6f371203049034b4ddbce65a54527a3f189ca3b390"}, - {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:831b476d79408ab6ccfadaaf199906c833f02fdb32c9ab907b1d4aa0713cfa3b"}, - {file = "coverage-7.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46c3d091059ad0b9c59d1034de74a7f36dcfa7f6d3bde782c49deb42438f2450"}, - {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4d5fae0a22dc86259dee66f2cc6c1d3e490c4a1214d7daa2a93d07491c5c04b6"}, - {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:07ed352205574aad067482e53dd606926afebcb5590653121063fbf4e2175166"}, - {file = "coverage-7.6.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:49c76cdfa13015c4560702574bad67f0e15ca5a2872c6a125f6327ead2b731dd"}, - {file = "coverage-7.6.0-cp39-cp39-win32.whl", hash = "sha256:482855914928c8175735a2a59c8dc5806cf7d8f032e4820d52e845d1f731dca2"}, - {file = "coverage-7.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:543ef9179bc55edfd895154a51792b01c017c87af0ebaae092720152e19e42ca"}, - {file = "coverage-7.6.0-pp38.pp39.pp310-none-any.whl", hash = "sha256:6fe885135c8a479d3e37a7aae61cbd3a0fb2deccb4dda3c25f92a49189f766d6"}, - {file = "coverage-7.6.0.tar.gz", hash = "sha256:289cc803fa1dc901f84701ac10c9ee873619320f2f9aff38794db4a4a0268d51"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, + {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, + {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, + {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, + {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, + {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, + {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, + {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, + {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, + {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, + {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, + {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, + {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, + {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, + {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, + {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, + {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, ] [package.dependencies] @@ -962,13 +986,13 @@ tests = ["pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "dask" -version = "2024.7.1" +version = "2024.8.0" description = "Parallel PyData with Task Scheduling" optional = false python-versions = ">=3.9" files = [ - {file = "dask-2024.7.1-py3-none-any.whl", hash = "sha256:dd046840050376c317de90629db5c6197adda820176cf3e2df10c3219d11951f"}, - {file = "dask-2024.7.1.tar.gz", hash = "sha256:dbaef2d50efee841a9d981a218cfeb50392fc9a95e0403b6d680450e4f50d531"}, + {file = "dask-2024.8.0-py3-none-any.whl", hash = "sha256:250ea3df30d4a25958290eec4f252850091c6cfaed82d098179c3b25bba18309"}, + {file = "dask-2024.8.0.tar.gz", hash = "sha256:f1fec39373d2f101bc045529ad4e9b30e34e6eb33b7aa0fa7073aec7b1bf9eee"}, ] [package.dependencies] @@ -986,18 +1010,18 @@ array = ["numpy (>=1.21)"] complete = ["dask[array,dataframe,diagnostics,distributed]", "lz4 (>=4.3.2)", "pyarrow (>=7.0)", "pyarrow-hotfix"] dataframe = ["dask-expr (>=1.1,<1.2)", "dask[array]", "pandas (>=2.0)"] diagnostics = ["bokeh (>=2.4.2)", "jinja2 (>=2.10.3)"] -distributed = ["distributed (==2024.7.1)"] +distributed = ["distributed (==2024.8.0)"] test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] [[package]] name = "dataretrieval" -version = "1.0.9" +version = "1.0.10" description = "Discover and retrieve water data from U.S. federal hydrologic web services." optional = false python-versions = ">=3.8" files = [ - {file = "dataretrieval-1.0.9-py3-none-any.whl", hash = "sha256:e21751102a6e5b6677fb917cc56c09e325ef16165779ebb260306575f558373d"}, - {file = "dataretrieval-1.0.9.tar.gz", hash = "sha256:5597d82f33fb2df9e43d555e6106ec8f950e1cd96cda11f2e739bfc91b7191b0"}, + {file = "dataretrieval-1.0.10-py3-none-any.whl", hash = "sha256:cd16d12b3a6bc9134dce0126e3d8184f4ed6c1a04d855a9d481899a85a59b95a"}, + {file = "dataretrieval-1.0.10.tar.gz", hash = "sha256:6d071c94fc829ef1678d4e6304f79c5b4852f4cb3474c3e81862fd42bb3712fb"}, ] [package.dependencies] @@ -1047,13 +1071,33 @@ tests = ["dask-expr", "dask-geopandas", "geodatasets", "geopandas", "nbval", "ne [[package]] name = "debugpy" -version = "1.8.3" +version = "1.8.5" description = "An implementation of the Debug Adapter Protocol for Python" optional = true python-versions = ">=3.8" files = [ - {file = "debugpy-1.8.3-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:0df2c400853150af14996b8d1a4f54d45ffa98e76c0f3de30665e89e273ea293"}, - {file = "debugpy-1.8.3.zip", hash = "sha256:0f5a6326d9fc375b864ed368d06cddf2dabe5135511e71cde3758be699847d36"}, + {file = "debugpy-1.8.5-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7e4d594367d6407a120b76bdaa03886e9eb652c05ba7f87e37418426ad2079f7"}, + {file = "debugpy-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4413b7a3ede757dc33a273a17d685ea2b0c09dbd312cc03f5534a0fd4d40750a"}, + {file = "debugpy-1.8.5-cp310-cp310-win32.whl", hash = "sha256:dd3811bd63632bb25eda6bd73bea8e0521794cda02be41fa3160eb26fc29e7ed"}, + {file = "debugpy-1.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:b78c1250441ce893cb5035dd6f5fc12db968cc07f91cc06996b2087f7cefdd8e"}, + {file = "debugpy-1.8.5-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:606bccba19f7188b6ea9579c8a4f5a5364ecd0bf5a0659c8a5d0e10dcee3032a"}, + {file = "debugpy-1.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db9fb642938a7a609a6c865c32ecd0d795d56c1aaa7a7a5722d77855d5e77f2b"}, + {file = "debugpy-1.8.5-cp311-cp311-win32.whl", hash = "sha256:4fbb3b39ae1aa3e5ad578f37a48a7a303dad9a3d018d369bc9ec629c1cfa7408"}, + {file = "debugpy-1.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:345d6a0206e81eb68b1493ce2fbffd57c3088e2ce4b46592077a943d2b968ca3"}, + {file = "debugpy-1.8.5-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:5b5c770977c8ec6c40c60d6f58cacc7f7fe5a45960363d6974ddb9b62dbee156"}, + {file = "debugpy-1.8.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0a65b00b7cdd2ee0c2cf4c7335fef31e15f1b7056c7fdbce9e90193e1a8c8cb"}, + {file = "debugpy-1.8.5-cp312-cp312-win32.whl", hash = "sha256:c9f7c15ea1da18d2fcc2709e9f3d6de98b69a5b0fff1807fb80bc55f906691f7"}, + {file = "debugpy-1.8.5-cp312-cp312-win_amd64.whl", hash = "sha256:28ced650c974aaf179231668a293ecd5c63c0a671ae6d56b8795ecc5d2f48d3c"}, + {file = "debugpy-1.8.5-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:3df6692351172a42af7558daa5019651f898fc67450bf091335aa8a18fbf6f3a"}, + {file = "debugpy-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd04a73eb2769eb0bfe43f5bfde1215c5923d6924b9b90f94d15f207a402226"}, + {file = "debugpy-1.8.5-cp38-cp38-win32.whl", hash = "sha256:8f913ee8e9fcf9d38a751f56e6de12a297ae7832749d35de26d960f14280750a"}, + {file = "debugpy-1.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:a697beca97dad3780b89a7fb525d5e79f33821a8bc0c06faf1f1289e549743cf"}, + {file = "debugpy-1.8.5-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0a1029a2869d01cb777216af8c53cda0476875ef02a2b6ff8b2f2c9a4b04176c"}, + {file = "debugpy-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84c276489e141ed0b93b0af648eef891546143d6a48f610945416453a8ad406"}, + {file = "debugpy-1.8.5-cp39-cp39-win32.whl", hash = "sha256:ad84b7cde7fd96cf6eea34ff6c4a1b7887e0fe2ea46e099e53234856f9d99a34"}, + {file = "debugpy-1.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:7b0fe36ed9d26cb6836b0a51453653f8f2e347ba7348f2bbfe76bfeb670bfb1c"}, + {file = "debugpy-1.8.5-py2.py3-none-any.whl", hash = "sha256:55919dce65b471eff25901acf82d328bbd5b833526b6c1364bd5133754777a44"}, + {file = "debugpy-1.8.5.zip", hash = "sha256:b2112cfeb34b4507399d298fe7023a16656fc553ed5246536060ca7bd0e668d0"}, ] [[package]] @@ -1096,13 +1140,14 @@ wrapt = ">=1.10,<2" dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] [[package]] -name = "docopt" -version = "0.6.2" -description = "Pythonic argument parser, that will make you smile" +name = "docopt-ng" +version = "0.9.0" +description = "Jazzband-maintained fork of docopt, the humane command line arguments parser." optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "docopt-0.6.2.tar.gz", hash = "sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"}, + {file = "docopt_ng-0.9.0-py3-none-any.whl", hash = "sha256:bfe4c8b03f9fca424c24ee0b4ffa84bf7391cb18c29ce0f6a8227a3b01b81ff9"}, + {file = "docopt_ng-0.9.0.tar.gz", hash = "sha256:91c6da10b5bb6f2e9e25345829fb8278c78af019f6fc40887ad49b060483b1d7"}, ] [[package]] @@ -1466,17 +1511,16 @@ files = [ [[package]] name = "griffe" -version = "0.48.0" +version = "1.1.1" description = "Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API." optional = false python-versions = ">=3.8" files = [ - {file = "griffe-0.48.0-py3-none-any.whl", hash = "sha256:f944c6ff7bd31cf76f264adcd6ab8f3d00a2f972ae5cc8db2d7b6dcffeff65a2"}, - {file = "griffe-0.48.0.tar.gz", hash = "sha256:f099461c02f016b6be4af386d5aa92b01fb4efe6c1c2c360dda9a5d0a863bb7f"}, + {file = "griffe-1.1.1-py3-none-any.whl", hash = "sha256:0c469411e8d671a545725f5c0851a746da8bd99d354a79fdc4abd45219252efb"}, + {file = "griffe-1.1.1.tar.gz", hash = "sha256:faeb78764c0b2bd010719d6e015d07709b0f260258b5d4dd6c88343d9702aa30"}, ] [package.dependencies] -backports-strenum = {version = ">=1.3", markers = "python_version < \"3.11\""} colorama = ">=0.4" [[package]] @@ -1629,13 +1673,13 @@ files = [ [[package]] name = "importlib-metadata" -version = "8.2.0" +version = "8.4.0" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-8.2.0-py3-none-any.whl", hash = "sha256:11901fa0c2f97919b288679932bb64febaeacf289d18ac84dd68cb2e74213369"}, - {file = "importlib_metadata-8.2.0.tar.gz", hash = "sha256:72e8d4399996132204f9a16dcc751af254a48f8d1b20b9ff0f98d4a8f901e73d"}, + {file = "importlib_metadata-8.4.0-py3-none-any.whl", hash = "sha256:66f342cc6ac9818fc6ff340576acd24d65ba0b3efabb2b4ac08b598965a4a2f1"}, + {file = "importlib_metadata-8.4.0.tar.gz", hash = "sha256:9a547d3bc3608b025f93d403fdd1aae741c24fbb8314df4b155675742ce303c5"}, ] [package.dependencies] @@ -1648,21 +1692,25 @@ test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "p [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.4" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, + {file = "importlib_resources-6.4.4-py3-none-any.whl", hash = "sha256:dda242603d1c9cd836c3368b1174ed74cb4049ecd209e7a1a0104620c18c5c11"}, + {file = "importlib_resources-6.4.4.tar.gz", hash = "sha256:20600c8b7361938dc0bb2d5ec0297802e575df486f5a544fa414da65e13721f7"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +type = ["pytest-mypy"] [[package]] name = "iniconfig" @@ -2357,149 +2405,149 @@ files = [ [[package]] name = "lxml" -version = "5.2.2" +version = "5.3.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false python-versions = ">=3.6" files = [ - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632"}, - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526"}, - {file = "lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30"}, - {file = "lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b"}, - {file = "lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438"}, - {file = "lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836"}, - {file = "lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a"}, - {file = "lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48"}, - {file = "lxml-5.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264"}, - {file = "lxml-5.2.2-cp36-cp36m-win32.whl", hash = "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3"}, - {file = "lxml-5.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196"}, - {file = "lxml-5.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61"}, - {file = "lxml-5.2.2-cp37-cp37m-win32.whl", hash = "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f"}, - {file = "lxml-5.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40"}, - {file = "lxml-5.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1"}, - {file = "lxml-5.2.2-cp38-cp38-win32.whl", hash = "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30"}, - {file = "lxml-5.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9"}, - {file = "lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf"}, - {file = "lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324"}, - {file = "lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:dd36439be765e2dde7660212b5275641edbc813e7b24668831a5c8ac91180656"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ae5fe5c4b525aa82b8076c1a59d642c17b6e8739ecf852522c6321852178119d"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:501d0d7e26b4d261fca8132854d845e4988097611ba2531408ec91cf3fd9d20a"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66442c2546446944437df74379e9cf9e9db353e61301d1a0e26482f43f0dd8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e41506fec7a7f9405b14aa2d5c8abbb4dbbd09d88f9496958b6d00cb4d45330"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7d4a670107d75dfe5ad080bed6c341d18c4442f9378c9f58e5851e86eb79965"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41ce1f1e2c7755abfc7e759dc34d7d05fd221723ff822947132dc934d122fe22"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:44264ecae91b30e5633013fb66f6ddd05c006d3e0e884f75ce0b4755b3e3847b"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3c174dc350d3ec52deb77f2faf05c439331d6ed5e702fc247ccb4e6b62d884b7"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:2dfab5fa6a28a0b60a20638dc48e6343c02ea9933e3279ccb132f555a62323d8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c86bf781b12ba417f64f3422cfc302523ac9cd1d8ae8c0f92a1c66e56ef2e86"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c162b216070f280fa7da844531169be0baf9ccb17263cf5a8bf876fcd3117fa5"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:36aef61a1678cb778097b4a6eeae96a69875d51d1e8f4d4b491ab3cfb54b5a03"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f65e5120863c2b266dbcc927b306c5b78e502c71edf3295dfcb9501ec96e5fc7"}, + {file = "lxml-5.3.0-cp310-cp310-win32.whl", hash = "sha256:ef0c1fe22171dd7c7c27147f2e9c3e86f8bdf473fed75f16b0c2e84a5030ce80"}, + {file = "lxml-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:052d99051e77a4f3e8482c65014cf6372e61b0a6f4fe9edb98503bb5364cfee3"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:74bcb423462233bc5d6066e4e98b0264e7c1bed7541fff2f4e34fe6b21563c8b"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a3d819eb6f9b8677f57f9664265d0a10dd6551d227afb4af2b9cd7bdc2ccbf18"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b8f5db71b28b8c404956ddf79575ea77aa8b1538e8b2ef9ec877945b3f46442"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3406b63232fc7e9b8783ab0b765d7c59e7c59ff96759d8ef9632fca27c7ee4"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ecdd78ab768f844c7a1d4a03595038c166b609f6395e25af9b0f3f26ae1230f"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168f2dfcfdedf611eb285efac1516c8454c8c99caf271dccda8943576b67552e"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa617107a410245b8660028a7483b68e7914304a6d4882b5ff3d2d3eb5948d8c"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:69959bd3167b993e6e710b99051265654133a98f20cec1d9b493b931942e9c16"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:bd96517ef76c8654446fc3db9242d019a1bb5fe8b751ba414765d59f99210b79"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:ab6dd83b970dc97c2d10bc71aa925b84788c7c05de30241b9e96f9b6d9ea3080"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eec1bb8cdbba2925bedc887bc0609a80e599c75b12d87ae42ac23fd199445654"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a7095eeec6f89111d03dabfe5883a1fd54da319c94e0fb104ee8f23616b572d"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6f651ebd0b21ec65dfca93aa629610a0dbc13dbc13554f19b0113da2e61a4763"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f422a209d2455c56849442ae42f25dbaaba1c6c3f501d58761c619c7836642ec"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:62f7fdb0d1ed2065451f086519865b4c90aa19aed51081979ecd05a21eb4d1be"}, + {file = "lxml-5.3.0-cp311-cp311-win32.whl", hash = "sha256:c6379f35350b655fd817cd0d6cbeef7f265f3ae5fedb1caae2eb442bbeae9ab9"}, + {file = "lxml-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:9c52100e2c2dbb0649b90467935c4b0de5528833c76a35ea1a2691ec9f1ee7a1"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d"}, + {file = "lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30"}, + {file = "lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b"}, + {file = "lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957"}, + {file = "lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d"}, + {file = "lxml-5.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8f0de2d390af441fe8b2c12626d103540b5d850d585b18fcada58d972b74a74e"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1afe0a8c353746e610bd9031a630a95bcfb1a720684c3f2b36c4710a0a96528f"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56b9861a71575f5795bde89256e7467ece3d339c9b43141dbdd54544566b3b94"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:9fb81d2824dff4f2e297a276297e9031f46d2682cafc484f49de182aa5e5df99"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2c226a06ecb8cdef28845ae976da407917542c5e6e75dcac7cc33eb04aaeb237"}, + {file = "lxml-5.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7d3d1ca42870cdb6d0d29939630dbe48fa511c203724820fc0fd507b2fb46577"}, + {file = "lxml-5.3.0-cp36-cp36m-win32.whl", hash = "sha256:094cb601ba9f55296774c2d57ad68730daa0b13dc260e1f941b4d13678239e70"}, + {file = "lxml-5.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:eafa2c8658f4e560b098fe9fc54539f86528651f61849b22111a9b107d18910c"}, + {file = "lxml-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cb83f8a875b3d9b458cada4f880fa498646874ba4011dc974e071a0a84a1b033"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25f1b69d41656b05885aa185f5fdf822cb01a586d1b32739633679699f220391"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e0553b8055600b3bf4a00b255ec5c92e1e4aebf8c2c09334f8368e8bd174d6"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ada35dd21dc6c039259596b358caab6b13f4db4d4a7f8665764d616daf9cc1d"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:81b4e48da4c69313192d8c8d4311e5d818b8be1afe68ee20f6385d0e96fc9512"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:2bc9fd5ca4729af796f9f59cd8ff160fe06a474da40aca03fcc79655ddee1a8b"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07da23d7ee08577760f0a71d67a861019103e4812c87e2fab26b039054594cc5"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:ea2e2f6f801696ad7de8aec061044d6c8c0dd4037608c7cab38a9a4d316bfb11"}, + {file = "lxml-5.3.0-cp37-cp37m-win32.whl", hash = "sha256:5c54afdcbb0182d06836cc3d1be921e540be3ebdf8b8a51ee3ef987537455f84"}, + {file = "lxml-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f2901429da1e645ce548bf9171784c0f74f0718c3f6150ce166be39e4dd66c3e"}, + {file = "lxml-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c56a1d43b2f9ee4786e4658c7903f05da35b923fb53c11025712562d5cc02753"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee8c39582d2652dcd516d1b879451500f8db3fe3607ce45d7c5957ab2596040"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdf3a3059611f7585a78ee10399a15566356116a4288380921a4b598d807a22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:146173654d79eb1fc97498b4280c1d3e1e5d58c398fa530905c9ea50ea849b22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0a7056921edbdd7560746f4221dca89bb7a3fe457d3d74267995253f46343f15"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:9e4b47ac0f5e749cfc618efdf4726269441014ae1d5583e047b452a32e221920"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f914c03e6a31deb632e2daa881fe198461f4d06e57ac3d0e05bbcab8eae01945"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:213261f168c5e1d9b7535a67e68b1f59f92398dd17a56d934550837143f79c42"}, + {file = "lxml-5.3.0-cp38-cp38-win32.whl", hash = "sha256:218c1b2e17a710e363855594230f44060e2025b05c80d1f0661258142b2add2e"}, + {file = "lxml-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:315f9542011b2c4e1d280e4a20ddcca1761993dda3afc7a73b01235f8641e903"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ffc23010330c2ab67fac02781df60998ca8fe759e8efde6f8b756a20599c5de"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2b3778cb38212f52fac9fe913017deea2fdf4eb1a4f8e4cfc6b009a13a6d3fcc"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0c7a688944891086ba192e21c5229dea54382f4836a209ff8d0a660fac06be"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:747a3d3e98e24597981ca0be0fd922aebd471fa99d0043a3842d00cdcad7ad6a"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86a6b24b19eaebc448dc56b87c4865527855145d851f9fc3891673ff97950540"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b11a5d918a6216e521c715b02749240fb07ae5a1fefd4b7bf12f833bc8b4fe70"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68b87753c784d6acb8a25b05cb526c3406913c9d988d51f80adecc2b0775d6aa"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:109fa6fede314cc50eed29e6e56c540075e63d922455346f11e4d7a036d2b8cf"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:02ced472497b8362c8e902ade23e3300479f4f43e45f4105c85ef43b8db85229"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:6b038cc86b285e4f9fea2ba5ee76e89f21ed1ea898e287dc277a25884f3a7dfe"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:7437237c6a66b7ca341e868cda48be24b8701862757426852c9b3186de1da8a2"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7f41026c1d64043a36fda21d64c5026762d53a77043e73e94b71f0521939cc71"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:482c2f67761868f0108b1743098640fbb2a28a8e15bf3f47ada9fa59d9fe08c3"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1483fd3358963cc5c1c9b122c80606a3a79ee0875bcac0204149fa09d6ff2727"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dec2d1130a9cda5b904696cec33b2cfb451304ba9081eeda7f90f724097300a"}, + {file = "lxml-5.3.0-cp39-cp39-win32.whl", hash = "sha256:a0eabd0a81625049c5df745209dc7fcef6e2aea7793e5f003ba363610aa0a3ff"}, + {file = "lxml-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:89e043f1d9d341c52bf2af6d02e6adde62e0a46e6755d5eb60dc6e4f0b8aeca2"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7b1cd427cb0d5f7393c31b7496419da594fe600e6fdc4b105a54f82405e6626c"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51806cfe0279e06ed8500ce19479d757db42a30fd509940b1701be9c86a5ff9a"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee70d08fd60c9565ba8190f41a46a54096afa0eeb8f76bd66f2c25d3b1b83005"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:8dc2c0395bea8254d8daebc76dcf8eb3a95ec2a46fa6fae5eaccee366bfe02ce"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6ba0d3dcac281aad8a0e5b14c7ed6f9fa89c8612b47939fc94f80b16e2e9bc83"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:6e91cf736959057f7aac7adfc83481e03615a8e8dd5758aa1d95ea69e8931dba"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:94d6c3782907b5e40e21cadf94b13b0842ac421192f26b84c45f13f3c9d5dc27"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c300306673aa0f3ed5ed9372b21867690a17dba38c68c44b287437c362ce486b"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d9b952e07aed35fe2e1a7ad26e929595412db48535921c5013edc8aa4a35ce"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:01220dca0d066d1349bd6a1726856a78f7929f3878f7e2ee83c296c69495309e"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2d9b8d9177afaef80c53c0a9e30fa252ff3036fb1c6494d427c066a4ce6a282f"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:20094fc3f21ea0a8669dc4c61ed7fa8263bd37d97d93b90f28fc613371e7a875"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ace2c2326a319a0bb8a8b0e5b570c764962e95818de9f259ce814ee666603f19"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92e67a0be1639c251d21e35fe74df6bcc40cba445c2cda7c4a967656733249e2"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5350b55f9fecddc51385463a4f67a5da829bc741e38cf689f38ec9023f54ab"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c1fefd7e3d00921c44dc9ca80a775af49698bbfd92ea84498e56acffd4c5469"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:71a8dd38fbd2f2319136d4ae855a7078c69c9a38ae06e0c17c73fd70fc6caad8"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:97acf1e1fd66ab53dacd2c35b319d7e548380c2e9e8c54525c6e76d21b1ae3b1"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:68934b242c51eb02907c5b81d138cb977b2129a0a75a8f8b60b01cb8586c7b21"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bc2b8292966b23a6a0121f7a6c51d45d2347edcc75f016ac123b8054d3f2"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18feb4b93302091b1541221196a2155aa296c363fd233814fa11e181adebc52f"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3eb44520c4724c2e1a57c0af33a379eee41792595023f367ba3952a2d96c2aab"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:609251a0ca4770e5a8768ff902aa02bf636339c5a93f9349b48eb1f606f7f3e9"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:516f491c834eb320d6c843156440fe7fc0d50b33e44387fcec5b02f0bc118a4c"}, + {file = "lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f"}, ] [package.dependencies] @@ -2510,7 +2558,7 @@ cssselect = ["cssselect (>=0.7)"] html-clean = ["lxml-html-clean"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=3.0.10)"] +source = ["Cython (>=3.0.11)"] [[package]] name = "lxml-html-clean" @@ -2528,13 +2576,13 @@ lxml = "*" [[package]] name = "markdown" -version = "3.6" +version = "3.7" description = "Python implementation of John Gruber's Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f"}, - {file = "Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224"}, + {file = "Markdown-3.7-py3-none-any.whl", hash = "sha256:7eb6df5690b81a1d7942992c97fad2938e956e79df20cbc6186e9c3a77b1c803"}, + {file = "markdown-3.7.tar.gz", hash = "sha256:2ae2471477cfd02dbbf038d5d9bc226d40def84b4fe2986e49b59b6b472bbed2"}, ] [package.dependencies] @@ -2639,40 +2687,51 @@ files = [ [[package]] name = "matplotlib" -version = "3.9.1" +version = "3.9.2" description = "Python plotting package" optional = false python-versions = ">=3.9" files = [ - {file = "matplotlib-3.9.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:7ccd6270066feb9a9d8e0705aa027f1ff39f354c72a87efe8fa07632f30fc6bb"}, - {file = "matplotlib-3.9.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:591d3a88903a30a6d23b040c1e44d1afdd0d778758d07110eb7596f811f31842"}, - {file = "matplotlib-3.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd2a59ff4b83d33bca3b5ec58203cc65985367812cb8c257f3e101632be86d92"}, - {file = "matplotlib-3.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fc001516ffcf1a221beb51198b194d9230199d6842c540108e4ce109ac05cc0"}, - {file = "matplotlib-3.9.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:83c6a792f1465d174c86d06f3ae85a8fe36e6f5964633ae8106312ec0921fdf5"}, - {file = "matplotlib-3.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:421851f4f57350bcf0811edd754a708d2275533e84f52f6760b740766c6747a7"}, - {file = "matplotlib-3.9.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:b3fce58971b465e01b5c538f9d44915640c20ec5ff31346e963c9e1cd66fa812"}, - {file = "matplotlib-3.9.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a973c53ad0668c53e0ed76b27d2eeeae8799836fd0d0caaa4ecc66bf4e6676c0"}, - {file = "matplotlib-3.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82cd5acf8f3ef43f7532c2f230249720f5dc5dd40ecafaf1c60ac8200d46d7eb"}, - {file = "matplotlib-3.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab38a4f3772523179b2f772103d8030215b318fef6360cb40558f585bf3d017f"}, - {file = "matplotlib-3.9.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2315837485ca6188a4b632c5199900e28d33b481eb083663f6a44cfc8987ded3"}, - {file = "matplotlib-3.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:a0c977c5c382f6696caf0bd277ef4f936da7e2aa202ff66cad5f0ac1428ee15b"}, - {file = "matplotlib-3.9.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:565d572efea2b94f264dd86ef27919515aa6d629252a169b42ce5f570db7f37b"}, - {file = "matplotlib-3.9.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d397fd8ccc64af2ec0af1f0efc3bacd745ebfb9d507f3f552e8adb689ed730a"}, - {file = "matplotlib-3.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26040c8f5121cd1ad712abffcd4b5222a8aec3a0fe40bc8542c94331deb8780d"}, - {file = "matplotlib-3.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d12cb1837cffaac087ad6b44399d5e22b78c729de3cdae4629e252067b705e2b"}, - {file = "matplotlib-3.9.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0e835c6988edc3d2d08794f73c323cc62483e13df0194719ecb0723b564e0b5c"}, - {file = "matplotlib-3.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:44a21d922f78ce40435cb35b43dd7d573cf2a30138d5c4b709d19f00e3907fd7"}, - {file = "matplotlib-3.9.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:0c584210c755ae921283d21d01f03a49ef46d1afa184134dd0f95b0202ee6f03"}, - {file = "matplotlib-3.9.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:11fed08f34fa682c2b792942f8902e7aefeed400da71f9e5816bea40a7ce28fe"}, - {file = "matplotlib-3.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0000354e32efcfd86bda75729716b92f5c2edd5b947200be9881f0a671565c33"}, - {file = "matplotlib-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4db17fea0ae3aceb8e9ac69c7e3051bae0b3d083bfec932240f9bf5d0197a049"}, - {file = "matplotlib-3.9.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:208cbce658b72bf6a8e675058fbbf59f67814057ae78165d8a2f87c45b48d0ff"}, - {file = "matplotlib-3.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:dc23f48ab630474264276be156d0d7710ac6c5a09648ccdf49fef9200d8cbe80"}, - {file = "matplotlib-3.9.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3fda72d4d472e2ccd1be0e9ccb6bf0d2eaf635e7f8f51d737ed7e465ac020cb3"}, - {file = "matplotlib-3.9.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:84b3ba8429935a444f1fdc80ed930babbe06725bcf09fbeb5c8757a2cd74af04"}, - {file = "matplotlib-3.9.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b918770bf3e07845408716e5bbda17eadfc3fcbd9307dc67f37d6cf834bb3d98"}, - {file = "matplotlib-3.9.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:f1f2e5d29e9435c97ad4c36fb6668e89aee13d48c75893e25cef064675038ac9"}, - {file = "matplotlib-3.9.1.tar.gz", hash = "sha256:de06b19b8db95dd33d0dc17c926c7c9ebed9f572074b6fac4f65068a6814d010"}, + {file = "matplotlib-3.9.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:9d78bbc0cbc891ad55b4f39a48c22182e9bdaea7fc0e5dbd364f49f729ca1bbb"}, + {file = "matplotlib-3.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c375cc72229614632c87355366bdf2570c2dac01ac66b8ad048d2dabadf2d0d4"}, + {file = "matplotlib-3.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d94ff717eb2bd0b58fe66380bd8b14ac35f48a98e7c6765117fe67fb7684e64"}, + {file = "matplotlib-3.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab68d50c06938ef28681073327795c5db99bb4666214d2d5f880ed11aeaded66"}, + {file = "matplotlib-3.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:65aacf95b62272d568044531e41de26285d54aec8cb859031f511f84bd8b495a"}, + {file = "matplotlib-3.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:3fd595f34aa8a55b7fc8bf9ebea8aa665a84c82d275190a61118d33fbc82ccae"}, + {file = "matplotlib-3.9.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d8dd059447824eec055e829258ab092b56bb0579fc3164fa09c64f3acd478772"}, + {file = "matplotlib-3.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c797dac8bb9c7a3fd3382b16fe8f215b4cf0f22adccea36f1545a6d7be310b41"}, + {file = "matplotlib-3.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d719465db13267bcef19ea8954a971db03b9f48b4647e3860e4bc8e6ed86610f"}, + {file = "matplotlib-3.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8912ef7c2362f7193b5819d17dae8629b34a95c58603d781329712ada83f9447"}, + {file = "matplotlib-3.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7741f26a58a240f43bee74965c4882b6c93df3e7eb3de160126d8c8f53a6ae6e"}, + {file = "matplotlib-3.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:ae82a14dab96fbfad7965403c643cafe6515e386de723e498cf3eeb1e0b70cc7"}, + {file = "matplotlib-3.9.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ac43031375a65c3196bee99f6001e7fa5bdfb00ddf43379d3c0609bdca042df9"}, + {file = "matplotlib-3.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be0fc24a5e4531ae4d8e858a1a548c1fe33b176bb13eff7f9d0d38ce5112a27d"}, + {file = "matplotlib-3.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf81de2926c2db243c9b2cbc3917619a0fc85796c6ba4e58f541df814bbf83c7"}, + {file = "matplotlib-3.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6ee45bc4245533111ced13f1f2cace1e7f89d1c793390392a80c139d6cf0e6c"}, + {file = "matplotlib-3.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:306c8dfc73239f0e72ac50e5a9cf19cc4e8e331dd0c54f5e69ca8758550f1e1e"}, + {file = "matplotlib-3.9.2-cp312-cp312-win_amd64.whl", hash = "sha256:5413401594cfaff0052f9d8b1aafc6d305b4bd7c4331dccd18f561ff7e1d3bd3"}, + {file = "matplotlib-3.9.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:18128cc08f0d3cfff10b76baa2f296fc28c4607368a8402de61bb3f2eb33c7d9"}, + {file = "matplotlib-3.9.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4876d7d40219e8ae8bb70f9263bcbe5714415acfdf781086601211335e24f8aa"}, + {file = "matplotlib-3.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d9f07a80deab4bb0b82858a9e9ad53d1382fd122be8cde11080f4e7dfedb38b"}, + {file = "matplotlib-3.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7c0410f181a531ec4e93bbc27692f2c71a15c2da16766f5ba9761e7ae518413"}, + {file = "matplotlib-3.9.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:909645cce2dc28b735674ce0931a4ac94e12f5b13f6bb0b5a5e65e7cea2c192b"}, + {file = "matplotlib-3.9.2-cp313-cp313-win_amd64.whl", hash = "sha256:f32c7410c7f246838a77d6d1eff0c0f87f3cb0e7c4247aebea71a6d5a68cab49"}, + {file = "matplotlib-3.9.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:37e51dd1c2db16ede9cfd7b5cabdfc818b2c6397c83f8b10e0e797501c963a03"}, + {file = "matplotlib-3.9.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b82c5045cebcecd8496a4d694d43f9cc84aeeb49fe2133e036b207abe73f4d30"}, + {file = "matplotlib-3.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f053c40f94bc51bc03832a41b4f153d83f2062d88c72b5e79997072594e97e51"}, + {file = "matplotlib-3.9.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbe196377a8248972f5cede786d4c5508ed5f5ca4a1e09b44bda889958b33f8c"}, + {file = "matplotlib-3.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5816b1e1fe8c192cbc013f8f3e3368ac56fbecf02fb41b8f8559303f24c5015e"}, + {file = "matplotlib-3.9.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:cef2a73d06601437be399908cf13aee74e86932a5ccc6ccdf173408ebc5f6bb2"}, + {file = "matplotlib-3.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e0830e188029c14e891fadd99702fd90d317df294c3298aad682739c5533721a"}, + {file = "matplotlib-3.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ba9c1299c920964e8d3857ba27173b4dbb51ca4bab47ffc2c2ba0eb5e2cbc5"}, + {file = "matplotlib-3.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd93b91ab47a3616b4d3c42b52f8363b88ca021e340804c6ab2536344fad9ca"}, + {file = "matplotlib-3.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6d1ce5ed2aefcdce11904fc5bbea7d9c21fff3d5f543841edf3dea84451a09ea"}, + {file = "matplotlib-3.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:b2696efdc08648536efd4e1601b5fd491fd47f4db97a5fbfd175549a7365c1b2"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:d52a3b618cb1cbb769ce2ee1dcdb333c3ab6e823944e9a2d36e37253815f9556"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:039082812cacd6c6bec8e17a9c1e6baca230d4116d522e81e1f63a74d01d2e21"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6758baae2ed64f2331d4fd19be38b7b4eae3ecec210049a26b6a4f3ae1c85dcc"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:050598c2b29e0b9832cde72bcf97627bf00262adbc4a54e2b856426bb2ef0697"}, + {file = "matplotlib-3.9.2.tar.gz", hash = "sha256:96ab43906269ca64a6366934106fa01534454a69e471b7bf3d79083981aaab92"}, ] [package.dependencies] @@ -2813,13 +2872,13 @@ min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-imp [[package]] name = "mkdocs-autorefs" -version = "1.0.1" +version = "1.1.0" description = "Automatically link across pages in MkDocs." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_autorefs-1.0.1-py3-none-any.whl", hash = "sha256:aacdfae1ab197780fb7a2dac92ad8a3d8f7ca8049a9cbe56a4218cd52e8da570"}, - {file = "mkdocs_autorefs-1.0.1.tar.gz", hash = "sha256:f684edf847eced40b570b57846b15f0bf57fb93ac2c510450775dcf16accb971"}, + {file = "mkdocs_autorefs-1.1.0-py3-none-any.whl", hash = "sha256:492ac42f50214e81565e968f8cb0df9aba9d981542b9e7121b8f8ae9407fe6eb"}, + {file = "mkdocs_autorefs-1.1.0.tar.gz", hash = "sha256:f2fd43b11f66284bd014f9b542a05c8ecbfaad4e0d7b30b68584788217b6c656"}, ] [package.dependencies] @@ -2846,13 +2905,13 @@ pyyaml = ">=5.1" [[package]] name = "mkdocs-material" -version = "9.5.31" +version = "9.5.32" description = "Documentation that simply works" optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_material-9.5.31-py3-none-any.whl", hash = "sha256:1b1f49066fdb3824c1e96d6bacd2d4375de4ac74580b47e79ff44c4d835c5fcb"}, - {file = "mkdocs_material-9.5.31.tar.gz", hash = "sha256:31833ec664772669f5856f4f276bf3fdf0e642a445e64491eda459249c3a1ca8"}, + {file = "mkdocs_material-9.5.32-py3-none-any.whl", hash = "sha256:f3704f46b63d31b3cd35c0055a72280bed825786eccaf19c655b44e0cd2c6b3f"}, + {file = "mkdocs_material-9.5.32.tar.gz", hash = "sha256:38ed66e6d6768dde4edde022554553e48b2db0d26d1320b19e2e2b9da0be1120"}, ] [package.dependencies] @@ -2914,17 +2973,17 @@ python-legacy = ["mkdocstrings-python-legacy (>=0.2.1)"] [[package]] name = "mkdocstrings-python" -version = "1.10.7" +version = "1.10.8" description = "A Python handler for mkdocstrings." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocstrings_python-1.10.7-py3-none-any.whl", hash = "sha256:8999acb8e2cb6ae5edb844ce1ed6a5fcc14285f85cfd9df374d9a0f0be8a40b6"}, - {file = "mkdocstrings_python-1.10.7.tar.gz", hash = "sha256:bfb5e29acfc69c9177d2b11c18d3127d16e553b8da9bb6d184e428d54795600b"}, + {file = "mkdocstrings_python-1.10.8-py3-none-any.whl", hash = "sha256:bb12e76c8b071686617f824029cb1dfe0e9afe89f27fb3ad9a27f95f054dcd89"}, + {file = "mkdocstrings_python-1.10.8.tar.gz", hash = "sha256:5856a59cbebbb8deb133224a540de1ff60bded25e54d8beacc375bb133d39016"}, ] [package.dependencies] -griffe = ">=0.48" +griffe = ">=0.49" mkdocstrings = ">=0.25" [[package]] @@ -3043,36 +3102,36 @@ files = [ [[package]] name = "netcdf4" -version = "1.7.1.post1" +version = "1.7.1.post2" description = "Provides an object-oriented python interface to the netCDF version 4 library" optional = false python-versions = ">=3.8" files = [ - {file = "netCDF4-1.7.1.post1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:5abdc8ab27bcb11325547841311717a0ba8f5b73a5fc5e93b933bc23285d0c03"}, - {file = "netCDF4-1.7.1.post1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:33f5d66ee9cedf43d3932d0e5447eb471f9c53332f93476133b4bfc6b682f790"}, - {file = "netCDF4-1.7.1.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d649fad9d1f63e25a191576c7de158c8c3afa8d4b4001e8683e20da90b49b939"}, - {file = "netCDF4-1.7.1.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:860222bc57bbc714e55705f263162be2c935129dcb700a944bda61aee785ff03"}, - {file = "netCDF4-1.7.1.post1-cp310-cp310-win_amd64.whl", hash = "sha256:d5420155ca6c768c070922d80acd9f4088a913afd25a9fd2f429e7af626374eb"}, - {file = "netCDF4-1.7.1.post1-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:a8d3209516aa8c58d70863ab1059af4ec82ef8ecb1c6b8cb4842d7825a6f64da"}, - {file = "netCDF4-1.7.1.post1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7a10da9b60d3358876d53a0cd691d2c900c2b39903bf25ad5235fd321d59eb2f"}, - {file = "netCDF4-1.7.1.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac99e03d6e28419b206444fd6dc80a5e21d0ae8e53ff37d756fbc16c5d3775"}, - {file = "netCDF4-1.7.1.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e15f3afa4e6910fc158a318ea73fdc6f9e41058c71bf98a99fd63994334d16b0"}, - {file = "netCDF4-1.7.1.post1-cp311-cp311-win_amd64.whl", hash = "sha256:115160fc8e09333754542c33d721d42625a7bd62381a74f2f759297e3e38810b"}, - {file = "netCDF4-1.7.1.post1-cp312-cp312-macosx_11_0_x86_64.whl", hash = "sha256:75bba24ef0354fb6913bc3acdcb3790534e86bf329bbeaaf54122b18e5fd05ea"}, - {file = "netCDF4-1.7.1.post1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:ce7f89b98dbb3acd9582db30e6478ce7a7003b2cb70dc20d85fe9506e65ab001"}, - {file = "netCDF4-1.7.1.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac4e30a0d5a8e227d6a890502cfa201388acf606c0c73a5a7594232f3a74e67e"}, - {file = "netCDF4-1.7.1.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:988c45f9122337a12267fb158953c0609e3ea50a557335a3105f104416a4821a"}, - {file = "netCDF4-1.7.1.post1-cp312-cp312-win_amd64.whl", hash = "sha256:8fb3ed3541fa1b5b46e9d92d7e803734a1a3f37d8f5adf5fdf7957c7750cb20e"}, - {file = "netCDF4-1.7.1.post1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:a4d05cc4c3628a7b88d623cb1a02908100a4938335a0289fa79c19016c21d7f9"}, - {file = "netCDF4-1.7.1.post1-cp38-cp38-macosx_14_0_arm64.whl", hash = "sha256:3a9ba8dc93f3d9019db921e42d40fa6791e7e244f3bb3a874bf2bfb96aea7380"}, - {file = "netCDF4-1.7.1.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fbbca82a822ba74b605254f7a267d258f13d67f8a4156a09e26322bfa002a82d"}, - {file = "netCDF4-1.7.1.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a09da245f4784421fb4d5740dae0367cdbb270d0a931a33474ec17a9433314d"}, - {file = "netCDF4-1.7.1.post1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:fdcec3a3150f9248e76301ad723f51955efc770edf015dfb61a6480cc7c04a70"}, - {file = "netCDF4-1.7.1.post1-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:0fed0eb65a7751a99a0cee08c6df383737d46d17c73cabae81d113f1b4fa3643"}, - {file = "netCDF4-1.7.1.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:daa6169fe6617a4612cb75a8ef61ee14011a012633ad1ace1b629a1ff87bf5cf"}, - {file = "netCDF4-1.7.1.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcad21e965978cc5530131bd7e73dcabe7dda1f681f9e4ebf940a65a176d25fe"}, - {file = "netCDF4-1.7.1.post1-cp39-cp39-win_amd64.whl", hash = "sha256:f24027ae19b68cc1274aad8b00d6d81879d506ddca011a080dff2117014398b9"}, - {file = "netcdf4-1.7.1.post1.tar.gz", hash = "sha256:797f0b25d87827fc6821e415d9e15a2068604b18c3be62563e72682bcba76548"}, + {file = "netCDF4-1.7.1.post2-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:a1006ae117a754e3cf41a9e704032bf3837cbf53a695cd71deaad3e02e93d570"}, + {file = "netCDF4-1.7.1.post2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:7530d60cf6450d997ea0607f8b68b9b088f2382c42648cddf5e66e6f1280b692"}, + {file = "netCDF4-1.7.1.post2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:756a54cb212c9fc5d0ea74f7c661621821138ab8f63e818317330330cfd6165c"}, + {file = "netCDF4-1.7.1.post2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:156428fc63e2280e8bcab7f49531cde19fbba192c2ffdfb352c6a3f5e813a80b"}, + {file = "netCDF4-1.7.1.post2-cp310-cp310-win_amd64.whl", hash = "sha256:79d890ade8b8646bb2833c2b9565392cdf5e97e016cf0319693d13bd8c2dd511"}, + {file = "netCDF4-1.7.1.post2-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:b2700bd0a188637b740aa6ad09dbf9d21337fb1e0336f9859c2c6e9525404cc0"}, + {file = "netCDF4-1.7.1.post2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:914e210f76c4ce016aed32ba7dfad57e6316a38502bdcbd071fc74ee8fec73ec"}, + {file = "netCDF4-1.7.1.post2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a98731d88889e41e9a92d67cad8ac9d9c4acba612a999db803bd082384462dea"}, + {file = "netCDF4-1.7.1.post2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6369ed38ffd094fce44e066d0823b6420205d5825a715fe048146052b299754c"}, + {file = "netCDF4-1.7.1.post2-cp311-cp311-win_amd64.whl", hash = "sha256:9fe939ad543371b5ea46864ba6ac88532b2189ce139804b3187c241eb89a02a6"}, + {file = "netCDF4-1.7.1.post2-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:658f38ceb74bb127e293a47fa36f949babba0c872cf3091e2fdafa73caacc7e4"}, + {file = "netCDF4-1.7.1.post2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:5f396f150f97831229e47f449fe6acbca8ff9d08b2166560c46790aa6f11b56b"}, + {file = "netCDF4-1.7.1.post2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d5216369a0a4a868dadb5c4137d854810a309b9f9ef1d16786269fbeb244101"}, + {file = "netCDF4-1.7.1.post2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12f8ab560320e879763b7837d6f8f5eb285195271f47fc5c18362e5b097ee67c"}, + {file = "netCDF4-1.7.1.post2-cp312-cp312-win_amd64.whl", hash = "sha256:2cbca7dcd92075aebe7c242e16f51f20bc5073b6f0f1449394dadc3c17e44b29"}, + {file = "netCDF4-1.7.1.post2-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:13dc0d3fa4d46e531f32fa0bb4068bdac35513114b9548ea49f92e85d9702afb"}, + {file = "netCDF4-1.7.1.post2-cp38-cp38-macosx_14_0_arm64.whl", hash = "sha256:f040aecec09a44388e1469725d471e8f1d491d4b70b27c8b2d45fd47db4e8abc"}, + {file = "netCDF4-1.7.1.post2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0691d20fcc2d41cd0a15ef335a4f038ccaf07c013c4c79ad3e39993cac3c9bbb"}, + {file = "netCDF4-1.7.1.post2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa22721d9860181c03506c6d718b3a9daf8d07dcb35a466b376760f8eddfffe5"}, + {file = "netCDF4-1.7.1.post2-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:d92bd60dc2b4beba293d81912f3094b2854e9f492ce5e9b4a3ad4fbd725a29e8"}, + {file = "netCDF4-1.7.1.post2-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:d8c015cd8c8582b351d715aed4c17da2e68493edaa59e91f6cf12756479fbd53"}, + {file = "netCDF4-1.7.1.post2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bc8ca705e39ac9f4d3950c908867d377f789e5bcc6f94e0a2bdadc4c4612f94"}, + {file = "netCDF4-1.7.1.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98fef5b27a2325a50ec59793c96e5b1e9945061a390c1ea33d403ed91b7a2fb4"}, + {file = "netCDF4-1.7.1.post2-cp39-cp39-win_amd64.whl", hash = "sha256:294b24234fb71ee30640a451ed1428da3569f23383d35f905558093795f3609a"}, + {file = "netcdf4-1.7.1.post2.tar.gz", hash = "sha256:37d557e36654889d7020192bfb56f9d5f93894cb32997eb837ae586c538fd7b6"}, ] [package.dependencies] @@ -3192,47 +3251,56 @@ zfpy = ["zfpy (>=1.0.0)"] [[package]] name = "numpy" -version = "1.26.4" +version = "2.0.1" description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.9" files = [ - {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, - {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, - {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, - {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, - {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, - {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, - {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, - {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, - {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, - {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, - {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, - {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, - {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, - {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, - {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, - {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, - {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, - {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, - {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, - {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, - {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, - {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, - {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0fbb536eac80e27a2793ffd787895242b7f18ef792563d742c2d673bfcb75134"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:69ff563d43c69b1baba77af455dd0a839df8d25e8590e79c90fcbe1499ebde42"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:1b902ce0e0a5bb7704556a217c4f63a7974f8f43e090aff03fcf262e0b135e02"}, + {file = "numpy-2.0.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:f1659887361a7151f89e79b276ed8dff3d75877df906328f14d8bb40bb4f5101"}, + {file = "numpy-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4658c398d65d1b25e1760de3157011a80375da861709abd7cef3bad65d6543f9"}, + {file = "numpy-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4127d4303b9ac9f94ca0441138acead39928938660ca58329fe156f84b9f3015"}, + {file = "numpy-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e5eeca8067ad04bc8a2a8731183d51d7cbaac66d86085d5f4766ee6bf19c7f87"}, + {file = "numpy-2.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9adbd9bb520c866e1bfd7e10e1880a1f7749f1f6e5017686a5fbb9b72cf69f82"}, + {file = "numpy-2.0.1-cp310-cp310-win32.whl", hash = "sha256:7b9853803278db3bdcc6cd5beca37815b133e9e77ff3d4733c247414e78eb8d1"}, + {file = "numpy-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:81b0893a39bc5b865b8bf89e9ad7807e16717f19868e9d234bdaf9b1f1393868"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:75b4e316c5902d8163ef9d423b1c3f2f6252226d1aa5cd8a0a03a7d01ffc6268"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6e4eeb6eb2fced786e32e6d8df9e755ce5be920d17f7ce00bc38fcde8ccdbf9e"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a1e01dcaab205fbece13c1410253a9eea1b1c9b61d237b6fa59bcc46e8e89343"}, + {file = "numpy-2.0.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a8fc2de81ad835d999113ddf87d1ea2b0f4704cbd947c948d2f5513deafe5a7b"}, + {file = "numpy-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a3d94942c331dd4e0e1147f7a8699a4aa47dffc11bf8a1523c12af8b2e91bbe"}, + {file = "numpy-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15eb4eca47d36ec3f78cde0a3a2ee24cf05ca7396ef808dda2c0ddad7c2bde67"}, + {file = "numpy-2.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b83e16a5511d1b1f8a88cbabb1a6f6a499f82c062a4251892d9ad5d609863fb7"}, + {file = "numpy-2.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f87fec1f9bc1efd23f4227becff04bd0e979e23ca50cc92ec88b38489db3b55"}, + {file = "numpy-2.0.1-cp311-cp311-win32.whl", hash = "sha256:36d3a9405fd7c511804dc56fc32974fa5533bdeb3cd1604d6b8ff1d292b819c4"}, + {file = "numpy-2.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:08458fbf403bff5e2b45f08eda195d4b0c9b35682311da5a5a0a0925b11b9bd8"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6bf4e6f4a2a2e26655717a1983ef6324f2664d7011f6ef7482e8c0b3d51e82ac"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7d6fddc5fe258d3328cd8e3d7d3e02234c5d70e01ebe377a6ab92adb14039cb4"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:5daab361be6ddeb299a918a7c0864fa8618af66019138263247af405018b04e1"}, + {file = "numpy-2.0.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:ea2326a4dca88e4a274ba3a4405eb6c6467d3ffbd8c7d38632502eaae3820587"}, + {file = "numpy-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:529af13c5f4b7a932fb0e1911d3a75da204eff023ee5e0e79c1751564221a5c8"}, + {file = "numpy-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6790654cb13eab303d8402354fabd47472b24635700f631f041bd0b65e37298a"}, + {file = "numpy-2.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbab9fc9c391700e3e1287666dfd82d8666d10e69a6c4a09ab97574c0b7ee0a7"}, + {file = "numpy-2.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:99d0d92a5e3613c33a5f01db206a33f8fdf3d71f2912b0de1739894668b7a93b"}, + {file = "numpy-2.0.1-cp312-cp312-win32.whl", hash = "sha256:173a00b9995f73b79eb0191129f2455f1e34c203f559dd118636858cc452a1bf"}, + {file = "numpy-2.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:bb2124fdc6e62baae159ebcfa368708867eb56806804d005860b6007388df171"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bfc085b28d62ff4009364e7ca34b80a9a080cbd97c2c0630bb5f7f770dae9414"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8fae4ebbf95a179c1156fab0b142b74e4ba4204c87bde8d3d8b6f9c34c5825ef"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:72dc22e9ec8f6eaa206deb1b1355eb2e253899d7347f5e2fae5f0af613741d06"}, + {file = "numpy-2.0.1-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:ec87f5f8aca726117a1c9b7083e7656a9d0d606eec7299cc067bb83d26f16e0c"}, + {file = "numpy-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f682ea61a88479d9498bf2091fdcd722b090724b08b31d63e022adc063bad59"}, + {file = "numpy-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8efc84f01c1cd7e34b3fb310183e72fcdf55293ee736d679b6d35b35d80bba26"}, + {file = "numpy-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3fdabe3e2a52bc4eff8dc7a5044342f8bd9f11ef0934fcd3289a788c0eb10018"}, + {file = "numpy-2.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:24a0e1befbfa14615b49ba9659d3d8818a0f4d8a1c5822af8696706fbda7310c"}, + {file = "numpy-2.0.1-cp39-cp39-win32.whl", hash = "sha256:f9cf5ea551aec449206954b075db819f52adc1638d46a6738253a712d553c7b4"}, + {file = "numpy-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:e9e81fa9017eaa416c056e5d9e71be93d05e2c3c2ab308d23307a8bc4443c368"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:61728fba1e464f789b11deb78a57805c70b2ed02343560456190d0501ba37b0f"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:12f5d865d60fb9734e60a60f1d5afa6d962d8d4467c120a1c0cda6eb2964437d"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eacf3291e263d5a67d8c1a581a8ebbcfd6447204ef58828caf69a5e3e8c75990"}, + {file = "numpy-2.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2c3a346ae20cfd80b6cfd3e60dc179963ef2ea58da5ec074fd3d9e7a1e7ba97f"}, + {file = "numpy-2.0.1.tar.gz", hash = "sha256:485b87235796410c3519a699cfe1faab097e509e90ebb05dcd098db2ae87e7b3"}, ] [[package]] @@ -3689,7 +3757,7 @@ tests = ["pytest"] name = "pyarrow" version = "17.0.0" description = "Python library for Apache Arrow" -optional = true +optional = false python-versions = ">=3.8" files = [ {file = "pyarrow-17.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:a5c8b238d47e48812ee577ee20c9a2779e6a5904f1708ae240f53ecbee7c9f07"}, @@ -3892,33 +3960,34 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pydap" -version = "3.4.1" -description = "An implementation of the Data Access Protocol." +version = "3.5" +description = "A pure python implementation of the Data Access Protocol." optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "pydap-3.4.1-py3-none-any.whl", hash = "sha256:a24cc3bc8c78089542699382bf650d57a055c82bb72c342fa7caa6618b9e4417"}, - {file = "pydap-3.4.1.tar.gz", hash = "sha256:17c46087b53c6aec9bc5495a5d52aca19b2aa4b045f370b9f4b3a6058f5d8df7"}, + {file = "pydap-3.5-py3-none-any.whl", hash = "sha256:e157aefdbc26657ef531ecea73907bbf09a503499bfefada2f0ad5f3aaff4021"}, + {file = "pydap-3.5.tar.gz", hash = "sha256:0ee6cb7a4892ef22a15c4e2aa58b2656104c542c74faf16c580c56fdf97647ab"}, ] [package.dependencies] beautifulsoup4 = "*" -docopt = "*" +docopt-ng = "*" +importlib-metadata = "*" +importlib-resources = "*" Jinja2 = "*" +lxml = "*" numpy = "*" requests = "*" -six = ">=1.4.0" Webob = "*" [package.extras] cas = ["lxml"] -docs = ["Pygments", "Sphinx", "sphinx-rtd-theme"] +docs = ["Pygments", "Sphinx", "nbsphinx", "numpydoc", "pandoc", "sphinx-rtd-theme"] functions = ["coards", "gsw (==3.0.6)"] -handlers-netcdf = ["netCDF4", "ordereddict"] -netcdf = ["netCDF4", "ordereddict"] +handlers-netcdf = ["netCDF4"] +netcdf = ["netCDF4"] server = ["PasteDeploy", "gunicorn"] -testing = ["PasteDeploy", "WebTest", "beautifulsoup4", "coards", "flake8", "gsw (==3.0.6)", "gunicorn", "lxml", "netCDF4", "ordereddict", "pyopenssl", "pytest (>=3.6)", "pytest-attrib", "pytest-cov", "requests-mock", "werkzeug"] -tests = ["WebTest", "beautifulsoup4", "flake8", "pyopenssl", "pytest (>=3.6)", "pytest-attrib", "pytest-cov", "requests-mock", "werkzeug"] +tests = ["WebTest", "coards", "cryptography", "flake8", "gsw", "gunicorn", "pytest (>=3.6)", "pytest-attrib", "pytest-cov", "requests-mock", "werkzeug (>=2.2.2)"] [[package]] name = "pyface" @@ -4352,61 +4421,64 @@ files = [ [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -4425,99 +4497,120 @@ pyyaml = "*" [[package]] name = "pyzmq" -version = "26.0.3" +version = "26.2.0" description = "Python bindings for 0MQ" optional = true python-versions = ">=3.7" files = [ - {file = "pyzmq-26.0.3-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:44dd6fc3034f1eaa72ece33588867df9e006a7303725a12d64c3dff92330f625"}, - {file = "pyzmq-26.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:acb704195a71ac5ea5ecf2811c9ee19ecdc62b91878528302dd0be1b9451cc90"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dbb9c997932473a27afa93954bb77a9f9b786b4ccf718d903f35da3232317de"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6bcb34f869d431799c3ee7d516554797f7760cb2198ecaa89c3f176f72d062be"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38ece17ec5f20d7d9b442e5174ae9f020365d01ba7c112205a4d59cf19dc38ee"}, - {file = "pyzmq-26.0.3-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:ba6e5e6588e49139a0979d03a7deb9c734bde647b9a8808f26acf9c547cab1bf"}, - {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3bf8b000a4e2967e6dfdd8656cd0757d18c7e5ce3d16339e550bd462f4857e59"}, - {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2136f64fbb86451dbbf70223635a468272dd20075f988a102bf8a3f194a411dc"}, - {file = "pyzmq-26.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e8918973fbd34e7814f59143c5f600ecd38b8038161239fd1a3d33d5817a38b8"}, - {file = "pyzmq-26.0.3-cp310-cp310-win32.whl", hash = "sha256:0aaf982e68a7ac284377d051c742610220fd06d330dcd4c4dbb4cdd77c22a537"}, - {file = "pyzmq-26.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:f1a9b7d00fdf60b4039f4455afd031fe85ee8305b019334b72dcf73c567edc47"}, - {file = "pyzmq-26.0.3-cp310-cp310-win_arm64.whl", hash = "sha256:80b12f25d805a919d53efc0a5ad7c0c0326f13b4eae981a5d7b7cc343318ebb7"}, - {file = "pyzmq-26.0.3-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:a72a84570f84c374b4c287183debc776dc319d3e8ce6b6a0041ce2e400de3f32"}, - {file = "pyzmq-26.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7ca684ee649b55fd8f378127ac8462fb6c85f251c2fb027eb3c887e8ee347bcd"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e222562dc0f38571c8b1ffdae9d7adb866363134299264a1958d077800b193b7"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f17cde1db0754c35a91ac00b22b25c11da6eec5746431d6e5092f0cd31a3fea9"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b7c0c0b3244bb2275abe255d4a30c050d541c6cb18b870975553f1fb6f37527"}, - {file = "pyzmq-26.0.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ac97a21de3712afe6a6c071abfad40a6224fd14fa6ff0ff8d0c6e6cd4e2f807a"}, - {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:88b88282e55fa39dd556d7fc04160bcf39dea015f78e0cecec8ff4f06c1fc2b5"}, - {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:72b67f966b57dbd18dcc7efbc1c7fc9f5f983e572db1877081f075004614fcdd"}, - {file = "pyzmq-26.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f4b6cecbbf3b7380f3b61de3a7b93cb721125dc125c854c14ddc91225ba52f83"}, - {file = "pyzmq-26.0.3-cp311-cp311-win32.whl", hash = "sha256:eed56b6a39216d31ff8cd2f1d048b5bf1700e4b32a01b14379c3b6dde9ce3aa3"}, - {file = "pyzmq-26.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:3191d312c73e3cfd0f0afdf51df8405aafeb0bad71e7ed8f68b24b63c4f36500"}, - {file = "pyzmq-26.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:b6907da3017ef55139cf0e417c5123a84c7332520e73a6902ff1f79046cd3b94"}, - {file = "pyzmq-26.0.3-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:068ca17214038ae986d68f4a7021f97e187ed278ab6dccb79f837d765a54d753"}, - {file = "pyzmq-26.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7821d44fe07335bea256b9f1f41474a642ca55fa671dfd9f00af8d68a920c2d4"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eeb438a26d87c123bb318e5f2b3d86a36060b01f22fbdffd8cf247d52f7c9a2b"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:69ea9d6d9baa25a4dc9cef5e2b77b8537827b122214f210dd925132e34ae9b12"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7daa3e1369355766dea11f1d8ef829905c3b9da886ea3152788dc25ee6079e02"}, - {file = "pyzmq-26.0.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6ca7a9a06b52d0e38ccf6bca1aeff7be178917893f3883f37b75589d42c4ac20"}, - {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1b7d0e124948daa4d9686d421ef5087c0516bc6179fdcf8828b8444f8e461a77"}, - {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:e746524418b70f38550f2190eeee834db8850088c834d4c8406fbb9bc1ae10b2"}, - {file = "pyzmq-26.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:6b3146f9ae6af82c47a5282ac8803523d381b3b21caeae0327ed2f7ecb718798"}, - {file = "pyzmq-26.0.3-cp312-cp312-win32.whl", hash = "sha256:2b291d1230845871c00c8462c50565a9cd6026fe1228e77ca934470bb7d70ea0"}, - {file = "pyzmq-26.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:926838a535c2c1ea21c903f909a9a54e675c2126728c21381a94ddf37c3cbddf"}, - {file = "pyzmq-26.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:5bf6c237f8c681dfb91b17f8435b2735951f0d1fad10cc5dfd96db110243370b"}, - {file = "pyzmq-26.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c0991f5a96a8e620f7691e61178cd8f457b49e17b7d9cfa2067e2a0a89fc1d5"}, - {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dbf012d8fcb9f2cf0643b65df3b355fdd74fc0035d70bb5c845e9e30a3a4654b"}, - {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:01fbfbeb8249a68d257f601deb50c70c929dc2dfe683b754659569e502fbd3aa"}, - {file = "pyzmq-26.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c8eb19abe87029c18f226d42b8a2c9efdd139d08f8bf6e085dd9075446db450"}, - {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:5344b896e79800af86ad643408ca9aa303a017f6ebff8cee5a3163c1e9aec987"}, - {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:204e0f176fd1d067671157d049466869b3ae1fc51e354708b0dc41cf94e23a3a"}, - {file = "pyzmq-26.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a42db008d58530efa3b881eeee4991146de0b790e095f7ae43ba5cc612decbc5"}, - {file = "pyzmq-26.0.3-cp37-cp37m-win32.whl", hash = "sha256:8d7a498671ca87e32b54cb47c82a92b40130a26c5197d392720a1bce1b3c77cf"}, - {file = "pyzmq-26.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:3b4032a96410bdc760061b14ed6a33613ffb7f702181ba999df5d16fb96ba16a"}, - {file = "pyzmq-26.0.3-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2cc4e280098c1b192c42a849de8de2c8e0f3a84086a76ec5b07bfee29bda7d18"}, - {file = "pyzmq-26.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5bde86a2ed3ce587fa2b207424ce15b9a83a9fa14422dcc1c5356a13aed3df9d"}, - {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:34106f68e20e6ff253c9f596ea50397dbd8699828d55e8fa18bd4323d8d966e6"}, - {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ebbbd0e728af5db9b04e56389e2299a57ea8b9dd15c9759153ee2455b32be6ad"}, - {file = "pyzmq-26.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6b1d1c631e5940cac5a0b22c5379c86e8df6a4ec277c7a856b714021ab6cfad"}, - {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e891ce81edd463b3b4c3b885c5603c00141151dd9c6936d98a680c8c72fe5c67"}, - {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9b273ecfbc590a1b98f014ae41e5cf723932f3b53ba9367cfb676f838038b32c"}, - {file = "pyzmq-26.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b32bff85fb02a75ea0b68f21e2412255b5731f3f389ed9aecc13a6752f58ac97"}, - {file = "pyzmq-26.0.3-cp38-cp38-win32.whl", hash = "sha256:f6c21c00478a7bea93caaaef9e7629145d4153b15a8653e8bb4609d4bc70dbfc"}, - {file = "pyzmq-26.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:3401613148d93ef0fd9aabdbddb212de3db7a4475367f49f590c837355343972"}, - {file = "pyzmq-26.0.3-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:2ed8357f4c6e0daa4f3baf31832df8a33334e0fe5b020a61bc8b345a3db7a606"}, - {file = "pyzmq-26.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c1c8f2a2ca45292084c75bb6d3a25545cff0ed931ed228d3a1810ae3758f975f"}, - {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:b63731993cdddcc8e087c64e9cf003f909262b359110070183d7f3025d1c56b5"}, - {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b3cd31f859b662ac5d7f4226ec7d8bd60384fa037fc02aee6ff0b53ba29a3ba8"}, - {file = "pyzmq-26.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:115f8359402fa527cf47708d6f8a0f8234f0e9ca0cab7c18c9c189c194dbf620"}, - {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:715bdf952b9533ba13dfcf1f431a8f49e63cecc31d91d007bc1deb914f47d0e4"}, - {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e1258c639e00bf5e8a522fec6c3eaa3e30cf1c23a2f21a586be7e04d50c9acab"}, - {file = "pyzmq-26.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:15c59e780be8f30a60816a9adab900c12a58d79c1ac742b4a8df044ab2a6d920"}, - {file = "pyzmq-26.0.3-cp39-cp39-win32.whl", hash = "sha256:d0cdde3c78d8ab5b46595054e5def32a755fc028685add5ddc7403e9f6de9879"}, - {file = "pyzmq-26.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:ce828058d482ef860746bf532822842e0ff484e27f540ef5c813d516dd8896d2"}, - {file = "pyzmq-26.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:788f15721c64109cf720791714dc14afd0f449d63f3a5487724f024345067381"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c18645ef6294d99b256806e34653e86236eb266278c8ec8112622b61db255de"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7e6bc96ebe49604df3ec2c6389cc3876cabe475e6bfc84ced1bf4e630662cb35"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:971e8990c5cc4ddcff26e149398fc7b0f6a042306e82500f5e8db3b10ce69f84"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8416c23161abd94cc7da80c734ad7c9f5dbebdadfdaa77dad78244457448223"}, - {file = "pyzmq-26.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:082a2988364b60bb5de809373098361cf1dbb239623e39e46cb18bc035ed9c0c"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d57dfbf9737763b3a60d26e6800e02e04284926329aee8fb01049635e957fe81"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:77a85dca4c2430ac04dc2a2185c2deb3858a34fe7f403d0a946fa56970cf60a1"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4c82a6d952a1d555bf4be42b6532927d2a5686dd3c3e280e5f63225ab47ac1f5"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4496b1282c70c442809fc1b151977c3d967bfb33e4e17cedbf226d97de18f709"}, - {file = "pyzmq-26.0.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:e4946d6bdb7ba972dfda282f9127e5756d4f299028b1566d1245fa0d438847e6"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:03c0ae165e700364b266876d712acb1ac02693acd920afa67da2ebb91a0b3c09"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:3e3070e680f79887d60feeda051a58d0ac36622e1759f305a41059eff62c6da7"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6ca08b840fe95d1c2bd9ab92dac5685f949fc6f9ae820ec16193e5ddf603c3b2"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e76654e9dbfb835b3518f9938e565c7806976c07b37c33526b574cc1a1050480"}, - {file = "pyzmq-26.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:871587bdadd1075b112e697173e946a07d722459d20716ceb3d1bd6c64bd08ce"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d0a2d1bd63a4ad79483049b26514e70fa618ce6115220da9efdff63688808b17"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0270b49b6847f0d106d64b5086e9ad5dc8a902413b5dbbb15d12b60f9c1747a4"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:703c60b9910488d3d0954ca585c34f541e506a091a41930e663a098d3b794c67"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:74423631b6be371edfbf7eabb02ab995c2563fee60a80a30829176842e71722a"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4adfbb5451196842a88fda3612e2c0414134874bffb1c2ce83ab4242ec9e027d"}, - {file = "pyzmq-26.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3516119f4f9b8671083a70b6afaa0a070f5683e431ab3dc26e9215620d7ca1ad"}, - {file = "pyzmq-26.0.3.tar.gz", hash = "sha256:dba7d9f2e047dfa2bca3b01f4f84aa5246725203d6284e3790f2ca15fba6b40a"}, + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629"}, + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89289a5ee32ef6c439086184529ae060c741334b8970a6855ec0b6ad3ff28764"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5506f06d7dc6ecf1efacb4a013b1f05071bb24b76350832c96449f4a2d95091c"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ea039387c10202ce304af74def5021e9adc6297067f3441d348d2b633e8166a"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2224fa4a4c2ee872886ed00a571f5e967c85e078e8e8c2530a2fb01b3309b88"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:28ad5233e9c3b52d76196c696e362508959741e1a005fb8fa03b51aea156088f"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1c17211bc037c7d88e85ed8b7d8f7e52db6dc8eca5590d162717c654550f7282"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b8f86dd868d41bea9a5f873ee13bf5551c94cf6bc51baebc6f85075971fe6eea"}, + {file = "pyzmq-26.2.0-cp310-cp310-win32.whl", hash = "sha256:46a446c212e58456b23af260f3d9fb785054f3e3653dbf7279d8f2b5546b21c2"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:49d34ab71db5a9c292a7644ce74190b1dd5a3475612eefb1f8be1d6961441971"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:bfa832bfa540e5b5c27dcf5de5d82ebc431b82c453a43d141afb1e5d2de025fa"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:8f7e66c7113c684c2b3f1c83cdd3376103ee0ce4c49ff80a648643e57fb22218"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3a495b30fc91db2db25120df5847d9833af237546fd59170701acd816ccc01c4"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77eb0968da535cba0470a5165468b2cac7772cfb569977cff92e240f57e31bef"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ace4f71f1900a548f48407fc9be59c6ba9d9aaf658c2eea6cf2779e72f9f317"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92a78853d7280bffb93df0a4a6a2498cba10ee793cc8076ef797ef2f74d107cf"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:689c5d781014956a4a6de61d74ba97b23547e431e9e7d64f27d4922ba96e9d6e"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aca98bc423eb7d153214b2df397c6421ba6373d3397b26c057af3c904452e37"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f3496d76b89d9429a656293744ceca4d2ac2a10ae59b84c1da9b5165f429ad3"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5c2b3bfd4b9689919db068ac6c9911f3fcb231c39f7dd30e3138be94896d18e6"}, + {file = "pyzmq-26.2.0-cp311-cp311-win32.whl", hash = "sha256:eac5174677da084abf378739dbf4ad245661635f1600edd1221f150b165343f4"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a509df7d0a83a4b178d0f937ef14286659225ef4e8812e05580776c70e155d5"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0e6091b157d48cbe37bd67233318dbb53e1e6327d6fc3bb284afd585d141003"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:ded0fc7d90fe93ae0b18059930086c51e640cdd3baebdc783a695c77f123dcd9"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17bf5a931c7f6618023cdacc7081f3f266aecb68ca692adac015c383a134ca52"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55cf66647e49d4621a7e20c8d13511ef1fe1efbbccf670811864452487007e08"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4661c88db4a9e0f958c8abc2b97472e23061f0bc737f6f6179d7a27024e1faa5"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea7f69de383cb47522c9c208aec6dd17697db7875a4674c4af3f8cfdac0bdeae"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7f98f6dfa8b8ccaf39163ce872bddacca38f6a67289116c8937a02e30bbe9711"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e3e0210287329272539eea617830a6a28161fbbd8a3271bf4150ae3e58c5d0e6"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b274e0762c33c7471f1a7471d1a2085b1a35eba5cdc48d2ae319f28b6fc4de3"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:29c6a4635eef69d68a00321e12a7d2559fe2dfccfa8efae3ffb8e91cd0b36a8b"}, + {file = "pyzmq-26.2.0-cp312-cp312-win32.whl", hash = "sha256:989d842dc06dc59feea09e58c74ca3e1678c812a4a8a2a419046d711031f69c7"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a50625acdc7801bc6f74698c5c583a491c61d73c6b7ea4dee3901bb99adb27a"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:4d29ab8592b6ad12ebbf92ac2ed2bedcfd1cec192d8e559e2e099f648570e19b"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9dd8cd1aeb00775f527ec60022004d030ddc51d783d056e3e23e74e623e33726"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:28c812d9757fe8acecc910c9ac9dafd2ce968c00f9e619db09e9f8f54c3a68a3"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d80b1dd99c1942f74ed608ddb38b181b87476c6a966a88a950c7dee118fdf50"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c997098cc65e3208eca09303630e84d42718620e83b733d0fd69543a9cab9cb"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ad1bc8d1b7a18497dda9600b12dc193c577beb391beae5cd2349184db40f187"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bea2acdd8ea4275e1278350ced63da0b166421928276c7c8e3f9729d7402a57b"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:23f4aad749d13698f3f7b64aad34f5fc02d6f20f05999eebc96b89b01262fb18"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a4f96f0d88accc3dbe4a9025f785ba830f968e21e3e2c6321ccdfc9aef755115"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ced65e5a985398827cc9276b93ef6dfabe0273c23de8c7931339d7e141c2818e"}, + {file = "pyzmq-26.2.0-cp313-cp313-win32.whl", hash = "sha256:31507f7b47cc1ead1f6e86927f8ebb196a0bab043f6345ce070f412a59bf87b5"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:70fc7fcf0410d16ebdda9b26cbd8bf8d803d220a7f3522e060a69a9c87bf7bad"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c3789bd5768ab5618ebf09cef6ec2b35fed88709b104351748a63045f0ff9797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:034da5fc55d9f8da09015d368f519478a52675e558c989bfcb5cf6d4e16a7d2a"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:c92d73464b886931308ccc45b2744e5968cbaade0b1d6aeb40d8ab537765f5bc"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:794a4562dcb374f7dbbfb3f51d28fb40123b5a2abadee7b4091f93054909add5"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aee22939bb6075e7afededabad1a56a905da0b3c4e3e0c45e75810ebe3a52672"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ae90ff9dad33a1cfe947d2c40cb9cb5e600d759ac4f0fd22616ce6540f72797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:43a47408ac52647dfabbc66a25b05b6a61700b5165807e3fbd40063fcaf46386"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:25bf2374a2a8433633c65ccb9553350d5e17e60c8eb4de4d92cc6bd60f01d306"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:007137c9ac9ad5ea21e6ad97d3489af654381324d5d3ba614c323f60dab8fae6"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:470d4a4f6d48fb34e92d768b4e8a5cc3780db0d69107abf1cd7ff734b9766eb0"}, + {file = "pyzmq-26.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3b55a4229ce5da9497dd0452b914556ae58e96a4381bb6f59f1305dfd7e53fc8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9cb3a6460cdea8fe8194a76de8895707e61ded10ad0be97188cc8463ffa7e3a8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8ab5cad923cc95c87bffee098a27856c859bd5d0af31bd346035aa816b081fe1"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ed69074a610fad1c2fda66180e7b2edd4d31c53f2d1872bc2d1211563904cd9"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cccba051221b916a4f5e538997c45d7d136a5646442b1231b916d0164067ea27"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:0eaa83fc4c1e271c24eaf8fb083cbccef8fde77ec8cd45f3c35a9a123e6da097"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9edda2df81daa129b25a39b86cb57dfdfe16f7ec15b42b19bfac503360d27a93"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win32.whl", hash = "sha256:ea0eb6af8a17fa272f7b98d7bebfab7836a0d62738e16ba380f440fceca2d951"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4ff9dc6bc1664bb9eec25cd17506ef6672d506115095411e237d571e92a58231"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2eb7735ee73ca1b0d71e0e67c3739c689067f055c764f73aac4cc8ecf958ee3f"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a534f43bc738181aa7cbbaf48e3eca62c76453a40a746ab95d4b27b1111a7d2"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aedd5dd8692635813368e558a05266b995d3d020b23e49581ddd5bbe197a8ab6"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8be4700cd8bb02cc454f630dcdf7cfa99de96788b80c51b60fe2fe1dac480289"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fcc03fa4997c447dce58264e93b5aa2d57714fbe0f06c07b7785ae131512732"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:402b190912935d3db15b03e8f7485812db350d271b284ded2b80d2e5704be780"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8685fa9c25ff00f550c1fec650430c4b71e4e48e8d852f7ddcf2e48308038640"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:76589c020680778f06b7e0b193f4b6dd66d470234a16e1df90329f5e14a171cd"}, + {file = "pyzmq-26.2.0-cp38-cp38-win32.whl", hash = "sha256:8423c1877d72c041f2c263b1ec6e34360448decfb323fa8b94e85883043ef988"}, + {file = "pyzmq-26.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:76589f2cd6b77b5bdea4fca5992dc1c23389d68b18ccc26a53680ba2dc80ff2f"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:b1d464cb8d72bfc1a3adc53305a63a8e0cac6bc8c5a07e8ca190ab8d3faa43c2"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4da04c48873a6abdd71811c5e163bd656ee1b957971db7f35140a2d573f6949c"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d049df610ac811dcffdc147153b414147428567fbbc8be43bb8885f04db39d98"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05590cdbc6b902101d0e65d6a4780af14dc22914cc6ab995d99b85af45362cc9"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c811cfcd6a9bf680236c40c6f617187515269ab2912f3d7e8c0174898e2519db"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6835dd60355593de10350394242b5757fbbd88b25287314316f266e24c61d073"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc6bee759a6bddea5db78d7dcd609397449cb2d2d6587f48f3ca613b19410cfc"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c530e1eecd036ecc83c3407f77bb86feb79916d4a33d11394b8234f3bd35b940"}, + {file = "pyzmq-26.2.0-cp39-cp39-win32.whl", hash = "sha256:367b4f689786fca726ef7a6c5ba606958b145b9340a5e4808132cc65759abd44"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:e6fa2e3e683f34aea77de8112f6483803c96a44fd726d7358b9888ae5bb394ec"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:7445be39143a8aa4faec43b076e06944b8f9d0701b669df4af200531b21e40bb"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:706e794564bec25819d21a41c31d4df2d48e1cc4b061e8d345d7fb4dd3e94072"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b435f2753621cd36e7c1762156815e21c985c72b19135dac43a7f4f31d28dd1"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:160c7e0a5eb178011e72892f99f918c04a131f36056d10d9c1afb223fc952c2d"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4a71d5d6e7b28a47a394c0471b7e77a0661e2d651e7ae91e0cab0a587859ca"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:90412f2db8c02a3864cbfc67db0e3dcdbda336acf1c469526d3e869394fe001c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2ea4ad4e6a12e454de05f2949d4beddb52460f3de7c8b9d5c46fbb7d7222e02c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fc4f7a173a5609631bb0c42c23d12c49df3966f89f496a51d3eb0ec81f4519d6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:878206a45202247781472a2d99df12a176fef806ca175799e1c6ad263510d57c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17c412bad2eb9468e876f556eb4ee910e62d721d2c7a53c7fa31e643d35352e6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:0d987a3ae5a71c6226b203cfd298720e0086c7fe7c74f35fa8edddfbd6597eed"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:39887ac397ff35b7b775db7201095fc6310a35fdbae85bac4523f7eb3b840e20"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fdb5b3e311d4d4b0eb8b3e8b4d1b0a512713ad7e6a68791d0923d1aec433d919"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:226af7dcb51fdb0109f0016449b357e182ea0ceb6b47dfb5999d569e5db161d5"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bed0e799e6120b9c32756203fb9dfe8ca2fb8467fed830c34c877e25638c3fc"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:29c7947c594e105cb9e6c466bace8532dc1ca02d498684128b339799f5248277"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cdeabcff45d1c219636ee2e54d852262e5c2e085d6cb476d938aee8d921356b3"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35cffef589bcdc587d06f9149f8d5e9e8859920a071df5a2671de2213bef592a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18c8dc3b7468d8b4bdf60ce9d7141897da103c7a4690157b32b60acb45e333e6"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7133d0a1677aec369d67dd78520d3fa96dd7f3dcec99d66c1762870e5ea1a50a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6a96179a24b14fa6428cbfc08641c779a53f8fcec43644030328f44034c7f1f4"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4f78c88905461a9203eac9faac157a2a0dbba84a0fd09fd29315db27be40af9f"}, + {file = "pyzmq-26.2.0.tar.gz", hash = "sha256:070672c258581c8e4f640b5159297580a9974b026043bd4ab0470be9ed324f1f"}, ] [package.dependencies] @@ -4738,114 +4831,114 @@ test = ["dask", "netcdf4", "pytest (>=3.6)", "pytest-cov", "pytest-timeout"] [[package]] name = "rpds-py" -version = "0.19.1" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = true python-versions = ">=3.8" files = [ - {file = "rpds_py-0.19.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:aaf71f95b21f9dc708123335df22e5a2fef6307e3e6f9ed773b2e0938cc4d491"}, - {file = "rpds_py-0.19.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca0dda0c5715efe2ab35bb83f813f681ebcd2840d8b1b92bfc6fe3ab382fae4a"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81db2e7282cc0487f500d4db203edc57da81acde9e35f061d69ed983228ffe3b"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1a8dfa125b60ec00c7c9baef945bb04abf8ac772d8ebefd79dae2a5f316d7850"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271accf41b02687cef26367c775ab220372ee0f4925591c6796e7c148c50cab5"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9bc4161bd3b970cd6a6fcda70583ad4afd10f2750609fb1f3ca9505050d4ef3"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0cf2a0dbb5987da4bd92a7ca727eadb225581dd9681365beba9accbe5308f7d"}, - {file = "rpds_py-0.19.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5e28e56143750808c1c79c70a16519e9bc0a68b623197b96292b21b62d6055c"}, - {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c7af6f7b80f687b33a4cdb0a785a5d4de1fb027a44c9a049d8eb67d5bfe8a687"}, - {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e429fc517a1c5e2a70d576077231538a98d59a45dfc552d1ac45a132844e6dfb"}, - {file = "rpds_py-0.19.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d2dbd8f4990d4788cb122f63bf000357533f34860d269c1a8e90ae362090ff3a"}, - {file = "rpds_py-0.19.1-cp310-none-win32.whl", hash = "sha256:e0f9d268b19e8f61bf42a1da48276bcd05f7ab5560311f541d22557f8227b866"}, - {file = "rpds_py-0.19.1-cp310-none-win_amd64.whl", hash = "sha256:df7c841813f6265e636fe548a49664c77af31ddfa0085515326342a751a6ba51"}, - {file = "rpds_py-0.19.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:902cf4739458852fe917104365ec0efbea7d29a15e4276c96a8d33e6ed8ec137"}, - {file = "rpds_py-0.19.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3d73022990ab0c8b172cce57c69fd9a89c24fd473a5e79cbce92df87e3d9c48"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3837c63dd6918a24de6c526277910e3766d8c2b1627c500b155f3eecad8fad65"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cdb7eb3cf3deb3dd9e7b8749323b5d970052711f9e1e9f36364163627f96da58"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26ab43b6d65d25b1a333c8d1b1c2f8399385ff683a35ab5e274ba7b8bb7dc61c"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75130df05aae7a7ac171b3b5b24714cffeabd054ad2ebc18870b3aa4526eba23"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c34f751bf67cab69638564eee34023909380ba3e0d8ee7f6fe473079bf93f09b"}, - {file = "rpds_py-0.19.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f2671cb47e50a97f419a02cd1e0c339b31de017b033186358db92f4d8e2e17d8"}, - {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3c73254c256081704dba0a333457e2fb815364018788f9b501efe7c5e0ada401"}, - {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4383beb4a29935b8fa28aca8fa84c956bf545cb0c46307b091b8d312a9150e6a"}, - {file = "rpds_py-0.19.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dbceedcf4a9329cc665452db1aaf0845b85c666e4885b92ee0cddb1dbf7e052a"}, - {file = "rpds_py-0.19.1-cp311-none-win32.whl", hash = "sha256:f0a6d4a93d2a05daec7cb885157c97bbb0be4da739d6f9dfb02e101eb40921cd"}, - {file = "rpds_py-0.19.1-cp311-none-win_amd64.whl", hash = "sha256:c149a652aeac4902ecff2dd93c3b2681c608bd5208c793c4a99404b3e1afc87c"}, - {file = "rpds_py-0.19.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:56313be667a837ff1ea3508cebb1ef6681d418fa2913a0635386cf29cff35165"}, - {file = "rpds_py-0.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d1d7539043b2b31307f2c6c72957a97c839a88b2629a348ebabe5aa8b626d6b"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e1dc59a5e7bc7f44bd0c048681f5e05356e479c50be4f2c1a7089103f1621d5"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b8f78398e67a7227aefa95f876481485403eb974b29e9dc38b307bb6eb2315ea"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ef07a0a1d254eeb16455d839cef6e8c2ed127f47f014bbda64a58b5482b6c836"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8124101e92c56827bebef084ff106e8ea11c743256149a95b9fd860d3a4f331f"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:08ce9c95a0b093b7aec75676b356a27879901488abc27e9d029273d280438505"}, - {file = "rpds_py-0.19.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b02dd77a2de6e49078c8937aadabe933ceac04b41c5dde5eca13a69f3cf144e"}, - {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4dd02e29c8cbed21a1875330b07246b71121a1c08e29f0ee3db5b4cfe16980c4"}, - {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9c7042488165f7251dc7894cd533a875d2875af6d3b0e09eda9c4b334627ad1c"}, - {file = "rpds_py-0.19.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f809a17cc78bd331e137caa25262b507225854073fd319e987bd216bed911b7c"}, - {file = "rpds_py-0.19.1-cp312-none-win32.whl", hash = "sha256:3ddab996807c6b4227967fe1587febade4e48ac47bb0e2d3e7858bc621b1cace"}, - {file = "rpds_py-0.19.1-cp312-none-win_amd64.whl", hash = "sha256:32e0db3d6e4f45601b58e4ac75c6f24afbf99818c647cc2066f3e4b192dabb1f"}, - {file = "rpds_py-0.19.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:747251e428406b05fc86fee3904ee19550c4d2d19258cef274e2151f31ae9d38"}, - {file = "rpds_py-0.19.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dc733d35f861f8d78abfaf54035461e10423422999b360966bf1c443cbc42705"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbda75f245caecff8faa7e32ee94dfaa8312a3367397975527f29654cd17a6ed"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bd04d8cab16cab5b0a9ffc7d10f0779cf1120ab16c3925404428f74a0a43205a"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2d66eb41ffca6cc3c91d8387509d27ba73ad28371ef90255c50cb51f8953301"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fdf4890cda3b59170009d012fca3294c00140e7f2abe1910e6a730809d0f3f9b"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1fa67ef839bad3815124f5f57e48cd50ff392f4911a9f3cf449d66fa3df62a5"}, - {file = "rpds_py-0.19.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b82c9514c6d74b89a370c4060bdb80d2299bc6857e462e4a215b4ef7aa7b090e"}, - {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c7b07959866a6afb019abb9564d8a55046feb7a84506c74a6f197cbcdf8a208e"}, - {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4f580ae79d0b861dfd912494ab9d477bea535bfb4756a2269130b6607a21802e"}, - {file = "rpds_py-0.19.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c6d20c8896c00775e6f62d8373aba32956aa0b850d02b5ec493f486c88e12859"}, - {file = "rpds_py-0.19.1-cp313-none-win32.whl", hash = "sha256:afedc35fe4b9e30ab240b208bb9dc8938cb4afe9187589e8d8d085e1aacb8309"}, - {file = "rpds_py-0.19.1-cp313-none-win_amd64.whl", hash = "sha256:1d4af2eb520d759f48f1073ad3caef997d1bfd910dc34e41261a595d3f038a94"}, - {file = "rpds_py-0.19.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:34bca66e2e3eabc8a19e9afe0d3e77789733c702c7c43cd008e953d5d1463fde"}, - {file = "rpds_py-0.19.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:24f8ae92c7fae7c28d0fae9b52829235df83f34847aa8160a47eb229d9666c7b"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71157f9db7f6bc6599a852852f3389343bea34315b4e6f109e5cbc97c1fb2963"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1d494887d40dc4dd0d5a71e9d07324e5c09c4383d93942d391727e7a40ff810b"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7b3661e6d4ba63a094138032c1356d557de5b3ea6fd3cca62a195f623e381c76"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:97fbb77eaeb97591efdc654b8b5f3ccc066406ccfb3175b41382f221ecc216e8"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cc4bc73e53af8e7a42c8fd7923bbe35babacfa7394ae9240b3430b5dcf16b2a"}, - {file = "rpds_py-0.19.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:35af5e4d5448fa179fd7fff0bba0fba51f876cd55212f96c8bbcecc5c684ae5c"}, - {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3511f6baf8438326e351097cecd137eb45c5f019944fe0fd0ae2fea2fd26be39"}, - {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:57863d16187995c10fe9cf911b897ed443ac68189179541734502353af33e693"}, - {file = "rpds_py-0.19.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:9e318e6786b1e750a62f90c6f7fa8b542102bdcf97c7c4de2a48b50b61bd36ec"}, - {file = "rpds_py-0.19.1-cp38-none-win32.whl", hash = "sha256:53dbc35808c6faa2ce3e48571f8f74ef70802218554884787b86a30947842a14"}, - {file = "rpds_py-0.19.1-cp38-none-win_amd64.whl", hash = "sha256:8df1c283e57c9cb4d271fdc1875f4a58a143a2d1698eb0d6b7c0d7d5f49c53a1"}, - {file = "rpds_py-0.19.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:e76c902d229a3aa9d5ceb813e1cbcc69bf5bda44c80d574ff1ac1fa3136dea71"}, - {file = "rpds_py-0.19.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de1f7cd5b6b351e1afd7568bdab94934d656abe273d66cda0ceea43bbc02a0c2"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24fc5a84777cb61692d17988989690d6f34f7f95968ac81398d67c0d0994a897"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:74129d5ffc4cde992d89d345f7f7d6758320e5d44a369d74d83493429dad2de5"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e360188b72f8080fefa3adfdcf3618604cc8173651c9754f189fece068d2a45"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13e6d4840897d4e4e6b2aa1443e3a8eca92b0402182aafc5f4ca1f5e24f9270a"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f09529d2332264a902688031a83c19de8fda5eb5881e44233286b9c9ec91856d"}, - {file = "rpds_py-0.19.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0d4b52811dcbc1aba08fd88d475f75b4f6db0984ba12275d9bed1a04b2cae9b5"}, - {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dd635c2c4043222d80d80ca1ac4530a633102a9f2ad12252183bcf338c1b9474"}, - {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f35b34a5184d5e0cc360b61664c1c06e866aab077b5a7c538a3e20c8fcdbf90b"}, - {file = "rpds_py-0.19.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d4ec0046facab83012d821b33cead742a35b54575c4edfb7ed7445f63441835f"}, - {file = "rpds_py-0.19.1-cp39-none-win32.whl", hash = "sha256:f5b8353ea1a4d7dfb59a7f45c04df66ecfd363bb5b35f33b11ea579111d4655f"}, - {file = "rpds_py-0.19.1-cp39-none-win_amd64.whl", hash = "sha256:1fb93d3486f793d54a094e2bfd9cd97031f63fcb5bc18faeb3dd4b49a1c06523"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7d5c7e32f3ee42f77d8ff1a10384b5cdcc2d37035e2e3320ded909aa192d32c3"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:89cc8921a4a5028d6dd388c399fcd2eef232e7040345af3d5b16c04b91cf3c7e"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bca34e913d27401bda2a6f390d0614049f5a95b3b11cd8eff80fe4ec340a1208"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5953391af1405f968eb5701ebbb577ebc5ced8d0041406f9052638bafe52209d"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:840e18c38098221ea6201f091fc5d4de6128961d2930fbbc96806fb43f69aec1"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6d8b735c4d162dc7d86a9cf3d717f14b6c73637a1f9cd57fe7e61002d9cb1972"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce757c7c90d35719b38fa3d4ca55654a76a40716ee299b0865f2de21c146801c"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a9421b23c85f361a133aa7c5e8ec757668f70343f4ed8fdb5a4a14abd5437244"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3b823be829407393d84ee56dc849dbe3b31b6a326f388e171555b262e8456cc1"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:5e58b61dcbb483a442c6239c3836696b79f2cd8e7eec11e12155d3f6f2d886d1"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39d67896f7235b2c886fb1ee77b1491b77049dcef6fbf0f401e7b4cbed86bbd4"}, - {file = "rpds_py-0.19.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8b32cd4ab6db50c875001ba4f5a6b30c0f42151aa1fbf9c2e7e3674893fb1dc4"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1c32e41de995f39b6b315d66c27dea3ef7f7c937c06caab4c6a79a5e09e2c415"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a129c02b42d46758c87faeea21a9f574e1c858b9f358b6dd0bbd71d17713175"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:346557f5b1d8fd9966059b7a748fd79ac59f5752cd0e9498d6a40e3ac1c1875f"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:31e450840f2f27699d014cfc8865cc747184286b26d945bcea6042bb6aa4d26e"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01227f8b3e6c8961490d869aa65c99653df80d2f0a7fde8c64ebddab2b9b02fd"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69084fd29bfeff14816666c93a466e85414fe6b7d236cfc108a9c11afa6f7301"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4d2b88efe65544a7d5121b0c3b003ebba92bfede2ea3577ce548b69c5235185"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ea961a674172ed2235d990d7edf85d15d8dfa23ab8575e48306371c070cda67"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5beffdbe766cfe4fb04f30644d822a1080b5359df7db3a63d30fa928375b2720"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:720f3108fb1bfa32e51db58b832898372eb5891e8472a8093008010911e324c5"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c2087dbb76a87ec2c619253e021e4fb20d1a72580feeaa6892b0b3d955175a71"}, - {file = "rpds_py-0.19.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2ddd50f18ebc05ec29a0d9271e9dbe93997536da3546677f8ca00b76d477680c"}, - {file = "rpds_py-0.19.1.tar.gz", hash = "sha256:31dd5794837f00b46f4096aa8ccaa5972f73a938982e32ed817bb520c465e520"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] @@ -4980,63 +5073,69 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "72.1.0" +version = "73.0.1" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1"}, - {file = "setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec"}, + {file = "setuptools-73.0.1-py3-none-any.whl", hash = "sha256:b208925fcb9f7af924ed2dc04708ea89791e24bde0d3020b27df0e116088b34e"}, + {file = "setuptools-73.0.1.tar.gz", hash = "sha256:d59a3e788ab7e012ab2c4baed1b376da6366883ee20d7a5fc426816e3d7b1193"}, ] [package.extras] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] [[package]] name = "shapely" -version = "2.0.5" +version = "2.0.6" description = "Manipulation and analysis of geometric objects" optional = false python-versions = ">=3.7" files = [ - {file = "shapely-2.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:89d34787c44f77a7d37d55ae821f3a784fa33592b9d217a45053a93ade899375"}, - {file = "shapely-2.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:798090b426142df2c5258779c1d8d5734ec6942f778dab6c6c30cfe7f3bf64ff"}, - {file = "shapely-2.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45211276900c4790d6bfc6105cbf1030742da67594ea4161a9ce6812a6721e68"}, - {file = "shapely-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e119444bc27ca33e786772b81760f2028d930ac55dafe9bc50ef538b794a8e1"}, - {file = "shapely-2.0.5-cp310-cp310-win32.whl", hash = "sha256:9a4492a2b2ccbeaebf181e7310d2dfff4fdd505aef59d6cb0f217607cb042fb3"}, - {file = "shapely-2.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:1e5cb5ee72f1bc7ace737c9ecd30dc174a5295fae412972d3879bac2e82c8fae"}, - {file = "shapely-2.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5bbfb048a74cf273db9091ff3155d373020852805a37dfc846ab71dde4be93ec"}, - {file = "shapely-2.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93be600cbe2fbaa86c8eb70656369f2f7104cd231f0d6585c7d0aa555d6878b8"}, - {file = "shapely-2.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f8e71bb9a46814019f6644c4e2560a09d44b80100e46e371578f35eaaa9da1c"}, - {file = "shapely-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5251c28a29012e92de01d2e84f11637eb1d48184ee8f22e2df6c8c578d26760"}, - {file = "shapely-2.0.5-cp311-cp311-win32.whl", hash = "sha256:35110e80070d664781ec7955c7de557456b25727a0257b354830abb759bf8311"}, - {file = "shapely-2.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c6b78c0007a34ce7144f98b7418800e0a6a5d9a762f2244b00ea560525290c9"}, - {file = "shapely-2.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:03bd7b5fa5deb44795cc0a503999d10ae9d8a22df54ae8d4a4cd2e8a93466195"}, - {file = "shapely-2.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ff9521991ed9e201c2e923da014e766c1aa04771bc93e6fe97c27dcf0d40ace"}, - {file = "shapely-2.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b65365cfbf657604e50d15161ffcc68de5cdb22a601bbf7823540ab4918a98d"}, - {file = "shapely-2.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21f64e647a025b61b19585d2247137b3a38a35314ea68c66aaf507a1c03ef6fe"}, - {file = "shapely-2.0.5-cp312-cp312-win32.whl", hash = "sha256:3ac7dc1350700c139c956b03d9c3df49a5b34aaf91d024d1510a09717ea39199"}, - {file = "shapely-2.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:30e8737983c9d954cd17feb49eb169f02f1da49e24e5171122cf2c2b62d65c95"}, - {file = "shapely-2.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:ff7731fea5face9ec08a861ed351734a79475631b7540ceb0b66fb9732a5f529"}, - {file = "shapely-2.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff9e520af0c5a578e174bca3c18713cd47a6c6a15b6cf1f50ac17dc8bb8db6a2"}, - {file = "shapely-2.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49b299b91557b04acb75e9732645428470825061f871a2edc36b9417d66c1fc5"}, - {file = "shapely-2.0.5-cp37-cp37m-win32.whl", hash = "sha256:b5870633f8e684bf6d1ae4df527ddcb6f3895f7b12bced5c13266ac04f47d231"}, - {file = "shapely-2.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:401cb794c5067598f50518e5a997e270cd7642c4992645479b915c503866abed"}, - {file = "shapely-2.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e91ee179af539100eb520281ba5394919067c6b51824e6ab132ad4b3b3e76dd0"}, - {file = "shapely-2.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8af6f7260f809c0862741ad08b1b89cb60c130ae30efab62320bbf4ee9cc71fa"}, - {file = "shapely-2.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5456dd522800306ba3faef77c5ba847ec30a0bd73ab087a25e0acdd4db2514f"}, - {file = "shapely-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b714a840402cde66fd7b663bb08cacb7211fa4412ea2a209688f671e0d0631fd"}, - {file = "shapely-2.0.5-cp38-cp38-win32.whl", hash = "sha256:7e8cf5c252fac1ea51b3162be2ec3faddedc82c256a1160fc0e8ddbec81b06d2"}, - {file = "shapely-2.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:4461509afdb15051e73ab178fae79974387f39c47ab635a7330d7fee02c68a3f"}, - {file = "shapely-2.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7545a39c55cad1562be302d74c74586f79e07b592df8ada56b79a209731c0219"}, - {file = "shapely-2.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4c83a36f12ec8dee2066946d98d4d841ab6512a6ed7eb742e026a64854019b5f"}, - {file = "shapely-2.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89e640c2cd37378480caf2eeda9a51be64201f01f786d127e78eaeff091ec897"}, - {file = "shapely-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06efe39beafde3a18a21dde169d32f315c57da962826a6d7d22630025200c5e6"}, - {file = "shapely-2.0.5-cp39-cp39-win32.whl", hash = "sha256:8203a8b2d44dcb366becbc8c3d553670320e4acf0616c39e218c9561dd738d92"}, - {file = "shapely-2.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:7fed9dbfbcfec2682d9a047b9699db8dcc890dfca857ecba872c42185fc9e64e"}, - {file = "shapely-2.0.5.tar.gz", hash = "sha256:bff2366bc786bfa6cb353d6b47d0443c570c32776612e527ee47b6df63fcfe32"}, + {file = "shapely-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29a34e068da2d321e926b5073539fd2a1d4429a2c656bd63f0bd4c8f5b236d0b"}, + {file = "shapely-2.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c84c3f53144febf6af909d6b581bc05e8785d57e27f35ebaa5c1ab9baba13b"}, + {file = "shapely-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ad2fae12dca8d2b727fa12b007e46fbc522148a584f5d6546c539f3464dccde"}, + {file = "shapely-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3304883bd82d44be1b27a9d17f1167fda8c7f5a02a897958d86c59ec69b705e"}, + {file = "shapely-2.0.6-cp310-cp310-win32.whl", hash = "sha256:3ec3a0eab496b5e04633a39fa3d5eb5454628228201fb24903d38174ee34565e"}, + {file = "shapely-2.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:28f87cdf5308a514763a5c38de295544cb27429cfa655d50ed8431a4796090c4"}, + {file = "shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5aeb0f51a9db176da9a30cb2f4329b6fbd1e26d359012bb0ac3d3c7781667a9e"}, + {file = "shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a7a78b0d51257a367ee115f4d41ca4d46edbd0dd280f697a8092dd3989867b2"}, + {file = "shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f32c23d2f43d54029f986479f7c1f6e09c6b3a19353a3833c2ffb226fb63a855"}, + {file = "shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3dc9fb0eb56498912025f5eb352b5126f04801ed0e8bdbd867d21bdbfd7cbd0"}, + {file = "shapely-2.0.6-cp311-cp311-win32.whl", hash = "sha256:d93b7e0e71c9f095e09454bf18dad5ea716fb6ced5df3cb044564a00723f339d"}, + {file = "shapely-2.0.6-cp311-cp311-win_amd64.whl", hash = "sha256:c02eb6bf4cfb9fe6568502e85bb2647921ee49171bcd2d4116c7b3109724ef9b"}, + {file = "shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cec9193519940e9d1b86a3b4f5af9eb6910197d24af02f247afbfb47bcb3fab0"}, + {file = "shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83b94a44ab04a90e88be69e7ddcc6f332da7c0a0ebb1156e1c4f568bbec983c3"}, + {file = "shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:537c4b2716d22c92036d00b34aac9d3775e3691f80c7aa517c2c290351f42cd8"}, + {file = "shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98fea108334be345c283ce74bf064fa00cfdd718048a8af7343c59eb40f59726"}, + {file = "shapely-2.0.6-cp312-cp312-win32.whl", hash = "sha256:42fd4cd4834747e4990227e4cbafb02242c0cffe9ce7ef9971f53ac52d80d55f"}, + {file = "shapely-2.0.6-cp312-cp312-win_amd64.whl", hash = "sha256:665990c84aece05efb68a21b3523a6b2057e84a1afbef426ad287f0796ef8a48"}, + {file = "shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:42805ef90783ce689a4dde2b6b2f261e2c52609226a0438d882e3ced40bb3013"}, + {file = "shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6d2cb146191a47bd0cee8ff5f90b47547b82b6345c0d02dd8b25b88b68af62d7"}, + {file = "shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3fdef0a1794a8fe70dc1f514440aa34426cc0ae98d9a1027fb299d45741c381"}, + {file = "shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c665a0301c645615a107ff7f52adafa2153beab51daf34587170d85e8ba6805"}, + {file = "shapely-2.0.6-cp313-cp313-win32.whl", hash = "sha256:0334bd51828f68cd54b87d80b3e7cee93f249d82ae55a0faf3ea21c9be7b323a"}, + {file = "shapely-2.0.6-cp313-cp313-win_amd64.whl", hash = "sha256:d37d070da9e0e0f0a530a621e17c0b8c3c9d04105655132a87cfff8bd77cc4c2"}, + {file = "shapely-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:fa7468e4f5b92049c0f36d63c3e309f85f2775752e076378e36c6387245c5462"}, + {file = "shapely-2.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed5867e598a9e8ac3291da6cc9baa62ca25706eea186117034e8ec0ea4355653"}, + {file = "shapely-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81d9dfe155f371f78c8d895a7b7f323bb241fb148d848a2bf2244f79213123fe"}, + {file = "shapely-2.0.6-cp37-cp37m-win32.whl", hash = "sha256:fbb7bf02a7542dba55129062570211cfb0defa05386409b3e306c39612e7fbcc"}, + {file = "shapely-2.0.6-cp37-cp37m-win_amd64.whl", hash = "sha256:837d395fac58aa01aa544495b97940995211e3e25f9aaf87bc3ba5b3a8cd1ac7"}, + {file = "shapely-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c6d88ade96bf02f6bfd667ddd3626913098e243e419a0325ebef2bbd481d1eb6"}, + {file = "shapely-2.0.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8b3b818c4407eaa0b4cb376fd2305e20ff6df757bf1356651589eadc14aab41b"}, + {file = "shapely-2.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbc783529a21f2bd50c79cef90761f72d41c45622b3e57acf78d984c50a5d13"}, + {file = "shapely-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2423f6c0903ebe5df6d32e0066b3d94029aab18425ad4b07bf98c3972a6e25a1"}, + {file = "shapely-2.0.6-cp38-cp38-win32.whl", hash = "sha256:2de00c3bfa80d6750832bde1d9487e302a6dd21d90cb2f210515cefdb616e5f5"}, + {file = "shapely-2.0.6-cp38-cp38-win_amd64.whl", hash = "sha256:3a82d58a1134d5e975f19268710e53bddd9c473743356c90d97ce04b73e101ee"}, + {file = "shapely-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:392f66f458a0a2c706254f473290418236e52aa4c9b476a072539d63a2460595"}, + {file = "shapely-2.0.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eba5bae271d523c938274c61658ebc34de6c4b33fdf43ef7e938b5776388c1be"}, + {file = "shapely-2.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7060566bc4888b0c8ed14b5d57df8a0ead5c28f9b69fb6bed4476df31c51b0af"}, + {file = "shapely-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b02154b3e9d076a29a8513dffcb80f047a5ea63c897c0cd3d3679f29363cf7e5"}, + {file = "shapely-2.0.6-cp39-cp39-win32.whl", hash = "sha256:44246d30124a4f1a638a7d5419149959532b99dfa25b54393512e6acc9c211ac"}, + {file = "shapely-2.0.6-cp39-cp39-win_amd64.whl", hash = "sha256:2b542d7f1dbb89192d3512c52b679c822ba916f93479fa5d4fc2fe4fa0b3c9e8"}, + {file = "shapely-2.0.6.tar.gz", hash = "sha256:997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6"}, ] [package.dependencies] @@ -5088,13 +5187,13 @@ test = ["hypothesis", "pytest"] [[package]] name = "soupsieve" -version = "2.5" +version = "2.6" description = "A modern CSS selector implementation for Beautiful Soup." optional = false python-versions = ">=3.8" files = [ - {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, - {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, + {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"}, + {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"}, ] [[package]] @@ -5280,13 +5379,13 @@ files = [ [[package]] name = "tqdm" -version = "4.66.4" +version = "4.66.5" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.4-py3-none-any.whl", hash = "sha256:b75ca56b413b030bc3f00af51fd2c1a1a5eac6a0c1cca83cbb37a5c52abce644"}, - {file = "tqdm-4.66.4.tar.gz", hash = "sha256:e4d936c9de8727928f3be6079590e97d9abfe8d39a590be678eb5919ffc186bb"}, + {file = "tqdm-4.66.5-py3-none-any.whl", hash = "sha256:90279a3770753eafc9194a0364852159802111925aa30eb3f9d85b0e805ac7cd"}, + {file = "tqdm-4.66.5.tar.gz", hash = "sha256:e1020aef2e5096702d8a025ac7d16b1577279c9d63f8375b63083e9a5f0fcbad"}, ] [package.dependencies] @@ -5526,43 +5625,46 @@ web = ["wslink (>=1.0.4)"] [[package]] name = "watchdog" -version = "4.0.1" +version = "4.0.2" description = "Filesystem events monitoring" optional = false python-versions = ">=3.8" files = [ - {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"}, - {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"}, - {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"}, - {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"}, - {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"}, - {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"}, - {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"}, - {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"}, - {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"}, - {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"}, - {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"}, - {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"}, - {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ede7f010f2239b97cc79e6cb3c249e72962404ae3865860855d5cbe708b0fd22"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2cffa171445b0efa0726c561eca9a27d00a1f2b83846dbd5a4f639c4f8ca8e1"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c50f148b31b03fbadd6d0b5980e38b558046b127dc483e5e4505fcef250f9503"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7c7d4bf585ad501c5f6c980e7be9c4f15604c7cc150e942d82083b31a7548930"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:914285126ad0b6eb2258bbbcb7b288d9dfd655ae88fa28945be05a7b475a800b"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:984306dc4720da5498b16fc037b36ac443816125a3705dfde4fd90652d8028ef"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1cdcfd8142f604630deef34722d695fb455d04ab7cfe9963055df1fc69e6727a"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7ab624ff2f663f98cd03c8b7eedc09375a911794dfea6bf2a359fcc266bff29"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:132937547a716027bd5714383dfc40dc66c26769f1ce8a72a859d6a48f371f3a"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:cd67c7df93eb58f360c43802acc945fa8da70c675b6fa37a241e17ca698ca49b"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcfd02377be80ef3b6bc4ce481ef3959640458d6feaae0bd43dd90a43da90a7d"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:980b71510f59c884d684b3663d46e7a14b457c9611c481e5cef08f4dd022eed7"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:aa160781cafff2719b663c8a506156e9289d111d80f3387cf3af49cedee1f040"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f6ee8dedd255087bc7fe82adf046f0b75479b989185fb0bdf9a98b612170eac7"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0b4359067d30d5b864e09c8597b112fe0a0a59321a0f331498b013fb097406b4"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:770eef5372f146997638d737c9a3c597a3b41037cfbc5c41538fc27c09c3a3f9"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eeea812f38536a0aa859972d50c76e37f4456474b02bd93674d1947cf1e39578"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b2c45f6e1e57ebb4687690c05bc3a2c1fb6ab260550c4290b8abb1335e0fd08b"}, + {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:10b6683df70d340ac3279eff0b2766813f00f35a1d37515d2c99959ada8f05fa"}, + {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f7c739888c20f99824f7aa9d31ac8a97353e22d0c0e54703a547a218f6637eb3"}, + {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c100d09ac72a8a08ddbf0629ddfa0b8ee41740f9051429baa8e31bb903ad7508"}, + {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f5315a8c8dd6dd9425b974515081fc0aadca1d1d61e078d2246509fd756141ee"}, + {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:2d468028a77b42cc685ed694a7a550a8d1771bb05193ba7b24006b8241a571a1"}, + {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f15edcae3830ff20e55d1f4e743e92970c847bcddc8b7509bcd172aa04de506e"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:936acba76d636f70db8f3c66e76aa6cb5136a936fc2a5088b9ce1c7a3508fc83"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_armv7l.whl", hash = "sha256:e252f8ca942a870f38cf785aef420285431311652d871409a64e2a0a52a2174c"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_i686.whl", hash = "sha256:0e83619a2d5d436a7e58a1aea957a3c1ccbf9782c43c0b4fed80580e5e4acd1a"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64.whl", hash = "sha256:88456d65f207b39f1981bf772e473799fcdc10801062c36fd5ad9f9d1d463a73"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:32be97f3b75693a93c683787a87a0dc8db98bb84701539954eef991fb35f5fbc"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_s390x.whl", hash = "sha256:c82253cfc9be68e3e49282831afad2c1f6593af80c0daf1287f6a92657986757"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:c0b14488bd336c5b1845cee83d3e631a1f8b4e9c5091ec539406e4a324f882d8"}, + {file = "watchdog-4.0.2-py3-none-win32.whl", hash = "sha256:0d8a7e523ef03757a5aa29f591437d64d0d894635f8a50f370fe37f913ce4e19"}, + {file = "watchdog-4.0.2-py3-none-win_amd64.whl", hash = "sha256:c344453ef3bf875a535b0488e3ad28e341adbd5a9ffb0f7d62cefacc8824ef2b"}, + {file = "watchdog-4.0.2-py3-none-win_ia64.whl", hash = "sha256:baececaa8edff42cd16558a639a9b0ddf425f93d892e8392a56bf904f5eff22c"}, + {file = "watchdog-4.0.2.tar.gz", hash = "sha256:b4dfbb6c49221be4535623ea4474a4d6ee0a9cef4a80b20c28db4d858b64e270"}, ] [package.extras] @@ -5592,13 +5694,13 @@ files = [ [[package]] name = "webob" -version = "1.8.7" +version = "1.8.8" description = "WSGI request and response object" optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "WebOb-1.8.7-py2.py3-none-any.whl", hash = "sha256:73aae30359291c14fa3b956f8b5ca31960e420c28c1bec002547fb04928cf89b"}, - {file = "WebOb-1.8.7.tar.gz", hash = "sha256:b64ef5141be559cfade448f044fa45c2260351edcb6a8ef6b7e00c7dcef0c323"}, + {file = "WebOb-1.8.8-py2.py3-none-any.whl", hash = "sha256:b60ba63f05c0cf61e086a10c3781a41fcfe30027753a8ae6d819c77592ce83ea"}, + {file = "webob-1.8.8.tar.gz", hash = "sha256:2abc1555e118fc251e705fc6dc66c7f5353bb9fbfab6d20e22f1c02b4b71bcee"}, ] [package.extras] @@ -5756,13 +5858,13 @@ jupyter = ["ipytree (>=0.2.2)", "ipywidgets (>=8.0.0)", "notebook"] [[package]] name = "zipp" -version = "3.19.2" +version = "3.20.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"}, - {file = "zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19"}, + {file = "zipp-3.20.0-py3-none-any.whl", hash = "sha256:58da6168be89f0be59beb194da1250516fdaa062ccebd30127ac65d30045e10d"}, + {file = "zipp-3.20.0.tar.gz", hash = "sha256:0145e43d89664cfe1a2e533adc75adafed82fe2da404b4bbb6b026c0157bdb31"}, ] [package.extras] @@ -5887,4 +5989,4 @@ viz = ["geoviews", "holoviews", "hvplot", "ipykernel", "itkwidgets", "matplotlib [metadata] lock-version = "2.0" python-versions = ">=3.9, <4" -content-hash = "fd35163130af79e22d0ddeed70051e81b2881adabdb24f125ee71772f1c220a7" +content-hash = "38d4082978f66a07caeea2a453769bdf945b44756efeacce68699148488fe17d" diff --git a/pyposeidon/boundary.py b/pyposeidon/boundary.py index 7ba181e2..966480e2 100644 --- a/pyposeidon/boundary.py +++ b/pyposeidon/boundary.py @@ -16,6 +16,7 @@ import logging import shapely from tqdm.auto import tqdm +from pyposeidon.tools import to_geodataframe from pyposeidon.utils.coastfix import simplify import sys @@ -56,7 +57,7 @@ def __init__(self, **kwargs): elif isinstance(coastlines, str): logger.info("reading {}".format(coastlines)) - coasts = gp.GeoDataFrame.from_file(coastlines) + coasts = to_geodataframe(coastlines) # check coastlines if coasts.buffer(0).is_valid.all() and (coasts.buffer(0).boundary.geom_type == "LineString").all(): self.coasts = gp.GeoDataFrame(geometry=coasts.buffer(0)) @@ -96,7 +97,7 @@ def __init__(self, **kwargs): else: try: - self.geometry = gp.read_file(geometry) + self.geometry = to_geodataframe(geometry) except: logger.warning("geometry is not a file, trying with geopandas Dataset") if isinstance(geometry, gp.GeoDataFrame): @@ -107,7 +108,7 @@ def __init__(self, **kwargs): else: try: - self.geometry = gp.read_file(geometry) + self.geometry = to_geodataframe(geometry) except: logger.warning("geometry is not a file, trying with geopandas Dataset") if isinstance(geometry, gp.GeoDataFrame): diff --git a/pyposeidon/d3d.py b/pyposeidon/d3d.py index b3d1984d..ddacc63a 100644 --- a/pyposeidon/d3d.py +++ b/pyposeidon/d3d.py @@ -30,6 +30,7 @@ import pyposeidon.meteo as pmeteo import pyposeidon.dem as pdem from pyposeidon.paths import DATA_PATH +from pyposeidon.tools import to_geodataframe from pyposeidon.utils.get_value import get_value from pyposeidon.utils.converter import myconverter from pyposeidon.utils import data @@ -103,7 +104,7 @@ def __init__(self, **kwargs): self.lat_max = self.geometry["lat_max"] elif isinstance(self.geometry, str): try: - geo = gp.GeoDataFrame.from_file(self.geometry) + geo = tools.to_geodataframe(self.geometry) except: logger.error("geometry argument not a valid geopandas file") sys.exit(1) diff --git a/pyposeidon/dem_tools.py b/pyposeidon/dem_tools.py index 9c7134de..138164aa 100644 --- a/pyposeidon/dem_tools.py +++ b/pyposeidon/dem_tools.py @@ -31,6 +31,7 @@ ) from pyposeidon.utils.pos import to_st, to_global_pos, to_sq import pyposeidon.dem as pdem +from pyposeidon.tools import to_geodataframe # logging setup import logging @@ -125,7 +126,7 @@ def fix(dem, coastline, **kwargs): # define coastline try: - shp = gp.GeoDataFrame.from_file(coastline) + shp = to_geodataframe(coastline) except: shp = gp.GeoDataFrame(coastline) diff --git a/pyposeidon/schism.py b/pyposeidon/schism.py index 0c4f3589..520e6705 100644 --- a/pyposeidon/schism.py +++ b/pyposeidon/schism.py @@ -34,6 +34,7 @@ import pyposeidon.meteo as pmeteo import pyposeidon.dem as pdem from pyposeidon.paths import DATA_PATH +from pyposeidon.tools import to_geodataframe from pyposeidon.utils.get_value import get_value from pyposeidon.utils.converter import myconverter from pyposeidon.utils.cpoint import closest_node @@ -122,7 +123,7 @@ def __init__(self, **kwargs): logger.warning("geometry is 'global'") elif isinstance(self.geometry, str): try: - geo = gp.GeoDataFrame.from_file(self.geometry) + geo = to_geodataframe(self.geometry) except: logger.error("geometry argument not a valid geopandas file") sys.exit(1) @@ -141,7 +142,7 @@ def __init__(self, **kwargs): if coastlines is not None: try: - coast = gp.GeoDataFrame.from_file(coastlines) + coast = to_geodataframe(coastlines) except: coast = gp.GeoDataFrame(coastlines) diff --git a/pyposeidon/tools.py b/pyposeidon/tools.py index ec91e77f..095ed610 100644 --- a/pyposeidon/tools.py +++ b/pyposeidon/tools.py @@ -583,3 +583,14 @@ def get_netcdf_encoding( ) update_or_add(encoding, var, params) return encoding + + +def to_geodataframe( + path: str | os.PathLike[str], + **kwargs: T.Any, +) -> gpd.GeoDataFrame: + if str(path).endswith("parquet") or str(path).endswith("pq"): + gdf = gpd.read_parquet(path=path, **kwargs) + else: + gdf = gpd.read_file(filename=path, **kwargs) + return gdf diff --git a/pyposeidon/utils/post.py b/pyposeidon/utils/post.py index af69dc16..9381aa9c 100644 --- a/pyposeidon/utils/post.py +++ b/pyposeidon/utils/post.py @@ -8,6 +8,7 @@ import glob import pyposeidon +from pyposeidon.tools import to_geodataframe from pyposeidon.utils import data from pyposeidon.utils.statistics import get_stats from pyposeidon.utils.obs import get_obs_data @@ -202,7 +203,7 @@ def to_thalassa(folder, **kwargs): ) out.to_netcdf(output_file, encoding=encoding) # save netcdf - stations = gp.GeoDataFrame.from_file(b.obs) + stations = to_geodataframe(b.obs) # assign unique id if "id" not in stations.columns: @@ -251,7 +252,7 @@ def to_obs(folder, **kwargs): json_file = os.path.join(folder, "{}_model.json".format(tag)) b = pyposeidon.model.read(json_file) - stations = gp.GeoDataFrame.from_file(b.obs) + stations = to_geodataframe(b.obs) # assign unique id if "id" not in stations.columns: diff --git a/pyposeidon/utils/pplot.py b/pyposeidon/utils/pplot.py index 560b442b..8f7af645 100644 --- a/pyposeidon/utils/pplot.py +++ b/pyposeidon/utils/pplot.py @@ -23,6 +23,7 @@ import sys import os +# from pyposeidon.tools import to_geodataframe ffmpeg = sys.exec_prefix + "/bin/ffmpeg" os.environ["FFMPEG_BINARY"] = ffmpeg @@ -637,7 +638,7 @@ def qframes(self, ax=None, u=None, v=None, scale=0.01, color="k", **kwargs): # if cr is not None: # try: - # coastl = gp.GeoDataFrame.from_file(cr) + # coastl = to_geodataframe(cr) # except: # coastl = gp.GeoDataFrame(cr) # coastl.plot(ax=ax, **c_attrs) @@ -754,7 +755,7 @@ def frames(self, **kwargs): # if cr is not None: TO DO # try: - # coastl = gp.GeoDataFrame.from_file(cr) + # coastl = to_geodataframe(cr) # except: # coastl = gp.GeoDataFrame(cr) # coastl.plot(ax=ax, **c_attrs) diff --git a/pyproject.toml b/pyproject.toml index 83d26eaa..97201d15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,9 +47,10 @@ joblib = "*" llvmlite = "*" netCDF4 = "*" numcodecs = "*" -numpy = ">=1.20, <2.0" +numpy = "*" pandas = "*" psutil = "*" +pyarrow = "*" pydap = ">=3.4.0" pymap3d = "*" pyogrio = "*" @@ -62,7 +63,6 @@ scipy = "*" searvey = "*" setuptools = "*" Shapely = ">=2" -#Shapely = { url = "https://github.com/shapely/shapely/archive/refs/tags/1.7.1.zip" } tqdm = "*" xarray = "*" zarr = "*" diff --git a/tests/test_boundary.py b/tests/test_boundary.py index 7d19d75b..c0c77959 100644 --- a/tests/test_boundary.py +++ b/tests/test_boundary.py @@ -1,14 +1,15 @@ -import pyposeidon.boundary as pb -import pytest import geopandas as gp +import pytest +import pyposeidon.boundary as pb from . import DATA_DIR +from pyposeidon.tools import to_geodataframe noaa = DATA_DIR / "bl.zip" COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() -land = gp.read_file(COAST_FILE) +land = to_geodataframe(COAST_FILE) coast = gp.GeoDataFrame(geometry=land.boundary) INPUTS = pytest.mark.parametrize("input", [land, coast]) diff --git a/tests/test_dem_fix.py b/tests/test_dem_fix.py index 30bdbb5e..8b4bbc09 100644 --- a/tests/test_dem_fix.py +++ b/tests/test_dem_fix.py @@ -1,10 +1,9 @@ -import pyposeidon.dem as pdem -import pyposeidon.mesh as pmesh import pytest -import numpy as np -import geopandas as gp +import pyposeidon.dem as pdem +import pyposeidon.mesh as pmesh from . import DATA_DIR +from pyposeidon.tools import to_geodataframe COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() @@ -29,7 +28,7 @@ @pytest.fixture(scope="session") def coasts(): - coast = gp.read_file(COAST_FILE) + coast = to_geodataframe(COAST_FILE) return coast From 5de13afc31462f09c7b4b72cdf0de26319f5b337 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Thu, 22 Aug 2024 12:46:55 +0300 Subject: [PATCH 25/26] CI: Stop running actions on `dev` branch. We already run them in the PR! --- .github/workflows/conda_pip.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/conda_pip.yml b/.github/workflows/conda_pip.yml index 0fdeb9e1..85999385 100644 --- a/.github/workflows/conda_pip.yml +++ b/.github/workflows/conda_pip.yml @@ -1,7 +1,6 @@ --- name: "Conda + pip" - # Use login shell everywhere # https://github.com/mamba-org/setup-micromamba/tree/fcc371cea11af9012e5e916ab2dab44b42acdaaa#about-login-shells @@ -10,7 +9,6 @@ on: branches: - "main" - "master" - - "dev" paths: - "**.py" - ".github/workflows/*.yml" @@ -26,7 +24,6 @@ on: - "locks/*" jobs: - run-linters: name: "Run linters" runs-on: "ubuntu-latest" @@ -56,9 +53,9 @@ jobs: matrix: # os: [ "ubuntu-latest", "macos-latest" ] # mpi: [ "mpich", "openmpi" ] - os: [ "ubuntu-latest"] - mpi: [ "openmpi" ] - python: [ "3.9", "3.10", "3.11", "3.12" ] + os: ["ubuntu-latest"] + mpi: ["openmpi"] + python: ["3.9", "3.10", "3.11", "3.12"] env: SCHISM_ENV: "SCHISM_ENV" @@ -85,7 +82,6 @@ jobs: echo export MAMBA_EXE=$(which micromamba) | tee -a ~/.bashrc echo export MAMBA_ROOT_PREFIX=~/micromamba | tee -a ~/.bashrc - run: which micromamba - - name: "Create ~/.condarc" run: | rm -rf ~/.condarc @@ -99,7 +95,6 @@ jobs: - conda-forge EOF - run: cat ~/.condarc - - name: "Cache ${{ env.SCHISM_ENV }}" uses: actions/cache@v3 id: cache-SCHISM_ENV From 045232a6fb3483618786525970c8945897dc5be6 Mon Sep 17 00:00:00 2001 From: Panos Mavrogiorgos Date: Thu, 22 Aug 2024 12:47:45 +0300 Subject: [PATCH 26/26] test: xfail jigsaw + buffering Reference: https://github.com/ec-jrc/pyPoseidon/issues/196 --- tests/test_mesh.py | 6 +++--- tests/test_mesh_global.py | 44 +++++++++++++++++++-------------------- 2 files changed, 24 insertions(+), 26 deletions(-) diff --git a/tests/test_mesh.py b/tests/test_mesh.py index e97d8ac8..1c6db236 100644 --- a/tests/test_mesh.py +++ b/tests/test_mesh.py @@ -19,14 +19,14 @@ @WINDOWS -@pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) -def test_answer(tmpdir, window, ggor): +@pytest.mark.parametrize("mesh_generator", ["jigsaw", "gmsh"]) +def test_answer(tmpdir, window, mesh_generator): mesh = pmesh.set( type="tri2d", geometry=window, coastlines=COAST_FILE, rpath=str(tmpdir) + "/", - mesh_generator=ggor, + mesh_generator=mesh_generator, ) check = np.isnan(mesh.Dataset.depth.values).sum() == 0 diff --git a/tests/test_mesh_global.py b/tests/test_mesh_global.py index eff2b292..a3e5db3b 100644 --- a/tests/test_mesh_global.py +++ b/tests/test_mesh_global.py @@ -1,10 +1,9 @@ -import os +import sys -import geopandas as gp import numpy as np -import pyposeidon.mesh as pmesh import pytest +import pyposeidon.mesh as pmesh from . import DATA_DIR DEM_FILE = (DATA_DIR / "dem.nc").as_posix() @@ -12,24 +11,26 @@ COAST_FILE = (DATA_DIR / "ocean.parquet").as_posix() -@pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) -@pytest.mark.parametrize("bgmesh", [None, DEM_FILE]) -@pytest.mark.parametrize("bindings", [True, False]) +@pytest.mark.parametrize("mesh_generator,use_bindings", [("jigsaw", None), ("gmsh", True), ("gmsh", False)]) +@pytest.mark.parametrize("dem_source", [None, DEM_FILE]) @pytest.mark.parametrize("cbuffer", [None, 0.01]) -def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings, cbuffer): +def test_io(pytestconfig, tmpdir, mesh_generator, use_bindings, dem_source, cbuffer): # Skip the test unless --runslow has been passed - if bgmesh is not None: + if dem_source is not None: if not pytestconfig.getoption("--runslow"): pytest.skip("slow test") + if mesh_generator == "jigsaw" and cbuffer is not None and sys.platform != "darwin": + pytest.xfail("jigsaw + buffer is failing on linux: https://github.com/ec-jrc/pyPoseidon/issues/84") + mesh = pmesh.set( type="tri2d", geometry="global", coastlines=COAST_FILE, rpath=str(tmpdir) + "/", - mesh_generator=ggor, - dem_source=bgmesh, - use_bindings=bindings, + mesh_generator=mesh_generator, + dem_source=dem_source, + use_bindings=use_bindings, cbuffer=cbuffer, ) @@ -58,28 +59,25 @@ def test_io(pytestconfig, tmpdir, ggor, bgmesh, bindings, cbuffer): @pytest.mark.schism -@pytest.mark.parametrize("ggor", ["jigsaw", "gmsh"]) -@pytest.mark.parametrize("bgmesh", [None, DEM_FILE]) -@pytest.mark.parametrize("bindings", [True, False]) +@pytest.mark.parametrize("mesh_generator,use_bindings", [("jigsaw", None), ("gmsh", True), ("gmsh", False)]) +@pytest.mark.parametrize("dem_source", [None, DEM_FILE]) @pytest.mark.parametrize("cbuffer", [None, 0.01]) -def test_validate(pytestconfig, tmpdir, ggor, cbuffer, bgmesh, bindings): - if bgmesh is not None: +def test_validate(pytestconfig, tmpdir, mesh_generator, use_bindings, dem_source, cbuffer): + if dem_source is not None: if not pytestconfig.getoption("--runslow"): pytest.skip("slow test") - if ggor == "jigsaw": - pytest.xfail("Fixing these is a WIP") - # if ggor == "jigsaw": - # pytest.xfail("Fixing these is a WIP") + if mesh_generator == "jigsaw" and cbuffer is not None and sys.platform != "darwin": + pytest.xfail("jigsaw + buffer is failing on linux: https://github.com/ec-jrc/pyPoseidon/issues/84") mesh = pmesh.set( type="tri2d", geometry="global", coastlines=COAST_FILE, rpath=str(tmpdir) + "/", - mesh_generator=ggor, - dem_source=bgmesh, - use_bindings=bindings, + mesh_generator=mesh_generator, + dem_source=dem_source, + use_bindings=use_bindings, cbuffer=cbuffer, )