From d03d7b8050f976360e3fd501ae6838757cb0ff59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 22:04:14 +0000 Subject: [PATCH 1/8] Bump prefix-dev/setup-pixi from 0.7.0 to 0.8.1 Bumps [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) from 0.7.0 to 0.8.1. - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](https://github.com/prefix-dev/setup-pixi/compare/v0.7.0...v0.8.1) --- updated-dependencies: - dependency-name: prefix-dev/setup-pixi dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 93699fa..83c1224 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@v4 - if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' uses: julia-actions/setup-julia@v2 - - uses: prefix-dev/setup-pixi@v0.7.0 + - uses: prefix-dev/setup-pixi@v0.8.1 with: pixi-version: v0.22.0 # cache: true From 64c547c50a382199f4c70b6606c6643f35a9db87 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 17:56:16 +0000 Subject: [PATCH 2/8] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v5.0.0) - [github.com/astral-sh/ruff-pre-commit: v0.4.4 → v0.12.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.4...v0.12.4) - [github.com/dosisod/refurb: v2.0.0 → v2.1.0](https://github.com/dosisod/refurb/compare/v2.0.0...v2.1.0) - [github.com/executablebooks/mdformat: 0.7.17 → 0.7.22](https://github.com/executablebooks/mdformat/compare/0.7.17...0.7.22) - [github.com/codespell-project/codespell: v2.2.6 → v2.4.1](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.4.1) --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c895a37..008d01e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-added-large-files args: ['--maxkb=100'] @@ -25,16 +25,16 @@ repos: - id: python-use-type-annotations - id: text-unicode-replacement-char - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.4 + rev: v0.12.4 hooks: - id: ruff - id: ruff-format - repo: https://github.com/dosisod/refurb - rev: v2.0.0 + rev: v2.1.0 hooks: - id: refurb - repo: https://github.com/executablebooks/mdformat - rev: 0.7.17 + rev: 0.7.22 hooks: - id: mdformat additional_dependencies: [ @@ -43,7 +43,7 @@ repos: ] args: [--wrap, "88"] - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.4.1 hooks: - id: codespell - repo: meta From 3d06d7e5388f0f894707239245630af37c77a10a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 17:57:42 +0000 Subject: [PATCH 3/8] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/ISSUE_TEMPLATE/enhancement.md | 2 +- src/pytask_julia/serialization.py | 2 +- tests/conftest.py | 4 ++-- tests/test_collect.py | 6 +++--- tests/test_config.py | 2 +- tests/test_execute.py | 22 +++++++++++----------- tests/test_normal_execution_w_plugin.py | 2 +- tests/test_parallel.py | 4 ++-- tests/test_parametrize.py | 2 +- tests/test_shared.py | 3 ++- 10 files changed, 25 insertions(+), 24 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md index dec2fab..822c3cb 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -8,7 +8,7 @@ ______________________________________________________________________ #### Is your feature request related to a problem? Provide a description of what the problem is, e.g. "I wish I could use pytask-julia to -do \[...\]". +do [...]". #### Describe the solution you'd like diff --git a/src/pytask_julia/serialization.py b/src/pytask_julia/serialization.py index 5beb6b4..ee55b85 100644 --- a/src/pytask_julia/serialization.py +++ b/src/pytask_julia/serialization.py @@ -11,7 +11,7 @@ from pytask import PTask from pytask import PTaskWithPath -__all__ = ["create_path_to_serialized", "serialize_keyword_arguments", "SERIALIZERS"] +__all__ = ["SERIALIZERS", "create_path_to_serialized", "serialize_keyword_arguments"] _HIDDEN_FOLDER = ".pytask/pytask-julia" diff --git a/tests/conftest.py b/tests/conftest.py index 74128c6..1bf3fa1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,7 +20,7 @@ parametrize_parse_code_serializer_suffix = pytest.mark.parametrize( - "parse_config_code, serializer, suffix", + ("parse_config_code", "serializer", "suffix"), [ ("import JSON; config = JSON.parse(read(ARGS[1], String))", "json", ".json"), ("import YAML; config = YAML.load_file(ARGS[1])", "yaml", ".yaml"), @@ -87,6 +87,6 @@ def invoke(self, *args, **kwargs): return super().invoke(*args, **kwargs) -@pytest.fixture() +@pytest.fixture def runner(): return CustomCliRunner() diff --git a/tests/test_collect.py b/tests/test_collect.py index 7dafc0e..53a3e35 100644 --- a/tests/test_collect.py +++ b/tests/test_collect.py @@ -4,14 +4,14 @@ import pytest from pytask import Mark + from pytask_julia.collect import SERIALIZERS from pytask_julia.collect import _parse_julia_mark from pytask_julia.collect import _parse_project - from tests.conftest import ROOT -@pytest.mark.unit() +@pytest.mark.unit @pytest.mark.parametrize( ( "mark", @@ -91,7 +91,7 @@ def test_parse_julia_mark( # noqa: PLR0913 assert out == expected -@pytest.mark.unit() +@pytest.mark.unit @pytest.mark.parametrize( ("project", "root", "expected"), [ diff --git a/tests/test_config.py b/tests/test_config.py index efe4f2f..b6adf01 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -4,7 +4,7 @@ from pytask import build -@pytest.mark.end_to_end() +@pytest.mark.end_to_end def test_marker_is_configured(tmp_path): session = build(paths=tmp_path) assert "julia" in session.config["markers"] diff --git a/tests/test_execute.py b/tests/test_execute.py index e206612..718b27b 100644 --- a/tests/test_execute.py +++ b/tests/test_execute.py @@ -11,14 +11,14 @@ from pytask import Task from pytask import build from pytask import cli -from pytask_julia.execute import pytask_execute_task_setup +from pytask_julia.execute import pytask_execute_task_setup from tests.conftest import ROOT from tests.conftest import needs_julia from tests.conftest import parametrize_parse_code_serializer_suffix -@pytest.mark.unit() +@pytest.mark.unit def test_pytask_execute_task_setup_missing_julia(monkeypatch): """Make sure that the task setup raises errors.""" # Act like julia is installed since we do not test this. @@ -37,7 +37,7 @@ def test_pytask_execute_task_setup_missing_julia(monkeypatch): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix @pytest.mark.parametrize("depends_on", ["'in_1.txt'", "['in_1.txt', 'in_2.txt']"]) def test_run_jl_script( # noqa: PLR0913 @@ -86,7 +86,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix def test_run_jl_script_w_task_decorator( runner, tmp_path, parse_config_code, serializer, suffix @@ -123,7 +123,7 @@ def run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix def test_raise_error_if_julia_is_not_found( tmp_path, @@ -169,7 +169,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix def test_run_jl_script_w_wrong_cmd_option( runner, @@ -208,7 +208,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @pytest.mark.parametrize("n_threads", [2, 3]) @parametrize_parse_code_serializer_suffix def test_check_passing_cmd_line_options( # noqa: PLR0913 @@ -249,7 +249,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @pytest.mark.xfail( condition=sys.platform == "win32" and os.environ.get("CI") == "true", reason="Test folder and repo are on different drives causing relpath to fail.", @@ -303,7 +303,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @pytest.mark.xfail( condition=sys.platform == "win32" and os.environ.get("CI") == "true", reason="Test folder and repo are on different drives causing relpath to fail.", @@ -349,7 +349,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end def test_run_jl_script_w_custom_serializer(runner, tmp_path): task_source = f""" import pytask @@ -382,7 +382,7 @@ def task_run_jl_script(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end def test_run_jl_script_fails_w_multiple_markers(runner, tmp_path): task_source = """ import pytask diff --git a/tests/test_normal_execution_w_plugin.py b/tests/test_normal_execution_w_plugin.py index 1d71ade..bc83230 100644 --- a/tests/test_normal_execution_w_plugin.py +++ b/tests/test_normal_execution_w_plugin.py @@ -9,7 +9,7 @@ from pytask import cli -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @pytest.mark.parametrize( "dependencies", [(), ("in.txt",), ("in_1.txt", "in_2.txt")], diff --git a/tests/test_parallel.py b/tests/test_parallel.py index 8806418..ea87888 100644 --- a/tests/test_parallel.py +++ b/tests/test_parallel.py @@ -27,7 +27,7 @@ @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix def test_parallel_parametrization_over_source_files_w_loop( runner, @@ -75,7 +75,7 @@ def task_execute_julia(): @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix def test_parallel_parametrization_over_source_file_w_loop( runner, diff --git a/tests/test_parametrize.py b/tests/test_parametrize.py index 54606ce..4c2b43c 100644 --- a/tests/test_parametrize.py +++ b/tests/test_parametrize.py @@ -12,7 +12,7 @@ @needs_julia -@pytest.mark.end_to_end() +@pytest.mark.end_to_end @parametrize_parse_code_serializer_suffix def test_parametrized_execution_of_jl_script_w_loop( runner, diff --git a/tests/test_shared.py b/tests/test_shared.py index 39a0206..d9f9bb4 100644 --- a/tests/test_shared.py +++ b/tests/test_shared.py @@ -3,10 +3,11 @@ from contextlib import ExitStack as does_not_raise # noqa: N813 import pytest + from pytask_julia.shared import julia -@pytest.mark.unit() +@pytest.mark.unit @pytest.mark.parametrize( ("args", "kwargs", "expectation", "expected"), [ From 09ba22c8cbd28ec0e26b6cce4eea00d7a80ccbdb Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 26 Jul 2025 12:44:08 +0200 Subject: [PATCH 4/8] Standardize file size limit to 25KB --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 008d01e..49c39ca 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: rev: v5.0.0 hooks: - id: check-added-large-files - args: ['--maxkb=100'] + args: ['--maxkb=25'] - id: check-case-conflict - id: check-merge-conflict - id: check-vcs-permalinks From 252049b0f4bd22084a4b71fb551a776259a5bcfd Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 26 Jul 2025 13:11:21 +0200 Subject: [PATCH 5/8] Fix. --- pyproject.toml | 2 +- src/pytask_julia/execute.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9fc0715..a39ad2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -143,4 +143,4 @@ julia = ">=1.0.0" [tool.pixi.feature.test.tasks] setup-julia = "julia --project=. --eval 'import Pkg; Pkg.instantiate()'" -test = { cmd = "pytest --cov src --cov tests", depends_on = ["setup-julia"] } +test = { cmd = "pytest --cov src --cov tests", depends-on = ["setup-julia"] } diff --git a/src/pytask_julia/execute.py b/src/pytask_julia/execute.py index f090df6..3d73ae9 100644 --- a/src/pytask_julia/execute.py +++ b/src/pytask_julia/execute.py @@ -36,7 +36,7 @@ def pytask_execute_task_setup(task: PTask) -> None: _, _, serializer, _, _ = julia(**marks[0].kwargs) serialized_node = task.depends_on["_serialized"] - path: Path = serialized_node.value # type: ignore[attr-defined] + path: Path = serialized_node.value # type: ignore[assignment] path.parent.mkdir(parents=True, exist_ok=True) kwargs = collect_keyword_arguments(task) serialize_keyword_arguments(serializer, path, kwargs) @@ -45,13 +45,13 @@ def pytask_execute_task_setup(task: PTask) -> None: def collect_keyword_arguments(task: PTask) -> dict[str, Any]: """Collect keyword arguments for function.""" kwargs: dict[str, Any] = { - **tree_map( # type: ignore[dict-item] + **tree_map( lambda x: str(x.path) if isinstance(x, PPathNode) else str(x.value), - task.depends_on, + task.depends_on, # type: ignore[arg-type] ), - **tree_map( # type: ignore[dict-item] + **tree_map( lambda x: str(x.path) if isinstance(x, PPathNode) else str(x.value), - task.produces, + task.produces, # type: ignore[arg-type] ), } kwargs.pop("_script") From 114b095ed55ec7d7258a6b83cd2ddb31343cef34 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 26 Jul 2025 13:18:44 +0200 Subject: [PATCH 6/8] fix. --- pixi.lock | 3457 ++++++++++++++++++------------------------------ pyproject.toml | 3 +- 2 files changed, 1265 insertions(+), 2195 deletions(-) diff --git a/pixi.lock b/pixi.lock index cf1bd88..544e5ba 100644 --- a/pixi.lock +++ b/pixi.lock @@ -1,4 +1,4 @@ -version: 5 +version: 6 environments: default: channels: @@ -75,7 +75,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/76/6b/e8f4696194fdf3c19422f2a80ac10e03a9322f93e6c9ef57a89e03a8c8f7/coverage-7.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -97,7 +97,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/82/ec/ac6a2e917300713593bce3f4efe2002819a8bd30c3051317ec86c73b2e8d/SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/b3/9a/2b75087549910ebd2be9894bfd89450668b2455094a8f2ba2b67072f15a5/types_PyYAML-6.0.12.20240311-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -158,7 +158,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/cf/964bb667ea37d64b25f04d4cfaf6232cdb7a6472e1f4a4faf0459ddcec40/coverage-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -180,7 +180,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/3c/16/a731b8f6de7cdcd96add746ba84a2690edd0005f7e2b1f5fbd873a30686c/SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/b3/9a/2b75087549910ebd2be9894bfd89450668b2455094a8f2ba2b67072f15a5/types_PyYAML-6.0.12.20240311-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -222,7 +222,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/ea/3e/95278ef021d3b8bed98bcc5f10faf27e4c4bc0a63a6e0bd98529b1ba8d2e/SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/b3/9a/2b75087549910ebd2be9894bfd89450668b2455094a8f2ba2b67072f15a5/types_PyYAML-6.0.12.20240311-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -268,7 +268,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/83/34/e760f4e78b2aeb04a74ae7338f9c215570a256755ab0026336037ec8df75/SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/b3/9a/2b75087549910ebd2be9894bfd89450668b2455094a8f2ba2b67072f15a5/types_PyYAML-6.0.12.20240311-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ py310: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -345,7 +345,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/f8/81/e871b0d58ca5d6cc27d00b2f668ce09c4643ef00512341f3a592a81fb6cd/coverage-7.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/1c/2f/64628f6ae48e05f585e0eb3fb7399b52e240ef99f602107b445bf6be23ef/greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/24/35/945d5b10648fec9b20bcc6df8952d20bb3bba76413cd71c1fdbee98f5616/greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -365,7 +365,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/27/d5/9a62bcf8695a0d86687d3c7603976b128add3c581ca7b92a053914d88648/SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -427,7 +427,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/31/db/08d54dbc12fdfe5857b06105fd1235bdebb7da7c11cd1a0fae936556162a/coverage-7.5.0-cp310-cp310-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/a6/64/bea53c592e3e45799f7c8039a8ee7d6883c518eafef1fcae60beb776070f/greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -447,7 +447,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/99/59/a45bac8e77e461cbc9834a4f762e438a2b00d95268a3cf377e32a2589839/SQLAlchemy-2.0.29-cp310-cp310-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -487,7 +487,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/b4/31/fe6bc9dffaebd1e54dc73021b968ecaea28e2cfeafe1ce1c695312fa4714/SQLAlchemy-2.0.29-cp310-cp310-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -531,7 +531,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/29/82/3e4ca1381a3b0e80f03ba3fafbf047ed6c5f75ff4fd79f1726952c06f604/SQLAlchemy-2.0.29-cp310-cp310-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ py311: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -607,7 +607,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/76/6b/e8f4696194fdf3c19422f2a80ac10e03a9322f93e6c9ef57a89e03a8c8f7/coverage-7.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -626,7 +626,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/82/ec/ac6a2e917300713593bce3f4efe2002819a8bd30c3051317ec86c73b2e8d/SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -687,7 +687,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/cf/964bb667ea37d64b25f04d4cfaf6232cdb7a6472e1f4a4faf0459ddcec40/coverage-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -706,7 +706,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3c/16/a731b8f6de7cdcd96add746ba84a2690edd0005f7e2b1f5fbd873a30686c/SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -745,7 +745,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ea/3e/95278ef021d3b8bed98bcc5f10faf27e4c4bc0a63a6e0bd98529b1ba8d2e/SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -788,7 +788,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/83/34/e760f4e78b2aeb04a74ae7338f9c215570a256755ab0026336037ec8df75/SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ py312: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -864,7 +864,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fa/d9/ec4ba0913195d240d026670d41b91f3e5b9a8a143a385f93a09e97c90f5c/coverage-7.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -883,7 +883,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/0e/0aea34594a2bd84e8637b45490041ee3d9107bc786053364bff2337dea8b/SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -944,7 +944,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/36/db/f4e17ffb5ac2d125c72ee3b235c2e04f85a4296a6a9e17730e218af113d8/coverage-7.5.0-cp312-cp312-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -963,7 +963,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/fd/9de60c18d5240382d8d1cfb86119455dae12da286cee8a25ca339f4e6228/SQLAlchemy-2.0.29-cp312-cp312-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -1002,7 +1002,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/52/ab/01710dfecb728a76ce2c8ef9877a5665e3b4230cc762c759fa5456d42fc3/SQLAlchemy-2.0.29-cp312-cp312-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -1045,7 +1045,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/06/1f/3e65bcc657a8632b743450416039a92528b229bd36f77e8d802fa828adac/SQLAlchemy-2.0.29-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ py38: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -1121,7 +1121,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/bb/e0/79df954b854d595d63edc061f714a1cf506e30412620025ba240807bd658/coverage-7.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/8a/74/498377804f8ebfb1efdfbe33e93cf3b29d77e207e9496f0c10912d5055b4/greenlet-3.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/13/af/8db0d63147c6362447eb49da60573b41aee5cf5864fe1e27bdbaf7060bd2/greenlet-3.0.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -1141,7 +1141,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/9f/5f639ab2c63eb07eada0ed3333643a1e4aa137a542a14967065b64af205c/SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -1202,7 +1202,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/fe/75/d235d6fc44d06823a5ddb46596c891722c3ffcdba2f6358803842ea88945/coverage-7.5.0-cp38-cp38-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/3d/4a/c9590b31bfefe089d8fae72201c77761a63c1685c7f511a692a267d7f25e/greenlet-3.0.3-cp38-cp38-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -1222,7 +1222,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/bb/53/332105ba836184be6db98d3d8f586d300dff549167c7fcfaca577b557039/SQLAlchemy-2.0.29-cp38-cp38-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -1261,7 +1261,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/28/8f/f024eed88a23a4708e992406084b2848e2121215d83d30661306544a60a1/SQLAlchemy-2.0.29-cp38-cp38-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -1304,7 +1304,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/26/cf/d1a63a928ed699a6f9b8bb8543ecb9a84482652b437b9441ed3a900adec6/SQLAlchemy-2.0.29-cp38-cp38-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ py39: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -1381,7 +1381,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/12/7f/9b787ffc31bc39aa9e98c7005b698e7c6539bd222043e4a9c83b83c782a2/coverage-7.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/9d/ea/8bc7ed08ba274bdaff08f2cb546d832b8f44af267e03ca6e449840486915/greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/af/05/b7e068070a6c143f34dfcd7e9144684271b8067e310f6da68269580db1d8/greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -1401,7 +1401,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/69/da/af5a4c23729473bec1139822aabc36e2888e78bdf805de257ee0cfcf361f/SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -1463,7 +1463,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/62/18/5573216d5b8db7d9f29189350dcd81830a03a624966c35f8201ae10df09c/coverage-7.5.0-cp39-cp39-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/0b/8a/f5140c8713f919af0e98e6aaa40cb20edaaf3739d18c4a077581e2422ac4/greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -1483,7 +1483,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/20/5a/cc15fc867f5b490e63e5f4d3c4c283eaf60cada1e01153818ce21690ce5c/SQLAlchemy-2.0.29-cp39-cp39-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -1523,7 +1523,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/11/0f/26e925e3349e484b3545377b79a5625a42f843cd6d5d1ac8a9a2f7512a7a/SQLAlchemy-2.0.29-cp39-cp39-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -1567,7 +1567,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/aa/f9/e9dd9baa7f569d5c0acc123dcb98286f6a219dca6970a00c83d996aed5c1/SQLAlchemy-2.0.29-cp39-cp39-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ test: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -1643,7 +1643,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/76/6b/e8f4696194fdf3c19422f2a80ac10e03a9322f93e6c9ef57a89e03a8c8f7/coverage-7.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -1662,7 +1662,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/82/ec/ac6a2e917300713593bce3f4efe2002819a8bd30c3051317ec86c73b2e8d/SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda @@ -1723,7 +1723,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/cf/964bb667ea37d64b25f04d4cfaf6232cdb7a6472e1f4a4faf0459ddcec40/coverage-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz + - pypi: https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl - pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl @@ -1742,7 +1742,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3c/16/a731b8f6de7cdcd96add746ba84a2690edd0005f7e2b1f5fbd873a30686c/SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ osx-arm64: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda @@ -1781,7 +1781,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ea/3e/95278ef021d3b8bed98bcc5f10faf27e4c4bc0a63a6e0bd98529b1ba8d2e/SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda @@ -1824,26 +1824,16 @@ environments: - pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/83/34/e760f4e78b2aeb04a74ae7338f9c215570a256755ab0026336037ec8df75/SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl - - pypi: . + - pypi: ./ packages: -- kind: conda - name: _libgcc_mutex - version: '0.1' - build: conda_forge - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 md5: d7c89558ba9fa0495403155b64376d81 license: None size: 2562 timestamp: 1578324546067 -- kind: conda - name: _openmp_mutex - version: '4.5' - build: 2_gnu +- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 md5: 73aaf86a425cc6e73fcf236a5a46396d depends: @@ -1855,13 +1845,7 @@ packages: license_family: BSD size: 23621 timestamp: 1650670423406 -- kind: conda - name: arpack - version: 3.8.0 - build: nompi_h0baa96a_101 - build_number: 101 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/arpack-3.8.0-nompi_h0baa96a_101.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/arpack-3.8.0-nompi_h0baa96a_101.tar.bz2 sha256: b38c3a51472332e4585ed38bddb181468876b61f68fa50c9c6ecb620a3cc1e0b md5: bad10a5b54a3aa9680c3ac1436b7e35d depends: @@ -1875,13 +1859,7 @@ packages: license_family: BSD size: 219365 timestamp: 1663242253645 -- kind: conda - name: arpack - version: 3.8.0 - build: nompi_hb44a6d1_101 - build_number: 101 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-64/arpack-3.8.0-nompi_hb44a6d1_101.tar.bz2 sha256: 09ca7dcde454db9adaceda45a16bcdaba94fbfcaf65778f1b0c2ce275d1ab200 md5: c3e6d37f2341f9c203c21bdc0c651156 depends: @@ -1894,13 +1872,12 @@ packages: license_family: BSD size: 199518 timestamp: 1663242548463 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl name: attrs version: 23.2.0 - url: https://files.pythonhosted.org/packages/e0/44/827b2a91a5816512fcaf3cc4ebc465ccd5d598c45cefa6703fcf4a79018f/attrs-23.2.0-py3-none-any.whl sha256: 99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1 requires_dist: - - importlib-metadata ; python_version < '3.8' + - importlib-metadata ; python_full_version < '3.8' - attrs[tests] ; extra == 'cov' - coverage[toml]>=5.3 ; extra == 'cov' - attrs[tests] ; extra == 'dev' @@ -1914,8 +1891,8 @@ packages: - zope-interface ; extra == 'docs' - attrs[tests-no-zope] ; extra == 'tests' - zope-interface ; extra == 'tests' - - mypy>=1.6 ; (platform_python_implementation == 'CPython' and python_version >= '3.8') and extra == 'tests-mypy' - - pytest-mypy-plugins ; (platform_python_implementation == 'CPython' and python_version >= '3.8') and extra == 'tests-mypy' + - mypy>=1.6 ; python_full_version >= '3.8' and platform_python_implementation == 'CPython' and extra == 'tests-mypy' + - pytest-mypy-plugins ; python_full_version >= '3.8' and platform_python_implementation == 'CPython' and extra == 'tests-mypy' - attrs[tests-mypy] ; extra == 'tests-no-zope' - cloudpickle ; platform_python_implementation == 'CPython' and extra == 'tests-no-zope' - hypothesis ; extra == 'tests-no-zope' @@ -1923,39 +1900,30 @@ packages: - pytest-xdist[psutil] ; extra == 'tests-no-zope' - pytest>=4.3.0 ; extra == 'tests-no-zope' requires_python: '>=3.7' -- kind: conda - name: bzip2 - version: 1.0.8 - build: h10d778d_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda + sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 + md5: 69b8b6202a07720f448be700e300ccf4 + depends: + - libgcc-ng >=12 + license: bzip2-1.0.6 + license_family: BSD + size: 254228 + timestamp: 1699279927352 +- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h10d778d_5.conda sha256: 61fb2b488928a54d9472113e1280b468a309561caa54f33825a3593da390b242 md5: 6097a6ca9ada32699b5fc4312dd6ef18 license: bzip2-1.0.6 license_family: BSD size: 127885 timestamp: 1699280178474 -- kind: conda - name: bzip2 - version: 1.0.8 - build: h93a5062_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h93a5062_5.conda sha256: bfa84296a638bea78a8bb29abc493ee95f2a0218775642474a840411b950fe5f md5: 1bbc659ca658bfd49a481b5ef7a0f40f license: bzip2-1.0.6 license_family: BSD size: 122325 timestamp: 1699280294368 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hcfcfb64_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda +- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-hcfcfb64_5.conda sha256: ae5f47a5c86fd6db822931255dcf017eb12f60c77f07dc782ccb477f7808aab2 md5: 26eb8ca6ea332b675e11704cce84a3be depends: @@ -1966,39 +1934,7 @@ packages: license_family: BSD size: 124580 timestamp: 1699280668742 -- kind: conda - name: bzip2 - version: 1.0.8 - build: hd590300_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda - sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8 - md5: 69b8b6202a07720f448be700e300ccf4 - depends: - - libgcc-ng >=12 - license: bzip2-1.0.6 - license_family: BSD - size: 254228 - timestamp: 1699279927352 -- kind: conda - name: c-ares - version: 1.28.1 - build: h10d778d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda - sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a - md5: d5eb7992227254c0e9a0ce71151f0079 - license: MIT - license_family: MIT - size: 152607 - timestamp: 1711819681694 -- kind: conda - name: c-ares - version: 1.28.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a md5: dcde58ff9a1f30b0037a2315d1846d1f depends: @@ -2007,291 +1943,242 @@ packages: license_family: MIT size: 168875 timestamp: 1711819445938 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: h56e8100_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda - sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 - md5: 63da060240ab8087b60d1357051ea7d6 +- conda: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.28.1-h10d778d_0.conda + sha256: fccd7ad7e3dfa6b19352705b33eb738c4c55f79f398e106e6cf03bab9415595a + md5: d5eb7992227254c0e9a0ce71151f0079 + license: MIT + license_family: MIT + size: 152607 + timestamp: 1711819681694 +- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda + sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb + md5: 2f4327a1cbe7f022401b236e915a5fef license: ISC - size: 155886 - timestamp: 1706843918052 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: h8857fd0_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda + size: 155432 + timestamp: 1706843687645 +- conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2024.2.2-h8857fd0_0.conda sha256: 54a794aedbb4796afeabdf54287b06b1d27f7b13b3814520925f4c2c80f58ca9 md5: f2eacee8c33c43692f1ccfd33d0f50b1 license: ISC size: 155665 timestamp: 1706843838227 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hbcca054_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda - sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb - md5: 2f4327a1cbe7f022401b236e915a5fef - license: ISC - size: 155432 - timestamp: 1706843687645 -- kind: conda - name: ca-certificates - version: 2024.2.2 - build: hf0a4a13_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.2.2-hf0a4a13_0.conda sha256: 49bc3439816ac72d0c0e0f144b8cc870fdcc4adec2e861407ec818d8116b2204 md5: fb416a1795f18dcc5a038bc2dc54edf9 license: ISC size: 155725 timestamp: 1706844034242 -- kind: pypi +- conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.2.2-h56e8100_0.conda + sha256: 4d587088ecccd393fec3420b64f1af4ee1a0e6897a45cfd5ef38055322cea5d0 + md5: 63da060240ab8087b60d1357051ea7d6 + license: ISC + size: 155886 + timestamp: 1706843918052 +- pypi: https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl name: click version: 8.1.7 - url: https://files.pythonhosted.org/packages/00/2e/d53fa4befbf2cfa713304affc7ca780ce4fc1fd8710527771b58311a3229/click-8.1.7-py3-none-any.whl sha256: ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28 requires_dist: - - colorama ; platform_system == 'Windows' - - importlib-metadata ; python_version < '3.8' + - colorama ; sys_platform == 'win32' + - importlib-metadata ; python_full_version < '3.8' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/2c/1a/aff8bb287a4b1400f69e09a53bd65de96aa5cee5691925b38731c67fc695/click_default_group-1.2.4-py2.py3-none-any.whl name: click-default-group version: 1.2.4 - url: https://files.pythonhosted.org/packages/2c/1a/aff8bb287a4b1400f69e09a53bd65de96aa5cee5691925b38731c67fc695/click_default_group-1.2.4-py2.py3-none-any.whl sha256: 9b60486923720e7fc61731bdb32b617039aba820e22e1c88766b1125592eaa5f requires_dist: - click - pytest ; extra == 'test' requires_python: '>=2.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl name: cloudpickle version: 3.0.0 - url: https://files.pythonhosted.org/packages/96/43/dae06432d0c4b1dc9e9149ad37b4ca8384cf6eb7700cd9215b177b914f0a/cloudpickle-3.0.0-py3-none-any.whl sha256: 246ee7d0c295602a036e86369c77fecda4ab17b506496730f2f576d9016fd9c7 requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl name: colorama version: 0.4.6 - url: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 - requires_python: '!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7' -- kind: pypi + requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*' +- pypi: https://files.pythonhosted.org/packages/12/7f/9b787ffc31bc39aa9e98c7005b698e7c6539bd222043e4a9c83b83c782a2/coverage-7.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/76/6b/e8f4696194fdf3c19422f2a80ac10e03a9322f93e6c9ef57a89e03a8c8f7/coverage-7.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: fea9d3ca80bcf17edb2c08a4704259dadac196fe5e9274067e7a20511fad1743 + sha256: db2de4e546f0ec4b2787d625e0b16b78e99c3e21bc1722b4977c0dddf11ca84e requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/30/73/b70ab57f11b62f5ca9a83f43cae752fbbb4417bea651875235c32eb2fc2e/coverage-7.5.0-cp311-cp311-win_amd64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/aa/56/31edd4baa132fe2b991437e0acf3e36c50418370044a89b65518e5581f4c/coverage-7.5.0-cp311-cp311-macosx_11_0_arm64.whl - sha256: 84921b10aeb2dd453247fd10de22907984eaf80901b578a5cf0bb1e279a587cb + sha256: 9c6384cc90e37cfb60435bbbe0488444e54b98700f727f16f64d8bfda0b84656 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/31/db/08d54dbc12fdfe5857b06105fd1235bdebb7da7c11cd1a0fae936556162a/coverage-7.5.0-cp310-cp310-macosx_10_9_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/71/cf/964bb667ea37d64b25f04d4cfaf6232cdb7a6472e1f4a4faf0459ddcec40/coverage-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl - sha256: e768d870801f68c74c2b669fc909839660180c366501d4cc4b87efd6b0eee375 + sha256: 432949a32c3e3f820af808db1833d6d1631664d53dd3ce487aa25d574e18ad1c requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/36/db/f4e17ffb5ac2d125c72ee3b235c2e04f85a4296a6a9e17730e218af113d8/coverage-7.5.0-cp312-cp312-macosx_10_9_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/30/73/b70ab57f11b62f5ca9a83f43cae752fbbb4417bea651875235c32eb2fc2e/coverage-7.5.0-cp311-cp311-win_amd64.whl - sha256: 9c6384cc90e37cfb60435bbbe0488444e54b98700f727f16f64d8bfda0b84656 + sha256: fed7a72d54bd52f4aeb6c6e951f363903bd7d70bc1cad64dd1f087980d309ab9 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/4c/26/b276e0c70cba5059becce2594a268a2731d5b4f2386e9a6afdf37ffa3d44/coverage-7.5.0-cp310-cp310-win_amd64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/fe/75/d235d6fc44d06823a5ddb46596c891722c3ffcdba2f6358803842ea88945/coverage-7.5.0-cp38-cp38-macosx_10_9_x86_64.whl - sha256: 9dd88fce54abbdbf4c42fb1fea0e498973d07816f24c0e27a1ecaf91883ce69e + sha256: 6782cd6216fab5a83216cc39f13ebe30adfac2fa72688c5a4d8d180cd52e8f6a requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/5b/c3/ce852a9f7b6855dd0409e4fa58d13b1b6ed947188c9753fa057254ea7b4d/coverage-7.5.0-cp38-cp38-macosx_11_0_arm64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/8d/4f/87ec7da194229cee7c71d837399d8cd9f57a75103b3e4b95a170e985ce9e/coverage-7.5.0-cp38-cp38-win_amd64.whl - sha256: eed462b4541c540d63ab57b3fc69e7d8c84d5957668854ee4e408b50e92ce26a + sha256: a898c11dca8f8c97b467138004a30133974aacd572818c383596f8d5b2eb04a9 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/62/18/5573216d5b8db7d9f29189350dcd81830a03a624966c35f8201ae10df09c/coverage-7.5.0-cp39-cp39-macosx_10_9_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/5b/c3/ce852a9f7b6855dd0409e4fa58d13b1b6ed947188c9753fa057254ea7b4d/coverage-7.5.0-cp38-cp38-macosx_11_0_arm64.whl - sha256: a898c11dca8f8c97b467138004a30133974aacd572818c383596f8d5b2eb04a9 + sha256: d0194d654e360b3e6cc9b774e83235bae6b9b2cac3be09040880bb0e8a88f4a1 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/71/cf/964bb667ea37d64b25f04d4cfaf6232cdb7a6472e1f4a4faf0459ddcec40/coverage-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/bb/e0/79df954b854d595d63edc061f714a1cf506e30412620025ba240807bd658/coverage-7.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 6afd2e84e7da40fe23ca588379f815fb6dbbb1b757c883935ed11647205111cb + sha256: e768d870801f68c74c2b669fc909839660180c366501d4cc4b87efd6b0eee375 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/76/6b/e8f4696194fdf3c19422f2a80ac10e03a9322f93e6c9ef57a89e03a8c8f7/coverage-7.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/c9/48/7d3c31064c5adcc743fe5370cf7e198cee06cc0e2d37b5cbe930691a3f54/coverage-7.5.0-cp39-cp39-win_amd64.whl - sha256: c58536f6892559e030e6924896a44098bc1290663ea12532c78cef71d0df8493 + sha256: fea9d3ca80bcf17edb2c08a4704259dadac196fe5e9274067e7a20511fad1743 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/7c/0e/e98d6c6d569d65ff3195f095e6b006b3d7780fd6182322a25e7dfe0d53d3/coverage-7.5.0-cp39-cp39-macosx_11_0_arm64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/12/7f/9b787ffc31bc39aa9e98c7005b698e7c6539bd222043e4a9c83b83c782a2/coverage-7.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: db2de4e546f0ec4b2787d625e0b16b78e99c3e21bc1722b4977c0dddf11ca84e + sha256: 33c020d3322662e74bc507fb11488773a96894aa82a622c35a5a28673c0c26f5 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/7c/31/5f5286d2a5e21e1fe5670629bb24c79bf46383a092e74e00077e7a178e5c/coverage-7.5.0-cp312-cp312-win_amd64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/62/18/5573216d5b8db7d9f29189350dcd81830a03a624966c35f8201ae10df09c/coverage-7.5.0-cp39-cp39-macosx_10_9_x86_64.whl - sha256: d0194d654e360b3e6cc9b774e83235bae6b9b2cac3be09040880bb0e8a88f4a1 + sha256: 427e1e627b0963ac02d7c8730ca6d935df10280d230508c0ba059505e9233475 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/8d/4f/87ec7da194229cee7c71d837399d8cd9f57a75103b3e4b95a170e985ce9e/coverage-7.5.0-cp38-cp38-win_amd64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/7c/0e/e98d6c6d569d65ff3195f095e6b006b3d7780fd6182322a25e7dfe0d53d3/coverage-7.5.0-cp39-cp39-macosx_11_0_arm64.whl - sha256: 33c020d3322662e74bc507fb11488773a96894aa82a622c35a5a28673c0c26f5 + sha256: eed462b4541c540d63ab57b3fc69e7d8c84d5957668854ee4e408b50e92ce26a requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/a8/ff/02c4bcff1025b4a788aa3933e1cd1474d79de43e0d859273b3319ef43cd3/coverage-7.5.0-cp310-cp310-macosx_11_0_arm64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/31/db/08d54dbc12fdfe5857b06105fd1235bdebb7da7c11cd1a0fae936556162a/coverage-7.5.0-cp310-cp310-macosx_10_9_x86_64.whl - sha256: 432949a32c3e3f820af808db1833d6d1631664d53dd3ce487aa25d574e18ad1c + sha256: 2bd7065249703cbeb6d4ce679c734bef0ee69baa7bff9724361ada04a15b7e3b requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/aa/56/31edd4baa132fe2b991437e0acf3e36c50418370044a89b65518e5581f4c/coverage-7.5.0-cp311-cp311-macosx_11_0_arm64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/a8/ff/02c4bcff1025b4a788aa3933e1cd1474d79de43e0d859273b3319ef43cd3/coverage-7.5.0-cp310-cp310-macosx_11_0_arm64.whl - sha256: 2bd7065249703cbeb6d4ce679c734bef0ee69baa7bff9724361ada04a15b7e3b + sha256: 84921b10aeb2dd453247fd10de22907984eaf80901b578a5cf0bb1e279a587cb requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/bb/e0/79df954b854d595d63edc061f714a1cf506e30412620025ba240807bd658/coverage-7.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/4c/26/b276e0c70cba5059becce2594a268a2731d5b4f2386e9a6afdf37ffa3d44/coverage-7.5.0-cp310-cp310-win_amd64.whl - sha256: 6782cd6216fab5a83216cc39f13ebe30adfac2fa72688c5a4d8d180cd52e8f6a + sha256: 6afd2e84e7da40fe23ca588379f815fb6dbbb1b757c883935ed11647205111cb requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/c3/bc/d7e832280f269be9e8d46cff5c4031b4840f1844674dc53ad93c5a9c1da6/coverage-7.5.0-cp312-cp312-macosx_11_0_arm64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/f8/81/e871b0d58ca5d6cc27d00b2f668ce09c4643ef00512341f3a592a81fb6cd/coverage-7.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 85a5dbe1ba1bf38d6c63b6d2c42132d45cbee6d9f0c51b52c59aa4afba057517 + sha256: cbe6581fcff7c8e262eb574244f81f5faaea539e712a058e6707a9d272fe5b64 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/c9/48/7d3c31064c5adcc743fe5370cf7e198cee06cc0e2d37b5cbe930691a3f54/coverage-7.5.0-cp39-cp39-win_amd64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/7c/31/5f5286d2a5e21e1fe5670629bb24c79bf46383a092e74e00077e7a178e5c/coverage-7.5.0-cp312-cp312-win_amd64.whl - sha256: 427e1e627b0963ac02d7c8730ca6d935df10280d230508c0ba059505e9233475 + sha256: c58536f6892559e030e6924896a44098bc1290663ea12532c78cef71d0df8493 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/f8/81/e871b0d58ca5d6cc27d00b2f668ce09c4643ef00512341f3a592a81fb6cd/coverage-7.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/c3/bc/d7e832280f269be9e8d46cff5c4031b4840f1844674dc53ad93c5a9c1da6/coverage-7.5.0-cp312-cp312-macosx_11_0_arm64.whl - sha256: cbe6581fcff7c8e262eb574244f81f5faaea539e712a058e6707a9d272fe5b64 + sha256: 85a5dbe1ba1bf38d6c63b6d2c42132d45cbee6d9f0c51b52c59aa4afba057517 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/fa/d9/ec4ba0913195d240d026670d41b91f3e5b9a8a143a385f93a09e97c90f5c/coverage-7.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/fa/d9/ec4ba0913195d240d026670d41b91f3e5b9a8a143a385f93a09e97c90f5c/coverage-7.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl sha256: adf032b6c105881f9d77fa17d9eebe0ad1f9bfb2ad25777811f97c5362aa07f2 requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/fe/75/d235d6fc44d06823a5ddb46596c891722c3ffcdba2f6358803842ea88945/coverage-7.5.0-cp38-cp38-macosx_10_9_x86_64.whl name: coverage version: 7.5.0 - url: https://files.pythonhosted.org/packages/36/db/f4e17ffb5ac2d125c72ee3b235c2e04f85a4296a6a9e17730e218af113d8/coverage-7.5.0-cp312-cp312-macosx_10_9_x86_64.whl - sha256: fed7a72d54bd52f4aeb6c6e951f363903bd7d70bc1cad64dd1f087980d309ab9 + sha256: 9dd88fce54abbdbf4c42fb1fea0e498973d07816f24c0e27a1ecaf91883ce69e requires_dist: - - tomli ; python_full_version <= '3.11.0a6' and extra == 'toml' + - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.8' -- kind: conda - name: curl - version: 8.7.1 - build: h726d00d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/curl-8.7.1-h726d00d_0.conda - sha256: 986b88c3ad56a0a3c077b15592cad3cbaa6172a5d15b46bb1d98332b9a2ff8cd - md5: 9f9e314ade5b7faa580208e1331074d8 +- conda: https://conda.anaconda.org/conda-forge/linux-64/curl-8.7.1-hca28451_0.conda + sha256: 30935854620a6d48a3b5f1b940aefb19aeb37cef02bf58cd38288bbf620fc74d + md5: d2dd5466be2ce818f8097847341da63d depends: - krb5 >=1.21.2,<1.22.0a0 - - libcurl 8.7.1 h726d00d_0 + - libcurl 8.7.1 hca28451_0 + - libgcc-ng >=12 - 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 license: curl license_family: MIT - size: 153094 - timestamp: 1711548452364 -- kind: conda - name: curl - version: 8.7.1 - build: hca28451_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/curl-8.7.1-hca28451_0.conda - sha256: 30935854620a6d48a3b5f1b940aefb19aeb37cef02bf58cd38288bbf620fc74d - md5: d2dd5466be2ce818f8097847341da63d + size: 164864 + timestamp: 1711548139831 +- conda: https://conda.anaconda.org/conda-forge/osx-64/curl-8.7.1-h726d00d_0.conda + sha256: 986b88c3ad56a0a3c077b15592cad3cbaa6172a5d15b46bb1d98332b9a2ff8cd + md5: 9f9e314ade5b7faa580208e1331074d8 depends: - krb5 >=1.21.2,<1.22.0a0 - - libcurl 8.7.1 hca28451_0 - - libgcc-ng >=12 + - libcurl 8.7.1 h726d00d_0 - 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 license: curl license_family: MIT - size: 164864 - timestamp: 1711548139831 -- kind: pypi + size: 153094 + timestamp: 1711548452364 +- pypi: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl name: exceptiongroup version: 1.2.1 - url: https://files.pythonhosted.org/packages/01/90/79fe92dd413a9cab314ef5c591b5aa9b9ba787ae4cadab75055b0ae00b33/exceptiongroup-1.2.1-py3-none-any.whl sha256: 5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad requires_dist: - pytest>=6 ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl name: execnet version: 2.1.1 - url: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl sha256: 26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc requires_dist: - hatch ; extra == 'testing' @@ -2299,56 +2186,38 @@ packages: - pytest ; extra == 'testing' - tox ; extra == 'testing' requires_python: '>=3.8' -- kind: conda - name: git - version: 2.45.0 - build: pl5321h4ac1b59_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/git-2.45.0-pl5321h4ac1b59_1.conda - sha256: 8469af34eea1029f6d70d4813cc57148a5f44145772e98ffe47d3fb38f151022 - md5: 23f365c51c3328665462df678d263891 +- conda: https://conda.anaconda.org/conda-forge/linux-64/git-2.45.0-pl5321hef9f9f3_1.conda + sha256: 2f363d43bc6eb26a20806ad582895d7fab1f4615d8d24dc0e2880c11d309b85d + md5: ebaf9a6173d3381c8ab929adaa3129b4 depends: - - __osx >=10.10 - libcurl >=8.7.1,<9.0a0 - libexpat >=2.6.2,<3.0a0 + - libgcc-ng >=12 - libiconv >=1.17,<2.0a0 - - libintl >=0.22.5,<1.0a0 - libzlib >=1.2.13,<1.3.0a0 - openssl >=3.3.0,<4.0a0 - pcre2 >=10.43,<10.44.0a0 - perl 5.* license: GPL-2.0-or-later and LGPL-2.1-or-later - size: 10961989 - timestamp: 1714654348654 -- kind: conda - name: git - version: 2.45.0 - build: pl5321hef9f9f3_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/git-2.45.0-pl5321hef9f9f3_1.conda - sha256: 2f363d43bc6eb26a20806ad582895d7fab1f4615d8d24dc0e2880c11d309b85d - md5: ebaf9a6173d3381c8ab929adaa3129b4 + size: 10837812 + timestamp: 1714654056957 +- conda: https://conda.anaconda.org/conda-forge/osx-64/git-2.45.0-pl5321h4ac1b59_1.conda + sha256: 8469af34eea1029f6d70d4813cc57148a5f44145772e98ffe47d3fb38f151022 + md5: 23f365c51c3328665462df678d263891 depends: + - __osx >=10.10 - libcurl >=8.7.1,<9.0a0 - libexpat >=2.6.2,<3.0a0 - - libgcc-ng >=12 - libiconv >=1.17,<2.0a0 + - libintl >=0.22.5,<1.0a0 - libzlib >=1.2.13,<1.3.0a0 - openssl >=3.3.0,<4.0a0 - pcre2 >=10.43,<10.44.0a0 - perl 5.* license: GPL-2.0-or-later and LGPL-2.1-or-later - size: 10837812 - timestamp: 1714654056957 -- kind: conda - name: gmp - version: 6.3.0 - build: h59595ed_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda + size: 10961989 + timestamp: 1714654348654 +- conda: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576 md5: e358c7c5f6824c272b5034b3816438a7 depends: @@ -2357,13 +2226,7 @@ packages: license: GPL-2.0-or-later OR LGPL-3.0-or-later size: 569852 timestamp: 1710169507479 -- kind: conda - name: gmp - version: 6.3.0 - build: h73e2aa4_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.3.0-h73e2aa4_1.conda sha256: 1a5b117908deb5a12288aba84dd0cb913f779c31c75f5a57d1a00e659e8fa3d3 md5: 92f8d748d95d97f92fc26cfac9bb5b6e depends: @@ -2371,32 +2234,59 @@ packages: license: GPL-2.0-or-later OR LGPL-3.0-or-later size: 519804 timestamp: 1710170159201 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/0b/8a/f5140c8713f919af0e98e6aaa40cb20edaaf3739d18c4a077581e2422ac4/greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl + name: greenlet + version: 3.0.3 + sha256: da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53 + requires_dist: + - sphinx ; extra == 'docs' + - furo ; extra == 'docs' + - objgraph ; extra == 'test' + - psutil ; extra == 'test' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/13/af/8db0d63147c6362447eb49da60573b41aee5cf5864fe1e27bdbaf7060bd2/greenlet-3.0.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl + name: greenlet + version: 3.0.3 + sha256: 098d86f528c855ead3479afe84b49242e174ed262456c342d70fc7f972bc13c4 + requires_dist: + - sphinx ; extra == 'docs' + - furo ; extra == 'docs' + - objgraph ; extra == 'test' + - psutil ; extra == 'test' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/1c/fa/bd5ee0772c7bbcb99bbacdb5608895052349b0ab9f20962c0c81bf6bd41d/greenlet-3.0.3-cp38-cp38-win_amd64.whl + name: greenlet + version: 3.0.3 + sha256: 419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf + requires_dist: + - sphinx ; extra == 'docs' + - furo ; extra == 'docs' + - objgraph ; extra == 'test' + - psutil ; extra == 'test' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/24/35/945d5b10648fec9b20bcc6df8952d20bb3bba76413cd71c1fdbee98f5616/greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/bb/6b/384dee7e0121cbd1757bdc1824a5ee28e43d8d4e3f99aa59521f629442fe/greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379 + sha256: 73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405 requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/3d/4a/c9590b31bfefe089d8fae72201c77761a63c1685c7f511a692a267d7f25e/greenlet-3.0.3-cp38-cp38-macosx_11_0_universal2.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/17/14/3bddb1298b9a6786539ac609ba4b7c9c0842e12aa73aaa4d8d73ec8f8185/greenlet-3.0.3.tar.gz - sha256: 43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491 + sha256: 1996cb9306c8595335bb157d133daf5cf9f693ef413e7673cb07e3e5871379ca requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/47/79/26d54d7d700ef65b689fc2665a40846d13e834da0486674a8d4f0f371a47/greenlet-3.0.3-cp311-cp311-win_amd64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/47/79/26d54d7d700ef65b689fc2665a40846d13e834da0486674a8d4f0f371a47/greenlet-3.0.3-cp311-cp311-win_amd64.whl sha256: 1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728 requires_dist: - sphinx ; extra == 'docs' @@ -2404,54 +2294,49 @@ packages: - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/1c/fa/bd5ee0772c7bbcb99bbacdb5608895052349b0ab9f20962c0c81bf6bd41d/greenlet-3.0.3-cp38-cp38-win_amd64.whl - sha256: 419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf + sha256: bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2 requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/6e/20/68a278a6f93fa36e21cfc3d7599399a8a831225644eb3b6b18755cd3d6fc/greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/8a/74/498377804f8ebfb1efdfbe33e93cf3b29d77e207e9496f0c10912d5055b4/greenlet-3.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 6b66c9c1e7ccabad3a7d037b2bcb740122a7b17a53734b7d72a344ce39882a1b + sha256: b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61 requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/a2/2f/461615adc53ba81e99471303b15ac6b2a6daa8d2a0f7f77fd15605e16d5b/greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/c3/80/01ff837bc7122d049971960123d749ed16adbd43cbc008afdb780a40e3fa/greenlet-3.0.3-cp39-cp39-win_amd64.whl - sha256: c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067 + sha256: 70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/a6/64/bea53c592e3e45799f7c8039a8ee7d6883c518eafef1fcae60beb776070f/greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/9d/ea/8bc7ed08ba274bdaff08f2cb546d832b8f44af267e03ca6e449840486915/greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61 + sha256: 9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/a6/76/e1ee9f290bb0d46b09704c2fb0e609cae329eb308ad404c0ee6fa1ecb8a5/greenlet-3.0.3-cp310-cp310-win_amd64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/a6/76/e1ee9f290bb0d46b09704c2fb0e609cae329eb308ad404c0ee6fa1ecb8a5/greenlet-3.0.3-cp310-cp310-win_amd64.whl sha256: 68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9 requires_dist: - sphinx ; extra == 'docs' @@ -2459,45 +2344,47 @@ packages: - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/af/05/b7e068070a6c143f34dfcd7e9144684271b8067e310f6da68269580db1d8/greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/1c/2f/64628f6ae48e05f585e0eb3fb7399b52e240ef99f602107b445bf6be23ef/greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83 + sha256: 64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/bd/37/56b0da468a85e7704f3b2bc045015301bdf4be2184a44868c71f6dca6fe2/greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/53/80/3d94d5999b4179d91bcc93745d1b0815b073d61be79dd546b840d17adb18/greenlet-3.0.3-cp312-cp312-win_amd64.whl - sha256: bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2 + sha256: fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf + requires_dist: + - sphinx ; extra == 'docs' + - furo ; extra == 'docs' + - objgraph ; extra == 'test' + - psutil ; extra == 'test' + requires_python: '>=3.7' +- pypi: https://files.pythonhosted.org/packages/c3/80/01ff837bc7122d049971960123d749ed16adbd43cbc008afdb780a40e3fa/greenlet-3.0.3-cp39-cp39-win_amd64.whl + name: greenlet + version: 3.0.3 + sha256: c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067 requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/c6/1f/12d5a6cc26e8b483c2e7975f9c22e088ac735c0d8dcb8a8f72d31a4e5f04/greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl name: greenlet version: 3.0.3 - url: https://files.pythonhosted.org/packages/63/0f/847ed02cdfce10f0e6e3425cd054296bddb11a17ef1b34681fa01a055187/greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230 + sha256: b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22 requires_dist: - sphinx ; extra == 'docs' - furo ; extra == 'docs' - objgraph ; extra == 'test' - psutil ; extra == 'test' requires_python: '>=3.7' -- kind: conda - name: icu - version: '73.2' - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8 md5: cc47e1facc155f91abd89b11e48e72ff depends: @@ -2507,49 +2394,38 @@ packages: license_family: MIT size: 12089150 timestamp: 1692900650789 -- kind: conda - name: icu - version: '73.2' - build: hf5e326d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185 md5: 5cc301d759ec03f28328428e28f65591 license: MIT license_family: MIT size: 11787527 timestamp: 1692901622519 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl name: iniconfig version: 2.0.0 - url: https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl sha256: b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374 requires_python: '>=3.7' -- kind: conda - name: julia - version: 1.10.2 - build: h7cbd117_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/julia-1.10.2-h7cbd117_1.conda - sha256: 5c3f3457a9dd9d200a6d413b5a2cb399896c8910a34d1b1c5d1c5c373acc78a1 - md5: c2f4ac96e9886c2ea92ef7c37bdd32ef +- conda: https://conda.anaconda.org/conda-forge/linux-64/julia-1.10.2-hf9b02c4_1.conda + sha256: fb7250e1e0ad35ebd3832cfe778ad449e7d49d9fd587c80d2cd2a53436ab47fd + md5: b9e52c4d5d5234c66bd9244734b9ebae depends: - - __osx >=10.14 - arpack >=3.8.0,<3.9.0a0 nompi_* - curl - git - gmp >=6.3.0,<7.0a0 - - libcxx >=16 - - libgfortran 5.* + - libgcc-ng >=12 + - libgfortran-ng - libgfortran5 >=12.3.0 - - libgfortran5 >=13.2.0 + - libgit2 >=1.8.0,<1.9.0a0 - libnghttp2 >=1.58.0,<2.0a0 - libopenlibm4 >=0.8.1,<1.0a0 - - libosxunwind - libssh2 >=1.11.0,<2.0a0 + - libstdcxx-ng >=12 + - libunwind >=1.6.2,<1.7.0a0 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.2.13,<1.3.0a0 + - mbedtls - mpfr >=4.2.1,<5.0a0 - openblas-ilp64 - openlibm @@ -2559,34 +2435,27 @@ packages: - zlib license: MIT license_family: MIT - size: 87142475 - timestamp: 1711114003313 -- kind: conda - name: julia - version: 1.10.2 - build: hf9b02c4_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/julia-1.10.2-hf9b02c4_1.conda - sha256: fb7250e1e0ad35ebd3832cfe778ad449e7d49d9fd587c80d2cd2a53436ab47fd - md5: b9e52c4d5d5234c66bd9244734b9ebae + size: 106691125 + timestamp: 1711113588306 +- conda: https://conda.anaconda.org/conda-forge/osx-64/julia-1.10.2-h7cbd117_1.conda + sha256: 5c3f3457a9dd9d200a6d413b5a2cb399896c8910a34d1b1c5d1c5c373acc78a1 + md5: c2f4ac96e9886c2ea92ef7c37bdd32ef depends: + - __osx >=10.14 - arpack >=3.8.0,<3.9.0a0 nompi_* - curl - git - gmp >=6.3.0,<7.0a0 - - libgcc-ng >=12 - - libgfortran-ng + - libcxx >=16 + - libgfortran 5.* - libgfortran5 >=12.3.0 - - libgit2 >=1.8.0,<1.9.0a0 + - libgfortran5 >=13.2.0 - libnghttp2 >=1.58.0,<2.0a0 - libopenlibm4 >=0.8.1,<1.0a0 + - libosxunwind - libssh2 >=1.11.0,<2.0a0 - - libstdcxx-ng >=12 - - libunwind >=1.6.2,<1.7.0a0 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.2.13,<1.3.0a0 - - mbedtls - mpfr >=4.2.1,<5.0a0 - openblas-ilp64 - openlibm @@ -2596,14 +2465,9 @@ packages: - zlib license: MIT license_family: MIT - size: 106691125 - timestamp: 1711113588306 -- kind: conda - name: keyutils - version: 1.6.1 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + size: 87142475 + timestamp: 1711114003313 +- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb md5: 30186d27e2c9fa62b45fb1476b7200e3 depends: @@ -2611,12 +2475,7 @@ packages: license: LGPL-2.1-or-later size: 117831 timestamp: 1646151697040 -- kind: conda - name: krb5 - version: 1.21.2 - build: h659d440_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4 md5: cd95826dbd331ed1be26bdf401432844 depends: @@ -2630,12 +2489,7 @@ packages: license_family: MIT size: 1371181 timestamp: 1692097755782 -- kind: conda - name: krb5 - version: 1.21.2 - build: hb884880_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6 md5: 80505a68783f01dc8d7308c075261b2f depends: @@ -2647,12 +2501,7 @@ packages: license_family: MIT size: 1183568 timestamp: 1692098004387 -- kind: conda - name: ld_impl_linux-64 - version: '2.40' - build: h55db66e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h55db66e_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h55db66e_0.conda sha256: ef969eee228cfb71e55146eaecc6af065f468cb0bc0a5239bc053b39db0b5f09 md5: 10569984e7db886e4f1abc2b47ad79a1 constrains: @@ -2661,13 +2510,8 @@ packages: license_family: GPL size: 713322 timestamp: 1713651222435 -- kind: conda - name: libblas - version: 3.9.0 - build: 22_linux64_openblas +- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda build_number: 22 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-22_linux64_openblas.conda sha256: 082b8ac20d43a7bbcdc28b3b1cd40e4df3a8b5daf0a2d23d68953a44d2d12c1b md5: 1a2a0cd3153464fee6646f3dd6dad9b8 depends: @@ -2682,13 +2526,8 @@ packages: license_family: BSD size: 14537 timestamp: 1712542250081 -- kind: conda - name: libblas - version: 3.9.0 - build: 22_osx64_openblas +- conda: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda build_number: 22 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-22_osx64_openblas.conda sha256: d72060239f904b3a81d2329efcf84dc62c2dfd66dbc4efc8dcae1afdf8f02b59 md5: b80966a8c8dd0b531f8e65f709d732e8 depends: @@ -2703,13 +2542,8 @@ packages: license_family: BSD size: 14749 timestamp: 1712542279018 -- kind: conda - name: libcblas - version: 3.9.0 - build: 22_linux64_openblas +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda build_number: 22 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-22_linux64_openblas.conda sha256: da1b2faa017663c8f5555c1c5518e96ac4cd8e0be2a673c1c9e2cb8507c8fe46 md5: 4b31699e0ec5de64d5896e580389c9a1 depends: @@ -2722,13 +2556,8 @@ packages: license_family: BSD size: 14438 timestamp: 1712542270166 -- kind: conda - name: libcblas - version: 3.9.0 - build: 22_osx64_openblas +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda build_number: 22 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-22_osx64_openblas.conda sha256: 6a2ba9198e2320c3e22fe3d121310cf8a8ac663e94100c5693b34523fcb3cc04 md5: b9fef82772330f61b2b0201c72d2c29b depends: @@ -2741,16 +2570,12 @@ packages: license_family: BSD size: 14636 timestamp: 1712542311437 -- kind: conda - name: libcurl - version: 8.7.1 - build: h726d00d_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda - sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 - md5: fa58e5eaa12006bc3289a71357bef167 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda + sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 + md5: 755c7f876815003337d2c61ff5d047e5 depends: - krb5 >=1.21.2,<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 @@ -2758,19 +2583,13 @@ packages: - zstd >=1.5.5,<1.6.0a0 license: curl license_family: MIT - size: 378176 - timestamp: 1711548390530 -- kind: conda - name: libcurl - version: 8.7.1 - build: hca28451_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.7.1-hca28451_0.conda - sha256: 82a75e9a5d9ee5b2f487d850ec5d4edc18a56eb9527608a95a916c40baae3843 - md5: 755c7f876815003337d2c61ff5d047e5 + size: 398293 + timestamp: 1711548114077 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.7.1-h726d00d_0.conda + sha256: 06cb1bd3bbaf905213777d6ade190ac4c7fb7a20dfe0cf901c977dbbc6cec265 + md5: fa58e5eaa12006bc3289a71357bef167 depends: - krb5 >=1.21.2,<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 @@ -2778,42 +2597,16 @@ packages: - zstd >=1.5.5,<1.6.0a0 license: curl license_family: MIT - size: 398293 - timestamp: 1711548114077 -- kind: conda - name: libcxx - version: 16.0.6 - build: hd57cbcb_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda + size: 378176 + timestamp: 1711548390530 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 md5: 7d6972792161077908b62971802f289a license: Apache-2.0 WITH LLVM-exception license_family: Apache size: 1142172 timestamp: 1686896907750 -- kind: conda - name: libedit - version: 3.1.20191231 - build: h0678c8f_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 - sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 - md5: 6016a8a1d0e63cac3de2c352cd40208b - depends: - - ncurses >=6.2,<7.0.0a0 - license: BSD-2-Clause - license_family: BSD - size: 105382 - timestamp: 1597616576726 -- kind: conda - name: libedit - version: 3.1.20191231 - build: he28a2e2_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 depends: @@ -2823,26 +2616,16 @@ packages: license_family: BSD size: 123878 timestamp: 1597616541093 -- kind: conda - name: libev - version: '4.33' - build: h10d778d_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 - md5: 899db79329439820b7e8f8de41bca902 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + md5: 6016a8a1d0e63cac3de2c352cd40208b + depends: + - ncurses >=6.2,<7.0.0a0 license: BSD-2-Clause license_family: BSD - size: 106663 - timestamp: 1702146352558 -- kind: conda - name: libev - version: '4.33' - build: hd590300_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda + size: 105382 + timestamp: 1597616576726 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4 md5: 172bf1cd1ff8629f2b1179945ed45055 depends: @@ -2851,12 +2634,14 @@ packages: license_family: BSD size: 112766 timestamp: 1702146165126 -- kind: conda - name: libexpat - version: 2.6.2 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-h10d778d_2.conda + sha256: 0d238488564a7992942aa165ff994eca540f687753b4f0998b29b4e4d030ff43 + md5: 899db79329439820b7e8f8de41bca902 + license: BSD-2-Clause + license_family: BSD + size: 106663 + timestamp: 1702146352558 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19 md5: e7ba12deb7020dd080c6c70e7b6f6a3d depends: @@ -2867,26 +2652,7 @@ packages: license_family: MIT size: 73730 timestamp: 1710362120304 -- kind: conda - name: libexpat - version: 2.6.2 - build: h63175ca_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda - sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 - md5: bc592d03f62779511d392c175dcece64 - constrains: - - expat 2.6.2.* - license: MIT - license_family: MIT - size: 139224 - timestamp: 1710362609641 -- kind: conda - name: libexpat - version: 2.6.2 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.2-h73e2aa4_0.conda sha256: a188a77b275d61159a32ab547f7d17892226e7dac4518d2c6ac3ac8fc8dfde92 md5: 3d1d51c8f716d97c864d12f7af329526 constrains: @@ -2895,12 +2661,7 @@ packages: license_family: MIT size: 69246 timestamp: 1710362566073 -- kind: conda - name: libexpat - version: 2.6.2 - build: hebf3989_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.2-hebf3989_0.conda sha256: ba7173ac30064ea901a4c9fb5a51846dcc25512ceb565759be7d18cbf3e5415e md5: e3cde7cfa87f82f7cb13d482d5e0ad09 constrains: @@ -2909,54 +2670,39 @@ packages: license_family: MIT size: 63655 timestamp: 1710362424980 -- kind: conda - name: libffi - version: 3.4.2 - build: h0d85af4_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.2-h63175ca_0.conda + sha256: 79f612f75108f3e16bbdc127d4885bb74729cf66a8702fca0373dad89d40c4b7 + md5: bc592d03f62779511d392c175dcece64 + constrains: + - expat 2.6.2.* + license: MIT + license_family: MIT + size: 139224 + timestamp: 1710362609641 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + depends: + - libgcc-ng >=9.4.0 + license: MIT + license_family: MIT + size: 58292 + timestamp: 1636488182923 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f md5: ccb34fb14960ad8b125962d3d79b31a9 license: MIT license_family: MIT size: 51348 timestamp: 1636488394370 -- kind: conda - name: libffi - version: 3.4.2 - build: h3422bc3_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca md5: 086914b672be056eb70fd4285b6783b6 license: MIT license_family: MIT size: 39020 timestamp: 1636488587153 -- kind: conda - name: libffi - version: 3.4.2 - build: h7f98852_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - depends: - - libgcc-ng >=9.4.0 - license: MIT - license_family: MIT - size: 58292 - timestamp: 1636488182923 -- kind: conda - name: libffi - version: 3.4.2 - build: h8ffe710_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 md5: 2c96d1b6915b408893f9472569dee135 depends: @@ -2966,13 +2712,7 @@ packages: license_family: MIT size: 42063 timestamp: 1636489106777 -- kind: conda - name: libgcc-ng - version: 13.2.0 - build: h77fa898_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_6.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_6.conda sha256: 8bd6311a05f02459eb3efafe948f21e58170ccfcce4350a86de35d7573256bb2 md5: 4398809ac84d0b8c28beebaaa83277f5 depends: @@ -2983,13 +2723,7 @@ packages: license: GPL-3.0-only WITH GCC-exception-3.1 size: 777610 timestamp: 1714581763008 -- kind: conda - name: libgfortran - version: 5.0.0 - build: 13_2_0_h97931a8_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_3.conda sha256: 4874422e567b68334705c135c17e5acdca1404de8255673ce30ad3510e00be0d md5: 0b6e23a012ee7a9a5f6b244f5a92c1d5 depends: @@ -2998,13 +2732,7 @@ packages: license_family: GPL size: 110106 timestamp: 1707328956438 -- kind: conda - name: libgfortran-ng - version: 13.2.0 - build: h69a702a_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_6.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.2.0-h69a702a_6.conda sha256: 5e436753c55d81005e9383d7a8ec14298ebd35029d148db7e03c4834ffca54ee md5: 3666a850342f8f3be88f9a93d948d027 depends: @@ -3013,30 +2741,7 @@ packages: license_family: GPL size: 24183 timestamp: 1713755271389 -- kind: conda - name: libgfortran5 - version: 13.2.0 - build: h2873a65_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda - sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b - md5: e4fb4d23ec2870ff3c40d10afe305aec - depends: - - llvm-openmp >=8.0.0 - constrains: - - libgfortran 5.0.0 13_2_0_*_3 - license: GPL-3.0-only WITH GCC-exception-3.1 - license_family: GPL - size: 1571379 - timestamp: 1707328880361 -- kind: conda - name: libgfortran5 - version: 13.2.0 - build: h43f5ff8_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-h43f5ff8_6.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-h43f5ff8_6.conda sha256: 5da2abd9e2c09ec8566fbacb237926b532f6629871ff2733c90a0be77b77679e md5: e54a5ddc67e673f9105cf2a2e9c070b0 depends: @@ -3047,12 +2752,18 @@ packages: license_family: GPL size: 1442624 timestamp: 1713755021286 -- kind: conda - name: libgit2 - version: 1.8.0 - build: h65212e3_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgit2-1.8.0-h65212e3_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_3.conda + sha256: da3db4b947e30aec7596a3ef92200d17e774cccbbf7efc47802529a4ca5ca31b + md5: e4fb4d23ec2870ff3c40d10afe305aec + depends: + - llvm-openmp >=8.0.0 + constrains: + - libgfortran 5.0.0 13_2_0_*_3 + license: GPL-3.0-only WITH GCC-exception-3.1 + license_family: GPL + size: 1571379 + timestamp: 1707328880361 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgit2-1.8.0-h65212e3_0.conda sha256: f7e647728bbc9de98e35810b385d74a5eab3d7fffe537a636183c70f37e058d9 md5: 94fe4afbcbed79c705ec79589ac8807b depends: @@ -3067,13 +2778,7 @@ packages: license_family: GPL size: 871893 timestamp: 1710979746154 -- kind: conda - name: libgomp - version: 13.2.0 - build: h77fa898_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_6.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_6.conda sha256: b059ec2403a421c71c33633ece6be2ccd303e376aae6079f8cfda96d42616527 md5: e733e0573651a1f0639fa8ce066a286e depends: @@ -3081,29 +2786,7 @@ packages: license: GPL-3.0-only WITH GCC-exception-3.1 size: 420177 timestamp: 1714581699319 -- kind: conda - name: libhwloc - version: 2.10.0 - build: default_h1321489_1000 - build_number: 1000 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.10.0-default_h1321489_1000.conda - sha256: 86f0867081792d52f5c4e51e673478ba0a31e38fc7be59e1ba1890decc46e8da - md5: 6f5fe4374d1003e116e2573022178da6 - depends: - - libcxx >=16 - - libxml2 >=2.12.6,<3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 2346864 - timestamp: 1711490587770 -- kind: conda - name: libhwloc - version: 2.10.0 - build: default_h2fb2949_1000 - build_number: 1000 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.10.0-default_h2fb2949_1000.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.10.0-default_h2fb2949_1000.conda sha256: dab61dff22f40367e57b1fe024e789f451b7511e65c32b97ada97ca549dd8dbc md5: 7e3726e647a619c6ce5939014dfde86d depends: @@ -3114,13 +2797,17 @@ packages: license_family: BSD size: 2412713 timestamp: 1711490522117 -- kind: conda - name: libiconv - version: '1.17' - build: hd590300_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libhwloc-2.10.0-default_h1321489_1000.conda + sha256: 86f0867081792d52f5c4e51e673478ba0a31e38fc7be59e1ba1890decc46e8da + md5: 6f5fe4374d1003e116e2573022178da6 + depends: + - libcxx >=16 + - libxml2 >=2.12.6,<3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 2346864 + timestamp: 1711490587770 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9 md5: d66573916ffcf376178462f1b61c941e depends: @@ -3128,25 +2815,13 @@ packages: license: LGPL-2.1-only size: 705775 timestamp: 1702682170569 -- kind: conda - name: libiconv - version: '1.17' - build: hd75f5a5_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23 md5: 6c3628d047e151efba7cf08c5e54d1ca license: LGPL-2.1-only size: 666538 timestamp: 1702682713201 -- kind: conda - name: libintl - version: 0.22.5 - build: h5ff76d1_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-h5ff76d1_2.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libintl-0.22.5-h5ff76d1_2.conda sha256: 280aaef0ed84637ee869012ad9ad9ed208e068dd9b8cf010dafeea717dad7203 md5: 3fb6774cb8cdbb93a6013b67bcf9716d depends: @@ -3154,13 +2829,8 @@ packages: license: LGPL-2.1-or-later size: 74307 timestamp: 1712512790983 -- kind: conda - name: liblapack - version: 3.9.0 - build: 22_linux64_openblas +- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda build_number: 22 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-22_linux64_openblas.conda sha256: db246341d42f9100d45adeb1a7ba8b1ef5b51ceb9056fd643e98046a3259fde6 md5: b083767b6c877e24ee597d93b87ab838 depends: @@ -3173,13 +2843,8 @@ packages: license_family: BSD size: 14471 timestamp: 1712542277696 -- kind: conda - name: liblapack - version: 3.9.0 - build: 22_osx64_openblas +- conda: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda build_number: 22 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-22_osx64_openblas.conda sha256: e36744f3e780564d6748b5dd05e15ad6a1af9184cf32ab9d1304c13a6bc3e16b md5: f21b282ff7ba14df6134a0fe6ab42b1b depends: @@ -3192,13 +2857,7 @@ packages: license_family: BSD size: 14657 timestamp: 1712542322711 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: h47da74e_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.58.0-h47da74e_1.conda sha256: 1910c5306c6aa5bcbd623c3c930c440e9c77a5a019008e1487810e3c1d3716cb md5: 700ac6ea6d53d5510591c4344d5c989a depends: @@ -3213,13 +2872,7 @@ packages: license_family: MIT size: 631936 timestamp: 1702130036271 -- kind: conda - name: libnghttp2 - version: 1.58.0 - build: h64cf6d3_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.58.0-h64cf6d3_1.conda sha256: 412fd768e787e586602f8e9ea52bf089f3460fc630f6987f0cbd89b70e9a4380 md5: faecc55c2a8155d9ff1c0ff9a0fef64f depends: @@ -3234,12 +2887,7 @@ packages: license_family: MIT size: 599736 timestamp: 1702130398536 -- kind: conda - name: libnsl - version: 2.0.1 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6 md5: 30fd6e37fe21f86f4bd26d6ee73eeec7 depends: @@ -3248,30 +2896,7 @@ packages: license_family: GPL size: 33408 timestamp: 1697359010159 -- kind: conda - name: libopenblas - version: 0.3.27 - build: openmp_hfef2a42_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda - sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 - md5: 00237c9c7f2cb6725fe2960680a6e225 - depends: - - libgfortran 5.* - - libgfortran5 >=12.3.0 - - llvm-openmp >=16.0.6 - constrains: - - openblas >=0.3.27,<0.3.28.0a0 - license: BSD-3-Clause - license_family: BSD - size: 6047531 - timestamp: 1712366254156 -- kind: conda - name: libopenblas - version: 0.3.27 - build: pthreads_h413a1c8_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_h413a1c8_0.conda sha256: 2ae7559aed0705deb3f716c7b247c74fd1b5e35b64e39834ce8b95f7564d4a3e md5: a356024784da6dfd4683dc5ecf45b155 depends: @@ -3284,30 +2909,20 @@ packages: license_family: BSD size: 5598747 timestamp: 1712364444346 -- kind: conda - name: libopenblas-ilp64 - version: 0.3.27 - build: openmp_h17068ef_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-ilp64-0.3.27-openmp_h17068ef_0.conda - sha256: 69cadb7abd35568af200026b60e476cf594951bd9c6afc02432eed654b309125 - md5: af7af542abbefc13ddb526396f6ff18a +- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.27-openmp_hfef2a42_0.conda + sha256: 45519189c0295296268cb7eabeeaa03ef54d780416c9a24be1d2a21db63a7848 + md5: 00237c9c7f2cb6725fe2960680a6e225 depends: - libgfortran 5.* - libgfortran5 >=12.3.0 - llvm-openmp >=16.0.6 constrains: - - openblas-ilp64 >=0.3.27,<0.3.28.0a0 + - openblas >=0.3.27,<0.3.28.0a0 license: BSD-3-Clause license_family: BSD - size: 5913414 - timestamp: 1712365651750 -- kind: conda - name: libopenblas-ilp64 - version: 0.3.27 - build: pthreads_h384dd9e_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-ilp64-0.3.27-pthreads_h384dd9e_0.conda + size: 6047531 + timestamp: 1712366254156 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-ilp64-0.3.27-pthreads_h384dd9e_0.conda sha256: 6e03699e13afbe64add939b1cdf5934ceb581f67c5f8dba51e59a206012fef3c md5: 025629e15edccee84df4713ce69192e5 depends: @@ -3320,25 +2935,20 @@ packages: license_family: BSD size: 5480042 timestamp: 1712364182290 -- kind: conda - name: libopenlibm4 - version: 0.8.1 - build: h10d778d_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libopenlibm4-0.8.1-h10d778d_1.conda - sha256: 2979d2f998f55c1c204ec884825996ae9cea22bb57e4f238cecd06b002cec091 - md5: f713ac687a1268f2efb8c414aa3c29cb - license: MIT AND ISC AND BSD-2-Clause - size: 87860 - timestamp: 1698855552149 -- kind: conda - name: libopenlibm4 - version: 0.8.1 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libopenlibm4-0.8.1-hd590300_1.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-ilp64-0.3.27-openmp_h17068ef_0.conda + sha256: 69cadb7abd35568af200026b60e476cf594951bd9c6afc02432eed654b309125 + md5: af7af542abbefc13ddb526396f6ff18a + depends: + - libgfortran 5.* + - libgfortran5 >=12.3.0 + - llvm-openmp >=16.0.6 + constrains: + - openblas-ilp64 >=0.3.27,<0.3.28.0a0 + license: BSD-3-Clause + license_family: BSD + size: 5913414 + timestamp: 1712365651750 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenlibm4-0.8.1-hd590300_1.conda sha256: d176e3b79e723a4102861c06cdc13d60b08210233c42edd6e49e770aece03b3b md5: e6af610e01d04927a5060c95ce4e0875 depends: @@ -3346,12 +2956,13 @@ packages: license: MIT AND ISC AND BSD-2-Clause size: 104768 timestamp: 1698855372633 -- kind: conda - name: libosxunwind - version: 0.0.6 - build: h940c156_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libosxunwind-0.0.6-h940c156_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libopenlibm4-0.8.1-h10d778d_1.conda + sha256: 2979d2f998f55c1c204ec884825996ae9cea22bb57e4f238cecd06b002cec091 + md5: f713ac687a1268f2efb8c414aa3c29cb + license: MIT AND ISC AND BSD-2-Clause + size: 87860 + timestamp: 1698855552149 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libosxunwind-0.0.6-h940c156_0.tar.bz2 sha256: 88800fcd2b2064daeed6f31def22e29ddb71fe11cf70b4a77d5c9b4f0a004997 md5: 01662161c29ec05885b4d5a284345e21 depends: @@ -3359,25 +2970,7 @@ packages: license: APSL-2.0 size: 72091 timestamp: 1638382691982 -- kind: conda - name: libsqlite - version: 3.45.3 - build: h091b4b1_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.3-h091b4b1_0.conda - sha256: 4337f466eb55bbdc74e168b52ec8c38f598e3664244ec7a2536009036e2066cc - md5: c8c1186c7f3351f6ffddb97b1f54fc58 - depends: - - libzlib >=1.2.13,<1.3.0a0 - license: Unlicense - size: 824794 - timestamp: 1713367748819 -- kind: conda - name: libsqlite - version: 3.45.3 - build: h2797004_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.45.3-h2797004_0.conda sha256: e2273d6860eadcf714a759ffb6dc24a69cfd01f2a0ea9d6c20f86049b9334e0c md5: b3316cbe90249da4f8e84cd66e1cc55b depends: @@ -3386,12 +2979,7 @@ packages: license: Unlicense size: 859858 timestamp: 1713367435849 -- kind: conda - name: libsqlite - version: 3.45.3 - build: h92b6c6a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.45.3-h92b6c6a_0.conda sha256: 4d44b68fb29dcbc2216a8cae0b274b02ef9b4ae05d1d0f785362ed30b91c9b52 md5: 68e462226209f35182ef66eda0f794ff depends: @@ -3399,12 +2987,15 @@ packages: license: Unlicense size: 902546 timestamp: 1713367776445 -- kind: conda - name: libsqlite - version: 3.45.3 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.45.3-h091b4b1_0.conda + sha256: 4337f466eb55bbdc74e168b52ec8c38f598e3664244ec7a2536009036e2066cc + md5: c8c1186c7f3351f6ffddb97b1f54fc58 + depends: + - libzlib >=1.2.13,<1.3.0a0 + license: Unlicense + size: 824794 + timestamp: 1713367748819 +- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.45.3-hcfcfb64_0.conda sha256: 06ec75faa51d7ec6d5db98889e869b579a9df19d7d3d9baff8359627da4a3b7e md5: 73f5dc8e2d55d9a1e14b11f49c3b4a28 depends: @@ -3414,12 +3005,7 @@ packages: license: Unlicense size: 870518 timestamp: 1713367888406 -- kind: conda - name: libssh2 - version: 1.11.0 - build: h0841786_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d md5: 1f5a58e686b13bcfde88b93f547d23fe depends: @@ -3430,12 +3016,7 @@ packages: license_family: BSD size: 271133 timestamp: 1685837707056 -- kind: conda - name: libssh2 - version: 1.11.0 - build: hd019ec5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 md5: ca3a72efba692c59a90d4b9fc0dfe774 depends: @@ -3445,24 +3026,13 @@ packages: license_family: BSD size: 259556 timestamp: 1685837820566 -- kind: conda - name: libstdcxx-ng - version: 13.2.0 - build: hc0a3c3a_6 - build_number: 6 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_6.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_6.conda sha256: 547903d5ffecf49543c6ca9f6e504f0a8a47920b0517395cf529b4a955f1c3d4 md5: 2f18345bbc433c8a1ed887d7161e86a6 license: GPL-3.0-only WITH GCC-exception-3.1 size: 3844194 timestamp: 1714581807420 -- kind: conda - name: libunwind - version: 1.6.2 - build: h9c3ff4c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2 sha256: f2ac872920833960e514ce9efd8f7c08ce66dd870738d73839d1bce1ac497de6 md5: a730b2badd586580c5752cc73842e068 depends: @@ -3472,12 +3042,7 @@ packages: license_family: MIT size: 75491 timestamp: 1638450786937 -- kind: conda - name: libutf8proc - version: 2.8.0 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 sha256: 49082ee8d01339b225f7f8c60f32a2a2c05fe3b16f31b554b4fb2c1dea237d1c md5: ede4266dc02e875fe1ea77b25dd43747 depends: @@ -3486,24 +3051,14 @@ packages: license_family: MIT size: 101070 timestamp: 1667316029302 -- kind: conda - name: libutf8proc - version: 2.8.0 - build: hb7f2c08_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libutf8proc-2.8.0-hb7f2c08_0.tar.bz2 sha256: 55a7f96b2802e94def207fdfe92bc52c24d705d139bb6cdb3d936cbe85e1c505 md5: db98dc3e58cbc11583180609c429c17d license: MIT license_family: MIT size: 98942 timestamp: 1667316472080 -- kind: conda - name: libuuid - version: 2.38.1 - build: h0b41bf4_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 md5: 40b61aab5c7ba9ff276c41cfffe6b80b depends: @@ -3512,13 +3067,7 @@ packages: license_family: BSD size: 33601 timestamp: 1680112270483 -- kind: conda - name: libxcrypt - version: 4.4.36 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c md5: 5aa797f8787fe7a17d1b0821485b5adc depends: @@ -3526,13 +3075,7 @@ packages: license: LGPL-2.1-or-later size: 100393 timestamp: 1702724383534 -- kind: conda - name: libxml2 - version: 2.12.6 - build: h232c23b_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_2.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.6-h232c23b_2.conda sha256: 0fd41df7211aae04f492c8550ce10238e8cfa8b1abebc2215a983c5e66d284ea md5: 9a3a42df8a95f65334dfc7b80da1195d depends: @@ -3545,13 +3088,7 @@ packages: license_family: MIT size: 704938 timestamp: 1713314718258 -- kind: conda - name: libxml2 - version: 2.12.6 - build: hc0ae0f7_2 - build_number: 2 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_2.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.12.6-hc0ae0f7_2.conda sha256: 2598a525b1769338f96c3d4badad7d8b95c9ddcea86db3f9479a274803190e5c md5: 50b997370584f2c83ca0c38e9028eab9 depends: @@ -3563,28 +3100,18 @@ packages: license_family: MIT size: 619622 timestamp: 1713314870641 -- kind: conda - name: libzlib - version: 1.2.13 - build: h53f4e23_5 - build_number: 5 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda - sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a - md5: 1a47f5236db2e06a320ffa0392f81bd8 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 + md5: f36c115f1ee199da648e0597ec2047ad + depends: + - libgcc-ng >=12 constrains: - zlib 1.2.13 *_5 license: Zlib license_family: Other - size: 48102 - timestamp: 1686575426584 -- kind: conda - name: libzlib - version: 1.2.13 - build: h8a1eda9_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda + size: 61588 + timestamp: 1686575217516 +- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 md5: 4a3ad23f6e16f99c04e166767193d700 constrains: @@ -3593,13 +3120,16 @@ packages: license_family: Other size: 59404 timestamp: 1686575566695 -- kind: conda - name: libzlib - version: 1.2.13 - build: hcfcfb64_5 - build_number: 5 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a + md5: 1a47f5236db2e06a320ffa0392f81bd8 + constrains: + - zlib 1.2.13 *_5 + license: Zlib + license_family: Other + size: 48102 + timestamp: 1686575426584 +- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 depends: @@ -3612,29 +3142,7 @@ packages: license_family: Other size: 55800 timestamp: 1686575452215 -- kind: conda - name: libzlib - version: 1.2.13 - build: hd590300_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda - sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 - md5: f36c115f1ee199da648e0597ec2047ad - depends: - - libgcc-ng >=12 - constrains: - - zlib 1.2.13 *_5 - license: Zlib - license_family: Other - size: 61588 - timestamp: 1686575217516 -- kind: conda - name: llvm-openmp - version: 18.1.4 - build: h2c61cee_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.4-h2c61cee_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-18.1.4-h2c61cee_0.conda sha256: 3b5952236c415a374f561ea1208a12fd0258069b813101d84cbc65e6bdaee146 md5: 0619a2dda8b7e25b78abc0b3d872744f depends: @@ -3644,25 +3152,23 @@ packages: license: Apache-2.0 WITH LLVM-exception size: 300738 timestamp: 1714635138453 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl name: loky version: 3.4.1 - url: https://files.pythonhosted.org/packages/2e/4b/d5f8d45c28b193fe5974f95ecfa2bac87e268a543da298bab258ded6ae95/loky-3.4.1-py3-none-any.whl sha256: 7132da80d1a057b5917ff32c7867b65ed164aae84c259a1dbc44375791280c87 requires_dist: - cloudpickle requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl name: markdown-it-py version: 3.0.0 - url: https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl sha256: 355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1 requires_dist: - mdurl~=0.1 - psutil ; extra == 'benchmarking' - pytest ; extra == 'benchmarking' - pytest-benchmark ; extra == 'benchmarking' - - pre-commit~=3.0 ; extra == 'code_style' + - pre-commit~=3.0 ; extra == 'code-style' - commonmark~=0.9 ; extra == 'compare' - markdown~=3.4 ; extra == 'compare' - mistletoe~=1.0 ; extra == 'compare' @@ -3684,12 +3190,7 @@ packages: - pytest-cov ; extra == 'testing' - pytest-regressions ; extra == 'testing' requires_python: '>=3.8' -- kind: conda - name: mbedtls - version: 3.5.1 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mbedtls-3.5.1-h59595ed_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/mbedtls-3.5.1-h59595ed_0.conda sha256: 2ba3cd6c5f3926bd5ec84f1caf8414e7aed695bcd2bf4bcf736aa78584bf2c42 md5: a7b444a6e008b804b35521895e3440e2 depends: @@ -3699,19 +3200,12 @@ packages: license_family: APACHE size: 865310 timestamp: 1706018178691 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl name: mdurl version: 0.1.2 - url: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl sha256: 84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 requires_python: '>=3.7' -- kind: conda - name: metis - version: 5.1.0 - build: h59595ed_1007 - build_number: 1007 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-h59595ed_1007.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-h59595ed_1007.conda sha256: 446bf794497284e2ffa28ab9191d70c38d372c51e3fd073f0d8b35efb51e7e02 md5: 40ccb8318df2500f83bd868dd8fcd201 depends: @@ -3720,41 +3214,14 @@ packages: license_family: APACHE size: 3890263 timestamp: 1693402645559 -- kind: conda - name: metis - version: 5.1.0 - build: he965462_1007 - build_number: 1007 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.0-he965462_1007.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/metis-5.1.0-he965462_1007.conda sha256: a79b36e0c623dfab95cc2c0fce1870e90de5f2328fefa9a1b17351eb0f3ac02e md5: 0c64ad59bbcae7772c16a55cbd353e25 license: Apache-2.0 license_family: APACHE size: 3881273 timestamp: 1693402943049 -- kind: conda - name: mpfr - version: 4.2.1 - build: h4f6b447_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-h4f6b447_1.conda - sha256: 002209e7d1f21cdd04de17050ab2050de4347e5bf04210ce6a636cbabf43e1d0 - md5: b90df08f0deb2f58631447c1462c92a7 - depends: - - gmp >=6.3.0,<7.0a0 - license: LGPL-3.0-only - license_family: LGPL - size: 373442 - timestamp: 1712339833358 -- kind: conda - name: mpfr - version: 4.2.1 - build: h9458935_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.2.1-h9458935_1.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/mpfr-4.2.1-h9458935_1.conda sha256: 38c501f6b8dff124e57711c01da23e204703a3c14276f4cf6abd28850b2b9893 md5: 8083b20f566639c22f78bcd6ca35b276 depends: @@ -3764,85 +3231,73 @@ packages: license_family: LGPL size: 643060 timestamp: 1712339500544 -- kind: pypi +- conda: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-h4f6b447_1.conda + sha256: 002209e7d1f21cdd04de17050ab2050de4347e5bf04210ce6a636cbabf43e1d0 + md5: b90df08f0deb2f58631447c1462c92a7 + depends: + - gmp >=6.3.0,<7.0a0 + license: LGPL-3.0-only + license_family: LGPL + size: 373442 + timestamp: 1712339833358 +- pypi: https://files.pythonhosted.org/packages/03/ac/f4fcb9d7a349953be5f4e78157a48b5110343a0e5228f77b3f7d1a1b8479/mypy-1.10.0-cp311-cp311-macosx_11_0_arm64.whl name: mypy version: 1.10.0 - url: https://files.pythonhosted.org/packages/7e/36/ca2b82d89828f484f1a068d9e25c08840c4cc6f6549e7ea755f4391e351f/mypy-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 1ec404a7cbe9fc0e92cb0e67f55ce0c025014e26d33e54d9e506a0f2d07fe5de + sha256: 8b2cbaca148d0754a54d44121b5825ae71868c7592a53b7292eeb0f3fdae95ee requires_dist: - typing-extensions>=4.1.0 - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_version < '3.11' + - tomli>=1.1.0 ; python_full_version < '3.11' - psutil>=4.0 ; extra == 'dmypy' - pip ; extra == 'install-types' - setuptools>=50 ; extra == 'mypyc' - lxml ; extra == 'reports' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/39/a5/e5aad5567ace09fcb179fbc3047cc2a6173743d84447b1ff71413e1a9881/mypy-1.10.0-cp311-cp311-win_amd64.whl name: mypy version: 1.10.0 - url: https://files.pythonhosted.org/packages/03/ac/f4fcb9d7a349953be5f4e78157a48b5110343a0e5228f77b3f7d1a1b8479/mypy-1.10.0-cp311-cp311-macosx_11_0_arm64.whl - sha256: 8b2cbaca148d0754a54d44121b5825ae71868c7592a53b7292eeb0f3fdae95ee + sha256: a87dbfa85971e8d59c9cc1fcf534efe664d8949e4c0b6b44e8ca548e746a8d53 requires_dist: - typing-extensions>=4.1.0 - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_version < '3.11' + - tomli>=1.1.0 ; python_full_version < '3.11' - psutil>=4.0 ; extra == 'dmypy' - pip ; extra == 'install-types' - setuptools>=50 ; extra == 'mypyc' - lxml ; extra == 'reports' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/7e/36/ca2b82d89828f484f1a068d9e25c08840c4cc6f6549e7ea755f4391e351f/mypy-1.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: mypy version: 1.10.0 - url: https://files.pythonhosted.org/packages/86/ec/64ffed9ea554845ff846bd1f6fc7b07ab507be1d2e1b0d58790d7ac2ca4c/mypy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl - sha256: 3be66771aa5c97602f382230165b856c231d1277c511c9a8dd058be4784472e1 + sha256: 1ec404a7cbe9fc0e92cb0e67f55ce0c025014e26d33e54d9e506a0f2d07fe5de requires_dist: - typing-extensions>=4.1.0 - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_version < '3.11' + - tomli>=1.1.0 ; python_full_version < '3.11' - psutil>=4.0 ; extra == 'dmypy' - pip ; extra == 'install-types' - setuptools>=50 ; extra == 'mypyc' - lxml ; extra == 'reports' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/86/ec/64ffed9ea554845ff846bd1f6fc7b07ab507be1d2e1b0d58790d7ac2ca4c/mypy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl name: mypy version: 1.10.0 - url: https://files.pythonhosted.org/packages/39/a5/e5aad5567ace09fcb179fbc3047cc2a6173743d84447b1ff71413e1a9881/mypy-1.10.0-cp311-cp311-win_amd64.whl - sha256: a87dbfa85971e8d59c9cc1fcf534efe664d8949e4c0b6b44e8ca548e746a8d53 + sha256: 3be66771aa5c97602f382230165b856c231d1277c511c9a8dd058be4784472e1 requires_dist: - typing-extensions>=4.1.0 - mypy-extensions>=1.0.0 - - tomli>=1.1.0 ; python_version < '3.11' + - tomli>=1.1.0 ; python_full_version < '3.11' - psutil>=4.0 ; extra == 'dmypy' - pip ; extra == 'install-types' - setuptools>=50 ; extra == 'mypyc' - lxml ; extra == 'reports' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl name: mypy-extensions version: 1.0.0 - url: https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl sha256: 4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d requires_python: '>=3.5' -- kind: conda - name: ncurses - version: 6.4.20240210 - build: h078ce10_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4.20240210-h078ce10_0.conda - sha256: 06f0905791575e2cd3aa961493c56e490b3d82ad9eb49f1c332bd338b0216911 - md5: 616ae8691e6608527d0071e6766dcb81 - license: X11 AND BSD-3-Clause - size: 820249 - timestamp: 1710866874348 -- kind: conda - name: ncurses - version: 6.4.20240210 - build: h59595ed_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4.20240210-h59595ed_0.conda sha256: aa0f005b6727aac6507317ed490f0904430584fa8ca722657e7f0fb94741de81 md5: 97da8860a0da5413c7c98a3b3838a645 depends: @@ -3850,21 +3305,21 @@ packages: license: X11 AND BSD-3-Clause size: 895669 timestamp: 1710866638986 -- kind: conda - name: ncurses - version: 6.4.20240210 - build: h73e2aa4_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4.20240210-h73e2aa4_0.conda sha256: 50b72acf08acbc4e5332807653e2ca6b26d4326e8af16fad1fd3f2ce9ea55503 md5: 50f28c512e9ad78589e3eab34833f762 license: X11 AND BSD-3-Clause size: 823010 timestamp: 1710866856626 -- kind: pypi +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4.20240210-h078ce10_0.conda + sha256: 06f0905791575e2cd3aa961493c56e490b3d82ad9eb49f1c332bd338b0216911 + md5: 616ae8691e6608527d0071e6766dcb81 + license: X11 AND BSD-3-Clause + size: 820249 + timestamp: 1710866874348 +- pypi: https://files.pythonhosted.org/packages/a8/05/9d4f9b78ead6b2661d6e8ea772e111fc4a9fbd866ad0c81906c11206b55e/networkx-3.1-py3-none-any.whl name: networkx version: '3.1' - url: https://files.pythonhosted.org/packages/a8/05/9d4f9b78ead6b2661d6e8ea772e111fc4a9fbd866ad0c81906c11206b55e/networkx-3.1-py3-none-any.whl sha256: 4f33f68cb2afcf86f28a45f43efc27a9386b535d567d2127f8f61d51dec58d36 requires_dist: - numpy>=1.20 ; extra == 'default' @@ -3888,14 +3343,13 @@ packages: - pytest-cov>=4.0 ; extra == 'test' - codecov>=2.1 ; extra == 'test' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl name: networkx version: 3.2.1 - url: https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl sha256: f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2 requires_dist: - numpy>=1.22 ; extra == 'default' - - scipy!=1.11.0,!=1.11.1,>=1.9 ; extra == 'default' + - scipy>=1.9,!=1.11.0,!=1.11.1 ; extra == 'default' - matplotlib>=3.5 ; extra == 'default' - pandas>=1.4 ; extra == 'default' - changelist==0.4 ; extra == 'developer' @@ -3917,14 +3371,13 @@ packages: - pytest>=7.2 ; extra == 'test' - pytest-cov>=4.0 ; extra == 'test' requires_python: '>=3.9' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/38/e9/5f72929373e1a0e8d142a130f3f97e6ff920070f87f91c4e13e40e0fba5a/networkx-3.3-py3-none-any.whl name: networkx version: '3.3' - url: https://files.pythonhosted.org/packages/38/e9/5f72929373e1a0e8d142a130f3f97e6ff920070f87f91c4e13e40e0fba5a/networkx-3.3-py3-none-any.whl sha256: 28575580c6ebdaf4505b22c6256a2b9de86b316dc63ba9e93abde3d78dfdbcf2 requires_dist: - numpy>=1.23 ; extra == 'default' - - scipy!=1.11.0,!=1.11.1,>=1.9 ; extra == 'default' + - scipy>=1.9,!=1.11.0,!=1.11.1 ; extra == 'default' - matplotlib>=3.6 ; extra == 'default' - pandas>=1.4 ; extra == 'default' - changelist==0.5 ; extra == 'developer' @@ -3945,26 +3398,7 @@ packages: - pytest>=7.2 ; extra == 'test' - pytest-cov>=4.0 ; extra == 'test' requires_python: '>=3.10' -- kind: conda - name: openblas-ilp64 - version: 0.3.27 - build: openmp_ha601604_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openblas-ilp64-0.3.27-openmp_ha601604_0.conda - sha256: 1eb80f64de15cd8909e17c5336ef24aa03dc32ec32ee0d63fc8d6220135a8bf6 - md5: 15ed8519349d405ab2d7f414244810d7 - depends: - - libopenblas-ilp64 0.3.27 openmp_h17068ef_0 - license: BSD-3-Clause - license_family: BSD - size: 5401303 - timestamp: 1712365670711 -- kind: conda - name: openblas-ilp64 - version: 0.3.27 - build: pthreads_h3d04fff_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openblas-ilp64-0.3.27-pthreads_h3d04fff_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/openblas-ilp64-0.3.27-pthreads_h3d04fff_0.conda sha256: 170ffcbfb0d1bc4d049a17f9d9eef5d857ad017162319d6b6eb996d52a236778 md5: 15e92dc6a755173a10d993b92d700e70 depends: @@ -3973,27 +3407,16 @@ packages: license_family: BSD size: 5615284 timestamp: 1712364198632 -- kind: conda - name: openlibm - version: 0.8.1 - build: h10d778d_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openlibm-0.8.1-h10d778d_1.conda - sha256: a92f75e0112c63ff966219eac281ed232089bd70da999dff46f1b2703c504260 - md5: 25033d503d913affcf5b51c0bf526502 +- conda: https://conda.anaconda.org/conda-forge/osx-64/openblas-ilp64-0.3.27-openmp_ha601604_0.conda + sha256: 1eb80f64de15cd8909e17c5336ef24aa03dc32ec32ee0d63fc8d6220135a8bf6 + md5: 15ed8519349d405ab2d7f414244810d7 depends: - - libopenlibm4 0.8.1 h10d778d_1 - license: MIT AND ISC AND BSD-2-Clause - size: 29448 - timestamp: 1698855560877 -- kind: conda - name: openlibm - version: 0.8.1 - build: hd590300_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openlibm-0.8.1-hd590300_1.conda + - libopenblas-ilp64 0.3.27 openmp_h17068ef_0 + license: BSD-3-Clause + license_family: BSD + size: 5401303 + timestamp: 1712365670711 +- conda: https://conda.anaconda.org/conda-forge/linux-64/openlibm-0.8.1-hd590300_1.conda sha256: 689a90096c3fdd76bd3620bd17a8de2924cf9e1ebe7c0d2d52c6f06eda2ad235 md5: 6eba22eb06d69e53d0ca01eef42bc675 depends: @@ -4002,85 +3425,72 @@ packages: license: MIT AND ISC AND BSD-2-Clause size: 29204 timestamp: 1698855384579 -- kind: conda - name: openssl - version: 3.3.0 - build: h0d3ecfb_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.0-h0d3ecfb_0.conda - sha256: 51f9be8fe929c2bb3243cd0707b6dfcec27541f8284b4bd9b063c288fc46f482 - md5: 25b0e522c3131886a637e347b2ca0c0f +- conda: https://conda.anaconda.org/conda-forge/osx-64/openlibm-0.8.1-h10d778d_1.conda + sha256: a92f75e0112c63ff966219eac281ed232089bd70da999dff46f1b2703c504260 + md5: 25033d503d913affcf5b51c0bf526502 + depends: + - libopenlibm4 0.8.1 h10d778d_1 + license: MIT AND ISC AND BSD-2-Clause + size: 29448 + timestamp: 1698855560877 +- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.0-hd590300_0.conda + sha256: fdbf05e4db88c592366c90bb82e446edbe33c6e49e5130d51c580b2629c0b5d5 + md5: c0f3abb4a16477208bbd43a39bd56f18 depends: - ca-certificates + - libgcc-ng >=12 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache - size: 2888226 - timestamp: 1714466346030 -- kind: conda - name: openssl - version: 3.3.0 - build: hcfcfb64_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.0-hcfcfb64_0.conda - sha256: ca7573b7503711b53b2464fa35e4efa6f89dcd3d436fb5f128722b853e356dfd - md5: a6c544c9f060740c625dbf6d92cf3495 + size: 2895187 + timestamp: 1714466138265 +- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.0-hd75f5a5_0.conda + sha256: d3889b0c89c2742e92e20f01e8f298b64c221df5d577c639b823a0bfe314e2e3 + md5: eb8c33aa7929a7714eab8b90c1d88afe depends: - ca-certificates - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache - size: 8358240 - timestamp: 1714468180752 -- kind: conda - name: openssl - version: 3.3.0 - build: hd590300_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.0-hd590300_0.conda - sha256: fdbf05e4db88c592366c90bb82e446edbe33c6e49e5130d51c580b2629c0b5d5 - md5: c0f3abb4a16477208bbd43a39bd56f18 + size: 2541802 + timestamp: 1714467068742 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.3.0-h0d3ecfb_0.conda + sha256: 51f9be8fe929c2bb3243cd0707b6dfcec27541f8284b4bd9b063c288fc46f482 + md5: 25b0e522c3131886a637e347b2ca0c0f depends: - ca-certificates - - libgcc-ng >=12 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache - size: 2895187 - timestamp: 1714466138265 -- kind: conda - name: openssl - version: 3.3.0 - build: hd75f5a5_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.3.0-hd75f5a5_0.conda - sha256: d3889b0c89c2742e92e20f01e8f298b64c221df5d577c639b823a0bfe314e2e3 - md5: eb8c33aa7929a7714eab8b90c1d88afe + size: 2888226 + timestamp: 1714466346030 +- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.3.0-hcfcfb64_0.conda + sha256: ca7573b7503711b53b2464fa35e4efa6f89dcd3d436fb5f128722b853e356dfd + md5: a6c544c9f060740c625dbf6d92cf3495 depends: - ca-certificates + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 constrains: - pyopenssl >=22.1 license: Apache-2.0 license_family: Apache - size: 2541802 - timestamp: 1714467068742 -- kind: pypi + size: 8358240 + timestamp: 1714468180752 +- pypi: https://files.pythonhosted.org/packages/07/1d/0315c4c462aac13f8b15063f135294957875c07bc24573c10ab4f5d8a53b/optree-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/3c/ea/efd59fc3cec0d0d7f953b956ef881ca4b972696c8f4261cbca23c636b908/optree-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: bc17f9d085cd75a2de4f299a9c5e3c3520138eac7596061e581230b03862b44d + sha256: 418850ceff364f51a6d81f32a1efd06a4e2d8df79a162e892685bc20c0aedd72 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4119,17 +3529,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/0b/1b/afe635bae61fedc09fc702e7162fe7f31f437c872f827d22b04fa4861c29/optree-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/cc/b8/33127d52de868d2aabc14ec6f53cb2dffafd14c5c708f50d171552a3a451/optree-0.11.0-cp311-cp311-macosx_11_0_arm64.whl - sha256: 39bed744a61e2f795e172d2853779ac59b8dea236982dc160ea22063afc99ca3 + sha256: 228b97e8c991739b10c8548c118747ba32ee765f88236342e492bf9648afc0bc requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4168,17 +3577,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/0d/a8/3ab0db4e460a79ba9d95748b76950db1e2b45d96abaea91c096dde289ca9/optree-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/eb/a7/b99e2a5f3e73e6fcdaa0a936577b993e7f6fe2c87410f745d9180aa8147d/optree-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl - sha256: 6e8c3757088cd7fce666f2a5e031b65d7898e210452380d2657c0fc0a7ec9932 + sha256: 5e5df0e8aaca124cc1ffca311786cc909810f3c046de090729cdafbf910082f8 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4217,17 +3625,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/0e/5d/ddf0296689db85fa44cbafb01ea062e19b036d86910964e60d5dee16952d/optree-0.11.0-cp38-cp38-macosx_11_0_arm64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/8f/db/e05a35451d4ba30fdc65ef168dfdc68a6939ea6afdc0101e3e77f97e1547/optree-0.11.0-cp311-cp311-win_amd64.whl - sha256: a64df43fce2d8eeafd7db6e27447c56b3fa64842df847819684b3b1cc254c016 + sha256: 3cdc9fac9888d9eff11128ccfc4d4c10309163e372f312f7942ecee8df3d7824 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4266,17 +3673,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/29/68/07fa07e56f3c938a8a7a1b59f49d6713a3508dfe0787c89a0c448dfb39ad/optree-0.11.0-cp38-cp38-win_amd64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/70/bc/7e15e33521c46ad3e81bcae29994e9fc4913efa0480b401a04e1776a4346/optree-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl - sha256: 2bc08fb9691f43afc3a01119dead6b823ce3d7239e42fc3e47d4028eed50a6a2 + sha256: 162ed3ff2eb3f1c358e131e72c025f2b93d69b906e9057a811d014032ec71dc8 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4315,17 +3721,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/2d/5d/c573971771ed0660c182cbbd63cee01d812a5ebac79df4226b459b27c204/optree-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/29/68/07fa07e56f3c938a8a7a1b59f49d6713a3508dfe0787c89a0c448dfb39ad/optree-0.11.0-cp38-cp38-win_amd64.whl - sha256: 162ed3ff2eb3f1c358e131e72c025f2b93d69b906e9057a811d014032ec71dc8 + sha256: b201a9405e250cf5770955863af2a236e382bdf5e4e086897ff03c41418c39da requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4364,17 +3769,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/3c/ea/efd59fc3cec0d0d7f953b956ef881ca4b972696c8f4261cbca23c636b908/optree-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/0e/5d/ddf0296689db85fa44cbafb01ea062e19b036d86910964e60d5dee16952d/optree-0.11.0-cp38-cp38-macosx_11_0_arm64.whl - sha256: 3cdc9fac9888d9eff11128ccfc4d4c10309163e372f312f7942ecee8df3d7824 + sha256: bc17f9d085cd75a2de4f299a9c5e3c3520138eac7596061e581230b03862b44d requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4413,17 +3817,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/3e/4a/fadc346b3c83f0eb3b2cd91cf5ccad2851ac3411c2e6d33c9cfd54b3659a/optree-0.11.0-cp310-cp310-macosx_11_0_arm64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/2d/5d/c573971771ed0660c182cbbd63cee01d812a5ebac79df4226b459b27c204/optree-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: b201a9405e250cf5770955863af2a236e382bdf5e4e086897ff03c41418c39da + sha256: 0df9a3923725aabb112ec7f10c74fa96b6c640da1cd30e7bc62fd4b03ef02875 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4462,17 +3865,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/5e/a2/8eca362c33207cc6832088414fdeec4afa7953f06c6d7182c7a9ecb00da0/optree-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/ee/23/617f6287dd589ad50d9a5f86e3110622fc013621f87f9bd80fd2ed6128e9/optree-0.11.0-cp39-cp39-win_amd64.whl - sha256: b26ac807d8993b7e43081b4b7bbb0378b4e5f3e6525daf923c470bc176cc3327 + sha256: f53951bfb640417558568284a8949d67bcdbf21fa0113107e20bd9403aa20b2b requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4511,17 +3913,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/5f/d4/e7db05dadaee0fed733f4c179b80539494d22f55e2b6d417fadeee9c1938/optree-0.11.0-cp39-cp39-macosx_11_0_arm64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/dc/57/4ddcfd28f208d7ca02d96c375d8a5c1e84cc604464522c6c161ac63e30b5/optree-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: b9d236bc1491a5e366921b95fecc05aa6ff55989a81f2242cd11121b82c24503 + sha256: b8126d81ecb2c9e3554420834014ba343251f564c905ee3bef09d205b924b0c0 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4560,17 +3961,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/70/bc/7e15e33521c46ad3e81bcae29994e9fc4913efa0480b401a04e1776a4346/optree-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/07/1d/0315c4c462aac13f8b15063f135294957875c07bc24573c10ab4f5d8a53b/optree-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl - sha256: 418850ceff364f51a6d81f32a1efd06a4e2d8df79a162e892685bc20c0aedd72 + sha256: 2bc08fb9691f43afc3a01119dead6b823ce3d7239e42fc3e47d4028eed50a6a2 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4609,17 +4009,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/8d/d6/8fbe48f9a022cd58926be69a5e8a6c2b96b7206f2bd722116b37d334bb50/optree-0.11.0-cp312-cp312-win_amd64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/5f/d4/e7db05dadaee0fed733f4c179b80539494d22f55e2b6d417fadeee9c1938/optree-0.11.0-cp39-cp39-macosx_11_0_arm64.whl - sha256: b8126d81ecb2c9e3554420834014ba343251f564c905ee3bef09d205b924b0c0 + sha256: ee208f0bec6436085a9fa3ae98af54bfcb8822086894fc1ade283e80a6f11fd7 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4658,17 +4057,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/8f/db/e05a35451d4ba30fdc65ef168dfdc68a6939ea6afdc0101e3e77f97e1547/optree-0.11.0-cp311-cp311-win_amd64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/5e/a2/8eca362c33207cc6832088414fdeec4afa7953f06c6d7182c7a9ecb00da0/optree-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl - sha256: f53951bfb640417558568284a8949d67bcdbf21fa0113107e20bd9403aa20b2b + sha256: a64df43fce2d8eeafd7db6e27447c56b3fa64842df847819684b3b1cc254c016 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4707,17 +4105,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/a4/69/4601d52757167698fbf6718680b51feadc9dfaaf8569759e1e3fa14823b6/optree-0.11.0-cp312-cp312-macosx_11_0_arm64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/3e/4a/fadc346b3c83f0eb3b2cd91cf5ccad2851ac3411c2e6d33c9cfd54b3659a/optree-0.11.0-cp310-cp310-macosx_11_0_arm64.whl - sha256: 0df9a3923725aabb112ec7f10c74fa96b6c640da1cd30e7bc62fd4b03ef02875 + sha256: 738e8bf4158e9c11cd051d89c2e453aeacf80ff8719ebc3251069015646554d0 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4756,17 +4153,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/c7/0b/8a3e5da51d7d25ca8bc08c257fb448259a2abd66f62b47407d8c32846826/optree-0.11.0-cp310-cp310-win_amd64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/c7/0b/8a3e5da51d7d25ca8bc08c257fb448259a2abd66f62b47407d8c32846826/optree-0.11.0-cp310-cp310-win_amd64.whl sha256: a91840f9d45e7c01f151ba1815ae32b4c3c21e4290298772ee4b13314f729856 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4805,17 +4201,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/cc/b8/33127d52de868d2aabc14ec6f53cb2dffafd14c5c708f50d171552a3a451/optree-0.11.0-cp311-cp311-macosx_11_0_arm64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/0b/1b/afe635bae61fedc09fc702e7162fe7f31f437c872f827d22b04fa4861c29/optree-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 228b97e8c991739b10c8548c118747ba32ee765f88236342e492bf9648afc0bc + sha256: 39bed744a61e2f795e172d2853779ac59b8dea236982dc160ea22063afc99ca3 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4854,17 +4249,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/dc/57/4ddcfd28f208d7ca02d96c375d8a5c1e84cc604464522c6c161ac63e30b5/optree-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/8d/d6/8fbe48f9a022cd58926be69a5e8a6c2b96b7206f2bd722116b37d334bb50/optree-0.11.0-cp312-cp312-win_amd64.whl - sha256: ee208f0bec6436085a9fa3ae98af54bfcb8822086894fc1ade283e80a6f11fd7 + sha256: b9d236bc1491a5e366921b95fecc05aa6ff55989a81f2242cd11121b82c24503 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4903,17 +4297,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/eb/a7/b99e2a5f3e73e6fcdaa0a936577b993e7f6fe2c87410f745d9180aa8147d/optree-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/a4/69/4601d52757167698fbf6718680b51feadc9dfaaf8569759e1e3fa14823b6/optree-0.11.0-cp312-cp312-macosx_11_0_arm64.whl - sha256: 738e8bf4158e9c11cd051d89c2e453aeacf80ff8719ebc3251069015646554d0 + sha256: 6e8c3757088cd7fce666f2a5e031b65d7898e210452380d2657c0fc0a7ec9932 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -4952,17 +4345,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/ee/23/617f6287dd589ad50d9a5f86e3110622fc013621f87f9bd80fd2ed6128e9/optree-0.11.0-cp39-cp39-win_amd64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/0d/a8/3ab0db4e460a79ba9d95748b76950db1e2b45d96abaea91c096dde289ca9/optree-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 5e5df0e8aaca124cc1ffca311786cc909810f3c046de090729cdafbf910082f8 + sha256: b26ac807d8993b7e43081b4b7bbb0378b4e5f3e6525daf923c470bc176cc3327 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -5001,17 +4393,16 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/fa/e4/6dcb982b34f76a310c1e93ef0df27600cc1d8b0d016fe9daf7a726933b71/optree-0.11.0-cp312-cp312-macosx_10_9_x86_64.whl name: optree version: 0.11.0 - url: https://files.pythonhosted.org/packages/fa/e4/6dcb982b34f76a310c1e93ef0df27600cc1d8b0d016fe9daf7a726933b71/optree-0.11.0-cp312-cp312-macosx_10_9_x86_64.whl sha256: 64c2e00fe508f50a42c50838df0d1f5be0dce5b4bef2373db8ad72b860211015 requires_dist: - typing-extensions>=4.0.0 - - jax[cpu]<0.5.0a0,>=0.4.6 ; extra == 'benchmark' - - torch<2.1.0a0,>=2.0 ; extra == 'benchmark' + - jax[cpu]>=0.4.6,<0.5.0a0 ; extra == 'benchmark' + - torch>=2.0,<2.1.0a0 ; extra == 'benchmark' - torchvision ; extra == 'benchmark' - - dm-tree<0.2.0a0,>=0.1 ; extra == 'benchmark' + - dm-tree>=0.1,<0.2.0a0 ; extra == 'benchmark' - pandas ; extra == 'benchmark' - tabulate ; extra == 'benchmark' - termcolor ; extra == 'benchmark' @@ -5050,13 +4441,7 @@ packages: - pytest-xdist ; extra == 'test' - torch ; extra == 'torch' requires_python: '>=3.7' -- kind: conda - name: p7zip - version: '16.02' - build: h9c3ff4c_1001 - build_number: 1001 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/p7zip-16.02-h9c3ff4c_1001.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/p7zip-16.02-h9c3ff4c_1001.tar.bz2 sha256: 01aecc8f648ed0825ecf4c384c2f4759146ef8f2815348efddebf42ec769419c md5: 941066943c0cac69d5aa52189451aa5f depends: @@ -5066,13 +4451,7 @@ packages: license_family: LGPL size: 2304688 timestamp: 1650994775055 -- kind: conda - name: p7zip - version: '16.02' - build: he49afe7_1001 - build_number: 1001 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/p7zip-16.02-he49afe7_1001.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-64/p7zip-16.02-he49afe7_1001.tar.bz2 sha256: d5fcd4081c0dd2faddf9bd1576903db432944b6bc12b929aa760c877936c869f md5: cbf68b6162fa5d0f789331c91853b6bb depends: @@ -5081,33 +4460,12 @@ packages: license_family: LGPL size: 2379540 timestamp: 1650995240020 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/49/df/1fceb2f8900f8639e278b056416d49134fb8d84c5942ffaa01ad34782422/packaging-24.0-py3-none-any.whl name: packaging version: '24.0' - url: https://files.pythonhosted.org/packages/49/df/1fceb2f8900f8639e278b056416d49134fb8d84c5942ffaa01ad34782422/packaging-24.0-py3-none-any.whl sha256: 2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5 requires_python: '>=3.7' -- kind: conda - name: pcre2 - version: '10.43' - build: h0ad2156_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda - sha256: 226714bbf89d45bf7da4c7551e21b8a833f51d33379fe3dfbfe31b72832d4dba - md5: 9c8651803886ce9d5983e107a0df4ea8 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libzlib >=1.2.13,<1.3.0a0 - license: BSD-3-Clause - license_family: BSD - size: 836581 - timestamp: 1708118455741 -- kind: conda - name: pcre2 - version: '10.43' - build: hcad00b1_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.43-hcad00b1_0.conda sha256: 766dd986a7ed6197676c14699000bba2625fd26c8a890fcb7a810e5cf56155bc md5: 8292dea9e022d9610a11fce5e0896ed8 depends: @@ -5118,25 +4476,18 @@ packages: license_family: BSD size: 950847 timestamp: 1708118050286 -- kind: conda - name: perl - version: 5.32.1 - build: 7_h10d778d_perl5 - build_number: 7 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-7_h10d778d_perl5.conda - sha256: 8ebd35e2940055a93135b9fd11bef3662cecef72d6ee651f68d64a2f349863c7 - md5: dc442e0885c3a6b65e61c61558161a9e - license: GPL-1.0-or-later OR Artistic-1.0-Perl - size: 12334471 - timestamp: 1703311001432 -- kind: conda - name: perl - version: 5.32.1 - build: 7_hd590300_perl5 +- conda: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.43-h0ad2156_0.conda + sha256: 226714bbf89d45bf7da4c7551e21b8a833f51d33379fe3dfbfe31b72832d4dba + md5: 9c8651803886ce9d5983e107a0df4ea8 + depends: + - bzip2 >=1.0.8,<2.0a0 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + license_family: BSD + size: 836581 + timestamp: 1708118455741 +- conda: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda build_number: 7 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-7_hd590300_perl5.conda sha256: 9ec32b6936b0e37bcb0ed34f22ec3116e75b3c0964f9f50ecea5f58734ed6ce9 md5: f2cfec9406850991f4e3d960cc9e3321 depends: @@ -5145,10 +4496,16 @@ packages: license: GPL-1.0-or-later OR Artistic-1.0-Perl size: 13344463 timestamp: 1703310653947 -- kind: pypi +- conda: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-7_h10d778d_perl5.conda + build_number: 7 + sha256: 8ebd35e2940055a93135b9fd11bef3662cecef72d6ee651f68d64a2f349863c7 + md5: dc442e0885c3a6b65e61c61558161a9e + license: GPL-1.0-or-later OR Artistic-1.0-Perl + size: 12334471 + timestamp: 1703311001432 +- pypi: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl name: pluggy version: 1.5.0 - url: https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl sha256: 44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669 requires_dist: - pre-commit ; extra == 'dev' @@ -5156,19 +4513,17 @@ packages: - pytest ; extra == 'testing' - pytest-benchmark ; extra == 'testing' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/97/9c/372fef8377a6e340b1704768d20daaded98bf13282b5327beb2e2fe2c7ef/pygments-2.17.2-py3-none-any.whl name: pygments version: 2.17.2 - url: https://files.pythonhosted.org/packages/97/9c/372fef8377a6e340b1704768d20daaded98bf13282b5327beb2e2fe2c7ef/pygments-2.17.2-py3-none-any.whl sha256: b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c requires_dist: - - importlib-metadata ; python_version < '3.8' and extra == 'plugins' + - importlib-metadata ; python_full_version < '3.8' and extra == 'plugins' - colorama>=0.4.6 ; extra == 'windows-terminal' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/b2/6d/d875cb27a1c875e69a826acf0257d5046b2d585e29feb7551ff1ee2b9262/pytask-0.4.7-py3-none-any.whl name: pytask version: 0.4.7 - url: https://files.pythonhosted.org/packages/b2/6d/d875cb27a1c875e69a826acf0257d5046b2d585e29feb7551ff1ee2b9262/pytask-0.4.7-py3-none-any.whl sha256: d86eb67b4a20e0281444f165f7e93dee999567e2cdc071d0734f57bffb98a5ae requires_dist: - attrs>=21.3 @@ -5180,9 +4535,9 @@ packages: - pluggy>=1 - rich - sqlalchemy>=2 - - tomli>=1 ; python_version < '3.11' - - typing-extensions ; python_version < '3.9' - - universal-pathlib<0.2 ; python_version < '3.12' and extra == 'all' + - tomli>=1 ; python_full_version < '3.11' + - typing-extensions ; python_full_version < '3.9' + - universal-pathlib<0.2 ; python_full_version < '3.12' and extra == 'all' - furo ; extra == 'docs' - ipython ; extra == 'docs' - myst-parser ; extra == 'docs' @@ -5203,15 +4558,14 @@ packages: - aiohttp ; extra == 'test' - requests ; extra == 'test' requires_python: '>=3.8' -- kind: pypi +- pypi: ./ name: pytask-julia - version: 0.4.1.dev14+g6d5e889.d20240526 - path: . - sha256: cdce79d9ba8b2b61d57f52890176ae939a63c82781744ec3afbf6f5c173a544b + version: 0.4.1.dev18+g252049b.d20250726 + sha256: 40fc0af481ccafe3c24d59bed12310dd39a1da56afc002d0103a93b134966954 requires_dist: - click - pluggy>=1.0.0 - - pytask>=0.4.5 + - pytask>=0.4.5,<0.5.2 - pytask-parallel ; extra == 'test' - pytest ; extra == 'test' - pytest-cov ; extra == 'test' @@ -5222,10 +4576,9 @@ packages: - types-pyyaml ; extra == 'typing' requires_python: '>=3.8' editable: true -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/1a/f9/7ad241d7f274e1c271b06a7a0bcb16f9bbf44624c0760d7d5f0a9e68e012/pytask_parallel-0.4.1-py3-none-any.whl name: pytask-parallel version: 0.4.1 - url: https://files.pythonhosted.org/packages/1a/f9/7ad241d7f274e1c271b06a7a0bcb16f9bbf44624c0760d7d5f0a9e68e012/pytask_parallel-0.4.1-py3-none-any.whl sha256: 57f51215e8013b55e1fb73cb16d8c6438b657e2b0f8eb207b0a413abe019ffc5 requires_dist: - attrs>=21.3.0 @@ -5239,17 +4592,16 @@ packages: - pytest ; extra == 'test' - pytest-cov ; extra == 'test' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/c4/43/6b1debd95ecdf001bc46789a933f658da3f9738c65f32db3f4e8f2a4ca97/pytest-8.2.0-py3-none-any.whl name: pytest version: 8.2.0 - url: https://files.pythonhosted.org/packages/c4/43/6b1debd95ecdf001bc46789a933f658da3f9738c65f32db3f4e8f2a4ca97/pytest-8.2.0-py3-none-any.whl sha256: 1733f0620f6cda4095bbf0d9ff8022486e91892245bb9e7d5542c018f612f233 requires_dist: - iniconfig - packaging - - pluggy<2.0,>=1.5 - - exceptiongroup>=1.0.0rc8 ; python_version < '3.11' - - tomli>=1 ; python_version < '3.11' + - pluggy>=1.5,<2.0 + - exceptiongroup>=1.0.0rc8 ; python_full_version < '3.11' + - tomli>=1 ; python_full_version < '3.11' - colorama ; sys_platform == 'win32' - argcomplete ; extra == 'dev' - attrs>=19.2 ; extra == 'dev' @@ -5260,10 +4612,9 @@ packages: - setuptools ; extra == 'dev' - xmlschema ; extra == 'dev' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/78/3a/af5b4fa5961d9a1e6237b530eb87dd04aea6eb83da09d2a4073d81b54ccf/pytest_cov-5.0.0-py3-none-any.whl name: pytest-cov version: 5.0.0 - url: https://files.pythonhosted.org/packages/78/3a/af5b4fa5961d9a1e6237b530eb87dd04aea6eb83da09d2a4073d81b54ccf/pytest_cov-5.0.0-py3-none-any.whl sha256: 4f0764a1219df53214206bf1feea4633c3b558a2925c8b59f144f682861ce652 requires_dist: - pytest>=4.6 @@ -5274,10 +4625,9 @@ packages: - pytest-xdist ; extra == 'testing' - virtualenv ; extra == 'testing' requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl name: pytest-xdist version: 3.6.1 - url: https://files.pythonhosted.org/packages/6d/82/1d96bf03ee4c0fdc3c0cbe61470070e659ca78dc0086fb88b66c185e2449/pytest_xdist-3.6.1-py3-none-any.whl sha256: 9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7 requires_dist: - execnet>=2.1 @@ -5286,81 +4636,81 @@ packages: - setproctitle ; extra == 'setproctitle' - filelock ; extra == 'testing' requires_python: '>=3.8' -- kind: conda - name: python - version: 3.8.19 - build: h2469fbe_0_cpython - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.8.19-h2469fbe_0_cpython.conda - sha256: 60d1efeb9863df29497865b17ffddc9e155769e9f27fa3d874c0c58879bb4c3f - md5: e6d175e880bd0510eb84662e2a139109 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.14-hd12c33a_0_cpython.conda + sha256: 76a5d12e73542678b70a94570f7b0f7763f9a938f77f0e75d9ea615ef22aa84c + md5: 2b4ba962994e8bd4be9ff5b64b75aff2 depends: - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 - libsqlite >=3.45.2,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 - libzlib >=1.2.13,<1.3.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 constrains: - - python_abi 3.8.* *_cp38 + - python_abi 3.10.* *_cp310 license: Python-2.0 - size: 11719163 - timestamp: 1710939584543 -- kind: conda - name: python - version: 3.8.19 - build: h4de0772_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.8.19-h4de0772_0_cpython.conda - sha256: 56f8d32ba1985c65aa9be8c59b790f83dd9bc951b34003c3d14ae7bc700a9eae - md5: 1fea550de7dcc8f898159b8f6920692e + size: 25517742 + timestamp: 1710939725109 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda + sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 + md5: ac68acfa8b558ed406c75e98d3428d7b depends: - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.2,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.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.20240210,<7.0a0 - openssl >=3.2.1,<4.0a0 + - readline >=8.2,<9.0a0 - tk >=8.6.13,<8.7.0a0 - - vc >=14.1,<15 - - vc14_runtime >=14.16.27033 + - tzdata - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.8.* *_cp38 + - python_abi 3.11.* *_cp311 license: Python-2.0 - size: 16090293 - timestamp: 1710939361361 -- kind: conda - name: python - version: 3.8.19 - build: h5ba8234_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.8.19-h5ba8234_0_cpython.conda - sha256: db223a5a303a2b25f38684b6594754a8adc95114262366725d3affd3209b2d97 - md5: 3f7e6b93ed3be38d1f4d76fac185dc89 + size: 30884494 + timestamp: 1713553104915 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.3-hab00c5b_0_cpython.conda + sha256: f9865bcbff69f15fd89a33a2da12ad616e98d65ce7c83c644b92e66e5016b227 + md5: 2540b74d304f71d3e89c81209db4db84 depends: - bzip2 >=1.0.8,<2.0a0 + - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 + - libgcc-ng >=12 + - libnsl >=2.0.1,<2.1.0a0 - libsqlite >=3.45.2,<4.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcrypt >=4.4.36 - libzlib >=1.2.13,<1.3.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 constrains: - - python_abi 3.8.* *_cp38 + - python_abi 3.12.* *_cp312 license: Python-2.0 - size: 12325720 - timestamp: 1710939847267 -- kind: conda - name: python - version: 3.8.19 - build: hd12c33a_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.8.19-hd12c33a_0_cpython.conda + size: 31991381 + timestamp: 1713208036041 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.8.19-hd12c33a_0_cpython.conda sha256: 71899083b05d7f489887b029387c0588e353b9c461f74ebf864c0620586108ba md5: 53aabe8cf596487ec6f1ce319c93a741 depends: @@ -5383,12 +4733,7 @@ packages: license: Python-2.0 size: 22357104 timestamp: 1710939954552 -- kind: conda - name: python - version: 3.9.19 - build: h0755675_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.19-h0755675_0_cpython.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.19-h0755675_0_cpython.conda sha256: b9253ca9ca5427e6da4b1d43353a110e0f2edfab9c951afb4bf01cbae2825b31 md5: d9ee3647fbd9e8595b8df759b2bbefb8 depends: @@ -5412,42 +4757,34 @@ packages: license: Python-2.0 size: 23800555 timestamp: 1710940120866 -- kind: conda - name: python - version: 3.9.19 - build: h4de0772_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.9.19-h4de0772_0_cpython.conda - sha256: 92d847bc9e79a60c1d139aa4ca0385d283b90aa2d7421bb3ffcb5dc0678fd72f - md5: b6999bc275e0e6beae7b1c8ea0be1e85 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.14-h00d2728_0_cpython.conda + sha256: 00c1de2d46ede26609ef4e84a44b83be7876ba6a0215b7c83bff41a0656bf694 + md5: 0a1cddc4382c5c171e791c70740546dd depends: - bzip2 >=1.0.8,<2.0a0 - libffi >=3.4,<4.0a0 - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.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 - - vc >=14.1,<15 - - vc14_runtime >=14.16.27033 - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.9.* *_cp39 + - python_abi 3.10.* *_cp310 license: Python-2.0 - size: 16906240 - timestamp: 1710938565297 -- kind: conda - name: python - version: 3.9.19 - build: h7a9c478_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.19-h7a9c478_0_cpython.conda - sha256: 58b76be84683bc03112b3ed7e377e99af24844ebf7d7568f6466a2dae7a887fe - md5: 7d53d366acd9dbfb498c69326ccb520a + size: 11890228 + timestamp: 1710940046031 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda + sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c + md5: 612763bc5ede9552e4233ec518b9c9fb depends: + - __osx >=10.9 - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.2,<4.0a0 + - libsqlite >=3.45.3,<4.0a0 - libzlib >=1.2.13,<1.3.0a0 - ncurses >=6.4.20240210,<7.0a0 - openssl >=3.2.1,<4.0a0 @@ -5456,20 +4793,17 @@ packages: - tzdata - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.9.* *_cp39 + - python_abi 3.11.* *_cp311 license: Python-2.0 - size: 12372436 - timestamp: 1710940037648 -- kind: conda - name: python - version: 3.9.19 - build: hd7ebdb9_0_cpython - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.19-hd7ebdb9_0_cpython.conda - sha256: 3b93f7a405f334043758dfa8aaca050429a954a37721a6462ebd20e94ef7c5a0 - md5: 45c4d173b12154f746be3b49b1190634 + size: 15503226 + timestamp: 1713553747073 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.3-h1411813_0_cpython.conda + sha256: 3b327ffc152a245011011d1d730781577a8274fde1cf6243f073749ead8f1c2a + md5: df1448ec6cbf8eceb03d29003cf72ae6 depends: + - __osx >=10.9 - bzip2 >=1.0.8,<2.0a0 + - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.0a0 @@ -5480,18 +4814,13 @@ packages: - tzdata - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.9.* *_cp39 + - python_abi 3.12.* *_cp312 license: Python-2.0 - size: 11847835 - timestamp: 1710939779164 -- kind: conda - name: python - version: 3.10.14 - build: h00d2728_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.14-h00d2728_0_cpython.conda - sha256: 00c1de2d46ede26609ef4e84a44b83be7876ba6a0215b7c83bff41a0656bf694 - md5: 0a1cddc4382c5c171e791c70740546dd + size: 14557341 + timestamp: 1713208068012 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.8.19-h5ba8234_0_cpython.conda + sha256: db223a5a303a2b25f38684b6594754a8adc95114262366725d3affd3209b2d97 + md5: 3f7e6b93ed3be38d1f4d76fac185dc89 depends: - bzip2 >=1.0.8,<2.0a0 - libffi >=3.4,<4.0a0 @@ -5501,21 +4830,15 @@ packages: - 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 constrains: - - python_abi 3.10.* *_cp310 + - python_abi 3.8.* *_cp38 license: Python-2.0 - size: 11890228 - timestamp: 1710940046031 -- kind: conda - name: python - version: 3.10.14 - build: h2469fbe_0_cpython - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.14-h2469fbe_0_cpython.conda - sha256: 454d609fe25daedce9e886efcbfcadad103ed0362e7cb6d2bcddec90b1ecd3ee - md5: 4ae999c8227c6d8c7623d32d51d25ea9 + size: 12325720 + timestamp: 1710939847267 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.9.19-h7a9c478_0_cpython.conda + sha256: 58b76be84683bc03112b3ed7e377e99af24844ebf7d7568f6466a2dae7a887fe + md5: 7d53d366acd9dbfb498c69326ccb520a depends: - bzip2 >=1.0.8,<2.0a0 - libffi >=3.4,<4.0a0 @@ -5528,51 +4851,38 @@ packages: - tzdata - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.10.* *_cp310 + - python_abi 3.9.* *_cp39 license: Python-2.0 - size: 12336005 - timestamp: 1710939659384 -- kind: conda - name: python - version: 3.10.14 - build: h4de0772_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.14-h4de0772_0_cpython.conda - sha256: 332f97d9927b65857d6d2d4d50d66dce9b37da81edb67833ae6b88ad52acbd0c - md5: 4a00e84f29d1eb418d84970598c444e1 + size: 12372436 + timestamp: 1710940037648 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.14-h2469fbe_0_cpython.conda + sha256: 454d609fe25daedce9e886efcbfcadad103ed0362e7cb6d2bcddec90b1ecd3ee + md5: 4ae999c8227c6d8c7623d32d51d25ea9 depends: - bzip2 >=1.0.8,<2.0a0 - libffi >=3.4,<4.0a0 - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.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 - - vc >=14.1,<15 - - vc14_runtime >=14.16.27033 - xz >=5.2.6,<6.0a0 constrains: - python_abi 3.10.* *_cp310 license: Python-2.0 - size: 15864027 - timestamp: 1710938888352 -- kind: conda - name: python - version: 3.10.14 - build: hd12c33a_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.14-hd12c33a_0_cpython.conda - sha256: 76a5d12e73542678b70a94570f7b0f7763f9a938f77f0e75d9ea615ef22aa84c - md5: 2b4ba962994e8bd4be9ff5b64b75aff2 + size: 12336005 + timestamp: 1710939659384 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.9-h932a869_0_cpython.conda + sha256: a436ceabde1f056a0ac3e347dadc780ee2a135a421ddb6e9a469370769829e3c + md5: 293e0713ae804b5527a673e7605c04fc depends: + - __osx >=11.0 - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 + - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - libnsl >=2.0.1,<2.1.0a0 - - libsqlite >=3.45.2,<4.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcrypt >=4.4.36 + - libsqlite >=3.45.3,<4.0a0 - libzlib >=1.2.13,<1.3.0a0 - ncurses >=6.4.20240210,<7.0a0 - openssl >=3.2.1,<4.0a0 @@ -5581,76 +4891,56 @@ packages: - tzdata - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.10.* *_cp310 + - python_abi 3.11.* *_cp311 license: Python-2.0 - size: 25517742 - timestamp: 1710939725109 -- kind: conda - name: python - version: 3.11.9 - build: h631f459_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.9-h631f459_0_cpython.conda - sha256: 23698d4eb24970f74911d120204318d48384fabbb25e1e57773ad74fcd38fb12 - md5: d7ed1e7c4e2dcdfd4599bd42c0613e6c + size: 14644189 + timestamp: 1713552154779 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.3-h4a7b5fc_0_cpython.conda + sha256: c761fb3713ea66bce3889b33b6f400afb2dd192d1fc2686446e9d8166cfcec6b + md5: 8643ab37bece6ae8f112464068d9df9c depends: + - __osx >=11.0 - bzip2 >=1.0.8,<2.0a0 - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.3,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.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 - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.11.* *_cp311 + - python_abi 3.12.* *_cp312 license: Python-2.0 - size: 18232422 - timestamp: 1713551717924 -- kind: conda - name: python - version: 3.11.9 - build: h657bba9_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.9-h657bba9_0_cpython.conda - sha256: 3b50a5abb3b812875beaa9ab792dbd1bf44f335c64e9f9fedcf92d953995651c - md5: 612763bc5ede9552e4233ec518b9c9fb + size: 13207557 + timestamp: 1713206576646 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.8.19-h2469fbe_0_cpython.conda + sha256: 60d1efeb9863df29497865b17ffddc9e155769e9f27fa3d874c0c58879bb4c3f + md5: e6d175e880bd0510eb84662e2a139109 depends: - - __osx >=10.9 - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.3,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.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 constrains: - - python_abi 3.11.* *_cp311 + - python_abi 3.8.* *_cp38 license: Python-2.0 - size: 15503226 - timestamp: 1713553747073 -- kind: conda - name: python - version: 3.11.9 - build: h932a869_0_cpython - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.9-h932a869_0_cpython.conda - sha256: a436ceabde1f056a0ac3e347dadc780ee2a135a421ddb6e9a469370769829e3c - md5: 293e0713ae804b5527a673e7605c04fc + size: 11719163 + timestamp: 1710939584543 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.19-hd7ebdb9_0_cpython.conda + sha256: 3b93f7a405f334043758dfa8aaca050429a954a37721a6462ebd20e94ef7c5a0 + md5: 45c4d173b12154f746be3b49b1190634 depends: - - __osx >=11.0 - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.3,<4.0a0 + - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.0a0 - ncurses >=6.4.20240210,<7.0a0 - openssl >=3.2.1,<4.0a0 @@ -5659,72 +4949,51 @@ packages: - tzdata - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.11.* *_cp311 + - python_abi 3.9.* *_cp39 license: Python-2.0 - size: 14644189 - timestamp: 1713552154779 -- kind: conda - name: python - version: 3.11.9 - build: hb806964_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.9-hb806964_0_cpython.conda - sha256: 177f33a1fb8d3476b38f73c37b42f01c0b014fa0e039a701fd9f83d83aae6d40 - md5: ac68acfa8b558ed406c75e98d3428d7b + size: 11847835 + timestamp: 1710939779164 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.10.14-h4de0772_0_cpython.conda + sha256: 332f97d9927b65857d6d2d4d50d66dce9b37da81edb67833ae6b88ad52acbd0c + md5: 4a00e84f29d1eb418d84970598c444e1 depends: - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - libnsl >=2.0.1,<2.1.0a0 - - libsqlite >=3.45.3,<4.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcrypt >=4.4.36 + - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.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 + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.11.* *_cp311 + - python_abi 3.10.* *_cp310 license: Python-2.0 - size: 30884494 - timestamp: 1713553104915 -- kind: conda - name: python - version: 3.12.3 - build: h1411813_0_cpython - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.3-h1411813_0_cpython.conda - sha256: 3b327ffc152a245011011d1d730781577a8274fde1cf6243f073749ead8f1c2a - md5: df1448ec6cbf8eceb03d29003cf72ae6 + size: 15864027 + timestamp: 1710938888352 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.9-h631f459_0_cpython.conda + sha256: 23698d4eb24970f74911d120204318d48384fabbb25e1e57773ad74fcd38fb12 + md5: d7ed1e7c4e2dcdfd4599bd42c0613e6c depends: - - __osx >=10.9 - bzip2 >=1.0.8,<2.0a0 - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libsqlite >=3.45.2,<4.0a0 + - libsqlite >=3.45.3,<4.0a0 - libzlib >=1.2.13,<1.3.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 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.12.* *_cp312 + - python_abi 3.11.* *_cp311 license: Python-2.0 - size: 14557341 - timestamp: 1713208068012 -- kind: conda - name: python - version: 3.12.3 - build: h2628c8c_0_cpython - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/python-3.12.3-h2628c8c_0_cpython.conda + size: 18232422 + timestamp: 1713551717924 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.3-h2628c8c_0_cpython.conda sha256: 1a95494abe572a8819c933f978df89f00bde72ea9432d46a70632599e8029ea4 md5: f07c8c5dd98767f9a652de5d039b284e depends: @@ -5745,189 +5014,144 @@ packages: license: Python-2.0 size: 16179248 timestamp: 1713205644673 -- kind: conda - name: python - version: 3.12.3 - build: h4a7b5fc_0_cpython - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.3-h4a7b5fc_0_cpython.conda - sha256: c761fb3713ea66bce3889b33b6f400afb2dd192d1fc2686446e9d8166cfcec6b - md5: 8643ab37bece6ae8f112464068d9df9c +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.8.19-h4de0772_0_cpython.conda + sha256: 56f8d32ba1985c65aa9be8c59b790f83dd9bc951b34003c3d14ae7bc700a9eae + md5: 1fea550de7dcc8f898159b8f6920692e depends: - - __osx >=11.0 - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - libsqlite >=3.45.2,<4.0a0 - libzlib >=1.2.13,<1.3.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 + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.12.* *_cp312 + - python_abi 3.8.* *_cp38 license: Python-2.0 - size: 13207557 - timestamp: 1713206576646 -- kind: conda - name: python - version: 3.12.3 - build: hab00c5b_0_cpython - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.3-hab00c5b_0_cpython.conda - sha256: f9865bcbff69f15fd89a33a2da12ad616e98d65ce7c83c644b92e66e5016b227 - md5: 2540b74d304f71d3e89c81209db4db84 + size: 16090293 + timestamp: 1710939361361 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.9.19-h4de0772_0_cpython.conda + sha256: 92d847bc9e79a60c1d139aa4ca0385d283b90aa2d7421bb3ffcb5dc0678fd72f + md5: b6999bc275e0e6beae7b1c8ea0be1e85 depends: - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.6.2,<3.0a0 - libffi >=3.4,<4.0a0 - - libgcc-ng >=12 - - libnsl >=2.0.1,<2.1.0a0 - libsqlite >=3.45.2,<4.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcrypt >=4.4.36 - libzlib >=1.2.13,<1.3.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 + - vc >=14.1,<15 + - vc14_runtime >=14.16.27033 - xz >=5.2.6,<6.0a0 constrains: - - python_abi 3.12.* *_cp312 + - python_abi 3.9.* *_cp39 license: Python-2.0 - size: 31991381 - timestamp: 1713208036041 -- kind: pypi + size: 16906240 + timestamp: 1710938565297 +- pypi: https://files.pythonhosted.org/packages/0e/88/21b2f16cb2123c1e9375f2c93486e35fdc86e63f02e274f0e99c589ef153/PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/7b/5e/efd033ab7199a0b2044dab3b9f7a4f6670e6a52c089de572e928d2873b06/PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673 + sha256: c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/24/97/9b59b43431f98d01806b288532da38099cc6f2fea0f3d712e21e269c0279/PyYAML-6.0.1-cp310-cp310-win_amd64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/28/09/55f715ddbf95a054b764b547f617e22f1d5e45d83905660e9a088078fe67/PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl - sha256: f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab + sha256: fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/28/09/55f715ddbf95a054b764b547f617e22f1d5e45d83905660e9a088078fe67/PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/ec/0d/26fb23e8863e0aeaac0c64e03fd27367ad2ae3f3cccf3798ee98ce160368/PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl - sha256: 6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007 + sha256: f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/29/0f/9782fa5b10152abf033aec56a601177ead85ee03b57781f2d9fced09eefc/PyYAML-6.0.1-cp38-cp38-win_amd64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/b3/34/65bb4b2d7908044963ebf614fe0fdb080773fc7030d7e39c8d3eddcd4257/PyYAML-6.0.1-cp311-cp311-win_amd64.whl - sha256: bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34 + sha256: 1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/29/61/bf33c6c85c55bc45a29eee3195848ff2d518d84735eb0e2d8cb42e0d285e/PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/7f/5d/2779ea035ba1e533c32ed4a249b4e0448f583ba10830b21a3cddafe11a4e/PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl - sha256: 1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595 + sha256: ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/2b/9f/fbade56564ad486809c27b322d0f7e6a89c01f6b4fe208402e90d4443a99/PyYAML-6.0.1-cp312-cp312-win_amd64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/29/0f/9782fa5b10152abf033aec56a601177ead85ee03b57781f2d9fced09eefc/PyYAML-6.0.1-cp38-cp38-win_amd64.whl - sha256: 1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62 + sha256: 0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/57/c5/5d09b66b41d549914802f482a2118d925d876dc2a35b2d127694c1345c34/PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/cd/e5/af35f7ea75cf72f2cd079c95ee16797de7cd71f29ea7c68ae5ce7be1eda0/PyYAML-6.0.1.tar.gz - sha256: bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43 + sha256: 9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/5b/07/10033a403b23405a8fc48975444463d3d10a5c2736b7eb2550b07b367429/PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/c8/6b/6600ac24725c7388255b2f5add93f91e58a5d7efaf4af244fdbcc11a541b/PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735 + sha256: fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/7b/5e/efd033ab7199a0b2044dab3b9f7a4f6670e6a52c089de572e928d2873b06/PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/84/4d/82704d1ab9290b03da94e6425f5e87396b999fd7eb8e08f3a92c158402bf/PyYAML-6.0.1-cp39-cp39-win_amd64.whl - sha256: 510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486 + sha256: d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/7d/39/472f2554a0f1e825bd7c5afc11c817cd7a2f3657460f7159f691fbb37c51/PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/7d/39/472f2554a0f1e825bd7c5afc11c817cd7a2f3657460f7159f691fbb37c51/PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl sha256: bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/7f/5d/2779ea035ba1e533c32ed4a249b4e0448f583ba10830b21a3cddafe11a4e/PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/57/c5/5d09b66b41d549914802f482a2118d925d876dc2a35b2d127694c1345c34/PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl - sha256: 9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8 + sha256: 1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/84/02/404de95ced348b73dd84f70e15a41843d817ff8c1744516bf78358f2ffd2/PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/0e/88/21b2f16cb2123c1e9375f2c93486e35fdc86e63f02e274f0e99c589ef153/PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl - sha256: c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859 + sha256: 40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/84/4d/82704d1ab9290b03da94e6425f5e87396b999fd7eb8e08f3a92c158402bf/PyYAML-6.0.1-cp39-cp39-win_amd64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/96/06/4beb652c0fe16834032e54f0956443d4cc797fe645527acee59e7deaa0a2/PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl - sha256: d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a + sha256: 510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/96/06/4beb652c0fe16834032e54f0956443d4cc797fe645527acee59e7deaa0a2/PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/5b/07/10033a403b23405a8fc48975444463d3d10a5c2736b7eb2550b07b367429/PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl - sha256: fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f + sha256: d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/b3/34/65bb4b2d7908044963ebf614fe0fdb080773fc7030d7e39c8d3eddcd4257/PyYAML-6.0.1-cp311-cp311-win_amd64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/24/97/9b59b43431f98d01806b288532da38099cc6f2fea0f3d712e21e269c0279/PyYAML-6.0.1-cp310-cp310-win_amd64.whl - sha256: fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d + sha256: bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/b4/33/720548182ffa8344418126017aa1d4ab4aeec9a2275f04ce3f3573d8ace8/PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/29/61/bf33c6c85c55bc45a29eee3195848ff2d518d84735eb0e2d8cb42e0d285e/PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515 + sha256: 6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/bc/06/1b305bf6aa704343be85444c9d011f626c763abb40c0edc1cad13bfd7f86/PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/2b/9f/fbade56564ad486809c27b322d0f7e6a89c01f6b4fe208402e90d4443a99/PyYAML-6.0.1-cp312-cp312-win_amd64.whl - sha256: 0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df + sha256: 855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/c8/6b/6600ac24725c7388255b2f5add93f91e58a5d7efaf4af244fdbcc11a541b/PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/84/02/404de95ced348b73dd84f70e15a41843d817ff8c1744516bf78358f2ffd2/PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl - sha256: 40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9 + sha256: 7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/cd/e5/af35f7ea75cf72f2cd079c95ee16797de7cd71f29ea7c68ae5ce7be1eda0/PyYAML-6.0.1.tar.gz name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/b4/33/720548182ffa8344418126017aa1d4ab4aeec9a2275f04ce3f3573d8ace8/PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0 + sha256: bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43 requires_python: '>=3.6' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/ec/0d/26fb23e8863e0aeaac0c64e03fd27367ad2ae3f3cccf3798ee98ce160368/PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl name: pyyaml version: 6.0.1 - url: https://files.pythonhosted.org/packages/bc/06/1b305bf6aa704343be85444c9d011f626c763abb40c0edc1cad13bfd7f86/PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl - sha256: 855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28 + sha256: 6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007 requires_python: '>=3.6' -- kind: conda - name: readline - version: '8.2' - build: h8228510_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 md5: 47d31b792659ce70f470b5c82fdfb7a4 depends: @@ -5937,28 +5161,7 @@ packages: license_family: GPL size: 281456 timestamp: 1679532220005 -- kind: conda - name: readline - version: '8.2' - build: h92ec313_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 - md5: 8cbb776a2f641b943d413b3e19df71f4 - depends: - - ncurses >=6.3,<7.0a0 - license: GPL-3.0-only - license_family: GPL - size: 250351 - timestamp: 1679532511311 -- kind: conda - name: readline - version: '8.2' - build: h9e318b2_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 md5: f17f77f2acf4d344734bda76829ce14e depends: @@ -5967,26 +5170,33 @@ packages: license_family: GPL size: 255870 timestamp: 1679532707590 -- kind: pypi +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 + md5: 8cbb776a2f641b943d413b3e19df71f4 + depends: + - ncurses >=6.3,<7.0a0 + license: GPL-3.0-only + license_family: GPL + size: 250351 + timestamp: 1679532511311 +- pypi: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl name: rich version: 13.7.1 - url: https://files.pythonhosted.org/packages/87/67/a37f6214d0e9fe57f6ae54b2956d550ca8365857f42a1ce0392bb21d9410/rich-13.7.1-py3-none-any.whl sha256: 4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222 requires_dist: - ipywidgets>=7.5.1,<9 ; extra == 'jupyter' - markdown-it-py>=2.2.0 - pygments>=2.13.0,<3.0.0 - - typing-extensions>=4.0.0,<5.0 ; python_version < '3.9' + - typing-extensions>=4.0.0,<5.0 ; python_full_version < '3.9' requires_python: '>=3.7.0' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/06/1f/3e65bcc657a8632b743450416039a92528b229bd36f77e8d802fa828adac/SQLAlchemy-2.0.29-cp312-cp312-win_amd64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/82/ec/ac6a2e917300713593bce3f4efe2002819a8bd30c3051317ec86c73b2e8d/SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 4f6d971255d9ddbd3189e2e79d743ff4845c07f0633adfd1de3f63d930dbe673 + sha256: 9b19836ccca0d321e237560e475fd99c3d8655d03da80c845c4da20dda31b6e1 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -5996,36 +5206,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/11/0f/26e925e3349e484b3545377b79a5625a42f843cd6d5d1ac8a9a2f7512a7a/SQLAlchemy-2.0.29-cp39-cp39-macosx_11_0_arm64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/ea/3e/95278ef021d3b8bed98bcc5f10faf27e4c4bc0a63a6e0bd98529b1ba8d2e/SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl - sha256: 296195df68326a48385e7a96e877bc19aa210e485fa381c5246bc0234c36c78e + sha256: dba622396a3170974f81bad49aacebd243455ec3cc70615aeaef9e9613b5bca5 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6035,36 +5244,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/20/5a/cc15fc867f5b490e63e5f4d3c4c283eaf60cada1e01153818ce21690ce5c/SQLAlchemy-2.0.29-cp39-cp39-macosx_10_9_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/3c/16/a731b8f6de7cdcd96add746ba84a2690edd0005f7e2b1f5fbd873a30686c/SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl - sha256: 308ef9cb41d099099fffc9d35781638986870b29f744382904bf9c7dadd08513 + sha256: 3071ad498896907a5ef756206b9dc750f8e57352113c19272bdfdc429c7bd7de requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6074,36 +5282,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/26/cf/d1a63a928ed699a6f9b8bb8543ecb9a84482652b437b9441ed3a900adec6/SQLAlchemy-2.0.29-cp38-cp38-win_amd64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/83/34/e760f4e78b2aeb04a74ae7338f9c215570a256755ab0026336037ec8df75/SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl - sha256: 205f5a2b39d7c380cbc3b5dcc8f2762fb5bcb716838e2d26ccbc54330775b003 + sha256: 52c8011088305476691b8750c60e03b87910a123cfd9ad48576d6414b6ec2a1d requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6113,36 +5320,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/27/d5/9a62bcf8695a0d86687d3c7603976b128add3c581ca7b92a053914d88648/SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/bb/53/332105ba836184be6db98d3d8f586d300dff549167c7fcfaca577b557039/SQLAlchemy-2.0.29-cp38-cp38-macosx_10_9_x86_64.whl - sha256: 7e614d7a25a43a9f54fcce4675c12761b248547f3d41b195e8010ca7297c369c + sha256: 9d6753305936eddc8ed190e006b7bb33a8f50b9854823485eed3a886857ab8d1 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6152,36 +5358,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/28/8f/f024eed88a23a4708e992406084b2848e2121215d83d30661306544a60a1/SQLAlchemy-2.0.29-cp38-cp38-macosx_11_0_arm64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/26/cf/d1a63a928ed699a6f9b8bb8543ecb9a84482652b437b9441ed3a900adec6/SQLAlchemy-2.0.29-cp38-cp38-win_amd64.whl - sha256: 52c8011088305476691b8750c60e03b87910a123cfd9ad48576d6414b6ec2a1d + sha256: 471fcb39c6adf37f820350c28aac4a7df9d3940c6548b624a642852e727ea586 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6191,36 +5396,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/29/82/3e4ca1381a3b0e80f03ba3fafbf047ed6c5f75ff4fd79f1726952c06f604/SQLAlchemy-2.0.29-cp310-cp310-win_amd64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/28/8f/f024eed88a23a4708e992406084b2848e2121215d83d30661306544a60a1/SQLAlchemy-2.0.29-cp38-cp38-macosx_11_0_arm64.whl - sha256: 471fcb39c6adf37f820350c28aac4a7df9d3940c6548b624a642852e727ea586 + sha256: 01d10638a37460616708062a40c7b55f73e4d35eaa146781c683e0fa7f6c43fb requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6230,36 +5434,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/3c/16/a731b8f6de7cdcd96add746ba84a2690edd0005f7e2b1f5fbd873a30686c/SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/96/9f/5f639ab2c63eb07eada0ed3333643a1e4aa137a542a14967065b64af205c/SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: dddaae9b81c88083e6437de95c41e86823d150f4ee94bf24e158a4526cbead01 + sha256: 308ef9cb41d099099fffc9d35781638986870b29f744382904bf9c7dadd08513 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6269,36 +5472,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/43/fd/9de60c18d5240382d8d1cfb86119455dae12da286cee8a25ca339f4e6228/SQLAlchemy-2.0.29-cp312-cp312-macosx_10_9_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/aa/f9/e9dd9baa7f569d5c0acc123dcb98286f6a219dca6970a00c83d996aed5c1/SQLAlchemy-2.0.29-cp39-cp39-win_amd64.whl - sha256: 04c487305ab035a9548f573763915189fc0fe0824d9ba28433196f8436f1449c + sha256: d96710d834a6fb31e21381c6d7b76ec729bd08c75a25a5184b1089141356171f requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6308,36 +5510,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/52/ab/01710dfecb728a76ce2c8ef9877a5665e3b4230cc762c759fa5456d42fc3/SQLAlchemy-2.0.29-cp312-cp312-macosx_11_0_arm64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/69/da/af5a4c23729473bec1139822aabc36e2888e78bdf805de257ee0cfcf361f/SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 8c37f1050feb91f3d6c32f864d8e114ff5545a4a7afe56778d76a9aec62638ba + sha256: 52de4736404e53c5c6a91ef2698c01e52333988ebdc218f14c833237a0804f1b requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6347,36 +5548,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/69/da/af5a4c23729473bec1139822aabc36e2888e78bdf805de257ee0cfcf361f/SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/20/5a/cc15fc867f5b490e63e5f4d3c4c283eaf60cada1e01153818ce21690ce5c/SQLAlchemy-2.0.29-cp39-cp39-macosx_10_9_x86_64.whl - sha256: 3071ad498896907a5ef756206b9dc750f8e57352113c19272bdfdc429c7bd7de + sha256: 8c37f1050feb91f3d6c32f864d8e114ff5545a4a7afe56778d76a9aec62638ba requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6386,36 +5586,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/82/ec/ac6a2e917300713593bce3f4efe2002819a8bd30c3051317ec86c73b2e8d/SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/11/0f/26e925e3349e484b3545377b79a5625a42f843cd6d5d1ac8a9a2f7512a7a/SQLAlchemy-2.0.29-cp39-cp39-macosx_11_0_arm64.whl - sha256: dba622396a3170974f81bad49aacebd243455ec3cc70615aeaef9e9613b5bca5 + sha256: 4f6d971255d9ddbd3189e2e79d743ff4845c07f0633adfd1de3f63d930dbe673 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6425,36 +5624,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/83/34/e760f4e78b2aeb04a74ae7338f9c215570a256755ab0026336037ec8df75/SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/99/59/a45bac8e77e461cbc9834a4f762e438a2b00d95268a3cf377e32a2589839/SQLAlchemy-2.0.29-cp310-cp310-macosx_10_9_x86_64.whl - sha256: 4c142852ae192e9fe5aad5c350ea6befe9db14370b34047e1f0f7cf99e63c63b + sha256: 205f5a2b39d7c380cbc3b5dcc8f2762fb5bcb716838e2d26ccbc54330775b003 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6464,36 +5662,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/96/9f/5f639ab2c63eb07eada0ed3333643a1e4aa137a542a14967065b64af205c/SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/b4/31/fe6bc9dffaebd1e54dc73021b968ecaea28e2cfeafe1ce1c695312fa4714/SQLAlchemy-2.0.29-cp310-cp310-macosx_11_0_arm64.whl - sha256: 99a1e69d4e26f71e750e9ad6fdc8614fbddb67cfe2173a3628a2566034e223c7 + sha256: dddaae9b81c88083e6437de95c41e86823d150f4ee94bf24e158a4526cbead01 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6503,36 +5700,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/99/59/a45bac8e77e461cbc9834a4f762e438a2b00d95268a3cf377e32a2589839/SQLAlchemy-2.0.29-cp310-cp310-macosx_10_9_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/29/82/3e4ca1381a3b0e80f03ba3fafbf047ed6c5f75ff4fd79f1726952c06f604/SQLAlchemy-2.0.29-cp310-cp310-win_amd64.whl - sha256: 01d10638a37460616708062a40c7b55f73e4d35eaa146781c683e0fa7f6c43fb + sha256: 4c142852ae192e9fe5aad5c350ea6befe9db14370b34047e1f0f7cf99e63c63b requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6542,36 +5738,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/a4/0e/0aea34594a2bd84e8637b45490041ee3d9107bc786053364bff2337dea8b/SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/27/d5/9a62bcf8695a0d86687d3c7603976b128add3c581ca7b92a053914d88648/SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 9d6753305936eddc8ed190e006b7bb33a8f50b9854823485eed3a886857ab8d1 + sha256: 0dfefdb3e54cd15f5d56fd5ae32f1da2d95d78319c1f6dfb9bcd0eb15d603d5d requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6581,36 +5776,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/aa/f9/e9dd9baa7f569d5c0acc123dcb98286f6a219dca6970a00c83d996aed5c1/SQLAlchemy-2.0.29-cp39-cp39-win_amd64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/06/1f/3e65bcc657a8632b743450416039a92528b229bd36f77e8d802fa828adac/SQLAlchemy-2.0.29-cp312-cp312-win_amd64.whl - sha256: 9b19836ccca0d321e237560e475fd99c3d8655d03da80c845c4da20dda31b6e1 + sha256: 04c487305ab035a9548f573763915189fc0fe0824d9ba28433196f8436f1449c requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6620,36 +5814,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/b4/31/fe6bc9dffaebd1e54dc73021b968ecaea28e2cfeafe1ce1c695312fa4714/SQLAlchemy-2.0.29-cp310-cp310-macosx_11_0_arm64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/52/ab/01710dfecb728a76ce2c8ef9877a5665e3b4230cc762c759fa5456d42fc3/SQLAlchemy-2.0.29-cp312-cp312-macosx_11_0_arm64.whl - sha256: 52de4736404e53c5c6a91ef2698c01e52333988ebdc218f14c833237a0804f1b + sha256: 99a1e69d4e26f71e750e9ad6fdc8614fbddb67cfe2173a3628a2566034e223c7 requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6659,36 +5852,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/bb/53/332105ba836184be6db98d3d8f586d300dff549167c7fcfaca577b557039/SQLAlchemy-2.0.29-cp38-cp38-macosx_10_9_x86_64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/a4/0e/0aea34594a2bd84e8637b45490041ee3d9107bc786053364bff2337dea8b/SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - sha256: 0dfefdb3e54cd15f5d56fd5ae32f1da2d95d78319c1f6dfb9bcd0eb15d603d5d + sha256: 7e614d7a25a43a9f54fcce4675c12761b248547f3d41b195e8010ca7297c369c requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6698,36 +5890,35 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/ea/3e/95278ef021d3b8bed98bcc5f10faf27e4c4bc0a63a6e0bd98529b1ba8d2e/SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl name: sqlalchemy version: 2.0.29 - url: https://files.pythonhosted.org/packages/43/fd/9de60c18d5240382d8d1cfb86119455dae12da286cee8a25ca339f4e6228/SQLAlchemy-2.0.29-cp312-cp312-macosx_10_9_x86_64.whl - sha256: d96710d834a6fb31e21381c6d7b76ec729bd08c75a25a5184b1089141356171f + sha256: 296195df68326a48385e7a96e877bc19aa210e485fa381c5246bc0234c36c78e requires_dist: - typing-extensions>=4.6.0 - - greenlet!=0.4.17 ; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32'))))) - - importlib-metadata ; python_version < '3.8' + - greenlet!=0.4.17 ; platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' + - importlib-metadata ; python_full_version < '3.8' - greenlet!=0.4.17 ; extra == 'aiomysql' - aiomysql>=0.2.0 ; extra == 'aiomysql' - greenlet!=0.4.17 ; extra == 'aioodbc' @@ -6737,74 +5928,57 @@ packages: - typing-extensions!=3.10.0.1 ; extra == 'aiosqlite' - greenlet!=0.4.17 ; extra == 'asyncio' - greenlet!=0.4.17 ; extra == 'asyncmy' - - asyncmy!=0.2.4,!=0.2.6,>=0.2.3 ; extra == 'asyncmy' - - mariadb!=1.1.2,!=1.1.5,>=1.0.1 ; extra == 'mariadb_connector' + - asyncmy>=0.2.3,!=0.2.4,!=0.2.6 ; extra == 'asyncmy' + - mariadb>=1.0.1,!=1.1.2,!=1.1.5 ; extra == 'mariadb-connector' - pyodbc ; extra == 'mssql' - - pymssql ; extra == 'mssql_pymssql' - - pyodbc ; extra == 'mssql_pyodbc' + - pymssql ; extra == 'mssql-pymssql' + - pyodbc ; extra == 'mssql-pyodbc' - mypy>=0.910 ; extra == 'mypy' - mysqlclient>=1.4.0 ; extra == 'mysql' - - mysql-connector-python ; extra == 'mysql_connector' + - mysql-connector-python ; extra == 'mysql-connector' - cx-oracle>=8 ; extra == 'oracle' - - oracledb>=1.0.1 ; extra == 'oracle_oracledb' + - oracledb>=1.0.1 ; extra == 'oracle-oracledb' - psycopg2>=2.7 ; extra == 'postgresql' - - greenlet!=0.4.17 ; extra == 'postgresql_asyncpg' - - asyncpg ; extra == 'postgresql_asyncpg' - - pg8000>=1.29.1 ; extra == 'postgresql_pg8000' - - psycopg>=3.0.7 ; extra == 'postgresql_psycopg' - - psycopg2-binary ; extra == 'postgresql_psycopg2binary' - - psycopg2cffi ; extra == 'postgresql_psycopg2cffi' - - psycopg[binary]>=3.0.7 ; extra == 'postgresql_psycopgbinary' + - greenlet!=0.4.17 ; extra == 'postgresql-asyncpg' + - asyncpg ; extra == 'postgresql-asyncpg' + - pg8000>=1.29.1 ; extra == 'postgresql-pg8000' + - psycopg>=3.0.7 ; extra == 'postgresql-psycopg' + - psycopg2-binary ; extra == 'postgresql-psycopg2binary' + - psycopg2cffi ; extra == 'postgresql-psycopg2cffi' + - psycopg[binary]>=3.0.7 ; extra == 'postgresql-psycopgbinary' - pymysql ; extra == 'pymysql' - sqlcipher3-binary ; extra == 'sqlcipher' requires_python: '>=3.7' -- kind: conda - name: suitesparse - version: 5.10.1 - build: h4bf45ed_3 - build_number: 3 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/suitesparse-5.10.1-h4bf45ed_3.conda - sha256: 34afddecceb3fbffcc14090ec1ceaf6a57fcf95811571c7c664622c63a4b3869 - md5: 54b150bd31ab31d735b6daafb8df1fcf +- conda: https://conda.anaconda.org/conda-forge/linux-64/suitesparse-5.10.1-h5a4f163_3.conda + sha256: 235c9321cb76896f3304eea87248a74f52d8c088a38b9cbd98a5366e34756b90 + md5: f363554b9084fb9d5e3366fbbc0d18e0 depends: - libblas >=3.9.0,<4.0a0 - libcblas >=3.9.0,<4.0a0 - - libcxx >=15 + - libgcc-ng >=12 - liblapack >=3.9.0,<4.0a0 + - libstdcxx-ng >=12 - metis >=5.1.0,<5.1.1.0a0 - mpfr >=4.2.1,<5.0a0 - tbb >=2021.11.0 license: LGPL-2.1-or-later AND BSD-3-Clause AND GPL-2.0-or-later AND Apache-2.0 - size: 1480812 - timestamp: 1705677334586 -- kind: conda - name: suitesparse - version: 5.10.1 - build: h5a4f163_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/suitesparse-5.10.1-h5a4f163_3.conda - sha256: 235c9321cb76896f3304eea87248a74f52d8c088a38b9cbd98a5366e34756b90 - md5: f363554b9084fb9d5e3366fbbc0d18e0 + size: 1457359 + timestamp: 1705676854887 +- conda: https://conda.anaconda.org/conda-forge/osx-64/suitesparse-5.10.1-h4bf45ed_3.conda + sha256: 34afddecceb3fbffcc14090ec1ceaf6a57fcf95811571c7c664622c63a4b3869 + md5: 54b150bd31ab31d735b6daafb8df1fcf depends: - libblas >=3.9.0,<4.0a0 - libcblas >=3.9.0,<4.0a0 - - libgcc-ng >=12 + - libcxx >=15 - liblapack >=3.9.0,<4.0a0 - - libstdcxx-ng >=12 - metis >=5.1.0,<5.1.1.0a0 - mpfr >=4.2.1,<5.0a0 - tbb >=2021.11.0 license: LGPL-2.1-or-later AND BSD-3-Clause AND GPL-2.0-or-later AND Apache-2.0 - size: 1457359 - timestamp: 1705676854887 -- kind: conda - name: tbb - version: 2021.12.0 - build: h00ab1b0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h00ab1b0_0.conda + size: 1480812 + timestamp: 1705677334586 +- conda: https://conda.anaconda.org/conda-forge/linux-64/tbb-2021.12.0-h00ab1b0_0.conda sha256: 0b48f402e18f293e3c7a4c4e391ed2523f173bdec86aa42658db787196eb27ca md5: f1b776cff1b426e7e7461a8502a3b731 depends: @@ -6815,12 +5989,7 @@ packages: license_family: APACHE size: 194192 timestamp: 1712959702573 -- kind: conda - name: tbb - version: 2021.12.0 - build: h7728843_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h7728843_0.conda +- conda: https://conda.anaconda.org/conda-forge/osx-64/tbb-2021.12.0-h7728843_0.conda sha256: 6068f814461eeb4ba68ded3d97bbe444d2909b469c51598c40734004b2c3b765 md5: e4fb6f4700d8890c36cbf317c2c6d0cb depends: @@ -6830,13 +5999,17 @@ packages: license_family: APACHE size: 172745 timestamp: 1712960020101 -- kind: conda - name: tk - version: 8.6.13 - build: h1abcd95_1 - build_number: 1 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda + sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e + md5: d453b98d9c83e71da0741bb0ff4d76bc + depends: + - libgcc-ng >=12 + - libzlib >=1.2.13,<1.3.0a0 + license: TCL + license_family: BSD + size: 3318875 + timestamp: 1699202167581 +- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5 md5: bf830ba5afc507c6232d4ef0fb1a882d depends: @@ -6845,13 +6018,7 @@ packages: license_family: BSD size: 3270220 timestamp: 1699202389792 -- kind: conda - name: tk - version: 8.6.13 - build: h5083fa2_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8 md5: b50a57ba89c32b62428b71a875291c9b depends: @@ -6860,13 +6027,7 @@ packages: license_family: BSD size: 3145523 timestamp: 1699202432999 -- kind: conda - name: tk - version: 8.6.13 - build: h5226925_1 - build_number: 1 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda +- conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1 md5: fc048363eb8f03cd1737600a5d08aafe depends: @@ -6877,58 +6038,28 @@ packages: license_family: BSD size: 3503410 timestamp: 1699202577803 -- kind: conda - name: tk - version: 8.6.13 - build: noxft_h4845f30_101 - build_number: 101 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e - md5: d453b98d9c83e71da0741bb0ff4d76bc - depends: - - libgcc-ng >=12 - - libzlib >=1.2.13,<1.3.0a0 - license: TCL - license_family: BSD - size: 3318875 - timestamp: 1699202167581 -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl name: tomli version: 2.0.1 - url: https://files.pythonhosted.org/packages/97/75/10a9ebee3fd790d20926a90a2547f0bf78f371b2f13aa822c759680ca7b9/tomli-2.0.1-py3-none-any.whl sha256: 939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc requires_python: '>=3.7' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/b3/9a/2b75087549910ebd2be9894bfd89450668b2455094a8f2ba2b67072f15a5/types_PyYAML-6.0.12.20240311-py3-none-any.whl name: types-pyyaml version: 6.0.12.20240311 - url: https://files.pythonhosted.org/packages/b3/9a/2b75087549910ebd2be9894bfd89450668b2455094a8f2ba2b67072f15a5/types_PyYAML-6.0.12.20240311-py3-none-any.whl sha256: b845b06a1c7e54b8e5b4c683043de0d9caf205e7434b3edc678ff2411979b8f6 requires_python: '>=3.8' -- kind: pypi +- pypi: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl name: typing-extensions version: 4.11.0 - url: https://files.pythonhosted.org/packages/01/f3/936e209267d6ef7510322191003885de524fc48d1b43269810cd589ceaf5/typing_extensions-4.11.0-py3-none-any.whl sha256: c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a requires_python: '>=3.8' -- kind: conda - name: tzdata - version: 2024a - build: h0c530f3_0 - subdir: noarch - noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda +- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda sha256: 7b2b69c54ec62a243eb6fba2391b5e443421608c3ae5dbff938ad33ca8db5122 md5: 161081fc7cec0bfda0d86d7cb595f8d8 license: LicenseRef-Public-Domain size: 119815 timestamp: 1706886945727 -- kind: conda - name: ucrt - version: 10.0.22621.0 - build: h57928b3_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 md5: 72608f6cd3e5898229c3ea16deb1ac43 constrains: @@ -6937,13 +6068,7 @@ packages: license_family: PROPRIETARY size: 1283972 timestamp: 1666630199266 -- kind: conda - name: vc - version: '14.3' - build: hcf57466_18 - build_number: 18 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda +- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hcf57466_18.conda sha256: 447a8d8292a7b2107dcc18afb67f046824711a652725fc0f522c368e7a7b8318 md5: 20e1e652a4c740fa719002a8449994a2 depends: @@ -6954,13 +6079,7 @@ packages: license_family: BSD size: 16977 timestamp: 1702511255313 -- kind: conda - name: vc14_runtime - version: 14.38.33130 - build: h82b7239_18 - build_number: 18 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda +- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.38.33130-h82b7239_18.conda sha256: bf94c9af4b2e9cba88207001197e695934eadc96a5c5e4cd7597e950aae3d8ff md5: 8be79fdd2725ddf7bbf8a27a4c1f79ba depends: @@ -6971,13 +6090,7 @@ packages: license_family: Proprietary size: 749868 timestamp: 1702511239004 -- kind: conda - name: vs2015_runtime - version: 14.38.33130 - build: hcb4865c_18 - build_number: 18 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda +- conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.38.33130-hcb4865c_18.conda sha256: a2fec221f361d6263c117f4ea6d772b21c90a2f8edc6f3eb0eadec6bfe8843db md5: 10d42885e3ed84e575b454db30f1aa93 depends: @@ -6986,12 +6099,7 @@ packages: license_family: BSD size: 16988 timestamp: 1702511261442 -- kind: conda - name: xz - version: 5.2.6 - build: h166bdaf_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 md5: 2161070d867d1b1204ea749c8eec4ef0 depends: @@ -6999,34 +6107,19 @@ packages: license: LGPL-2.1 and GPL-2.0 size: 418368 timestamp: 1660346797927 -- kind: conda - name: xz - version: 5.2.6 - build: h57fd34a_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec - md5: 39c6b54e94014701dd157f4f576ed211 - license: LGPL-2.1 and GPL-2.0 - size: 235693 - timestamp: 1660346961024 -- kind: conda - name: xz - version: 5.2.6 - build: h775f41a_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 md5: a72f9d4ea13d55d745ff1ed594747f10 license: LGPL-2.1 and GPL-2.0 size: 238119 timestamp: 1660346964847 -- kind: conda - name: xz - version: 5.2.6 - build: h8d14728_0 - subdir: win-64 - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 +- conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + md5: 39c6b54e94014701dd157f4f576ed211 + license: LGPL-2.1 and GPL-2.0 + size: 235693 + timestamp: 1660346961024 +- conda: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 md5: 515d77642eaa3639413c6b1bc3f94219 depends: @@ -7035,28 +6128,7 @@ packages: license: LGPL-2.1 and GPL-2.0 size: 217804 timestamp: 1660346976440 -- kind: conda - name: zlib - version: 1.2.13 - build: h8a1eda9_5 - build_number: 5 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda - sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 - md5: 75a8a98b1c4671c5d2897975731da42d - depends: - - libzlib 1.2.13 h8a1eda9_5 - license: Zlib - license_family: Other - size: 90764 - timestamp: 1686575574678 -- kind: conda - name: zlib - version: 1.2.13 - build: hd590300_5 - build_number: 5 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda +- conda: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b md5: 68c34ec6149623be41a1933ab996a209 depends: @@ -7066,26 +6138,16 @@ packages: license_family: Other size: 92825 timestamp: 1686575231103 -- kind: conda - name: zstd - version: 1.5.6 - build: h915ae27_0 - subdir: osx-64 - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda - sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 - md5: 4cb2cd56f039b129bb0e491c1164167e +- conda: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda + sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 + md5: 75a8a98b1c4671c5d2897975731da42d depends: - - __osx >=10.9 - - libzlib >=1.2.13,<1.3.0a0 - license: BSD-3-Clause - size: 498900 - timestamp: 1714723303098 -- kind: conda - name: zstd - version: 1.5.6 - build: ha6fb4c9_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda + - libzlib 1.2.13 h8a1eda9_5 + license: Zlib + license_family: Other + size: 90764 + timestamp: 1686575574678 +- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.6-ha6fb4c9_0.conda sha256: c558b9cc01d9c1444031bd1ce4b9cff86f9085765f17627a6cd85fc623c8a02b md5: 4d056880988120e29d75bfff282e0f45 depends: @@ -7095,3 +6157,12 @@ packages: license: BSD-3-Clause size: 554846 timestamp: 1714722996770 +- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda + sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96 + md5: 4cb2cd56f039b129bb0e491c1164167e + depends: + - __osx >=10.9 + - libzlib >=1.2.13,<1.3.0a0 + license: BSD-3-Clause + size: 498900 + timestamp: 1714723303098 diff --git a/pyproject.toml b/pyproject.toml index a39ad2b..67b53aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ classifiers = [ "Programming Language :: Python :: 3 :: Only", ] requires-python = ">=3.8" -dependencies = ["click", "pluggy>=1.0.0", "pytask>=0.4.5"] +dependencies = ["click", "pluggy>=1.0.0", "pytask>=0.4.5,<0.5.2"] dynamic = ["version"] [[project.authors]] @@ -77,7 +77,6 @@ disallow_untyped_defs = false ignore_errors = true [tool.ruff] -target-version = "py38" fix = true unsafe-fixes = true From de61180ac27e00534b282510e5aeb0ef702ef49a Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 26 Jul 2025 13:21:43 +0200 Subject: [PATCH 7/8] fix.2 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 83c1224..a9ad720 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@v4 - if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' uses: julia-actions/setup-julia@v2 - - uses: prefix-dev/setup-pixi@v0.8.1 + - uses: prefix-dev/setup-pixi@v0.8.14 with: pixi-version: v0.22.0 # cache: true From d76b51a5c6b5d899f047b9682073ccb851b71a81 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 26 Jul 2025 13:22:49 +0200 Subject: [PATCH 8/8] Update pixi version as well. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a9ad720..45b4337 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,7 +47,7 @@ jobs: uses: julia-actions/setup-julia@v2 - uses: prefix-dev/setup-pixi@v0.8.14 with: - pixi-version: v0.22.0 + pixi-version: v0.50.1 # cache: true environments: ${{ matrix.environment }}