diff --git a/crates/uv/tests/common/mod.rs b/crates/uv/tests/common/mod.rs index c848746ab..31ea21f7f 100644 --- a/crates/uv/tests/common/mod.rs +++ b/crates/uv/tests/common/mod.rs @@ -21,7 +21,7 @@ use uv_cache::Cache; use uv_interpreter::find_requested_python; // Exclude any packages uploaded after this date. -pub static EXCLUDE_NEWER: &str = "2023-11-18T12:00:00Z"; +pub static EXCLUDE_NEWER: &str = "2024-03-25T00:00:00Z"; pub const INSTA_FILTERS: &[(&str, &str)] = &[ (r"--cache-dir [^\s]+", "--cache-dir [CACHE_DIR]"), diff --git a/crates/uv/tests/pip_check.rs b/crates/uv/tests/pip_check.rs index ea881c9d0..3839b901f 100644 --- a/crates/uv/tests/pip_check.rs +++ b/crates/uv/tests/pip_check.rs @@ -66,11 +66,11 @@ fn check_compatible_packages() -> Result<()> { Resolved 5 packages in [TIME] Downloaded 5 packages in [TIME] Installed 5 packages in [TIME] - + certifi==2023.11.17 + + certifi==2024.2.2 + charset-normalizer==3.3.2 - + idna==3.4 + + idna==3.6 + requests==2.31.0 - + urllib3==2.1.0 + + urllib3==2.2.1 "### ); @@ -110,11 +110,11 @@ fn check_incompatible_packages() -> Result<()> { Resolved 5 packages in [TIME] Downloaded 5 packages in [TIME] Installed 5 packages in [TIME] - + certifi==2023.11.17 + + certifi==2024.2.2 + charset-normalizer==3.3.2 - + idna==3.4 + + idna==3.6 + requests==2.31.0 - + urllib3==2.1.0 + + urllib3==2.2.1 "### ); @@ -134,7 +134,7 @@ fn check_incompatible_packages() -> Result<()> { Resolved 1 package in [TIME] Downloaded 1 package in [TIME] Installed 1 package in [TIME] - - idna==3.4 + - idna==3.6 + idna==2.4 warning: The package `requests` requires `idna<4,>=2.5`, but `2.4` is installed. "### @@ -178,11 +178,11 @@ fn check_multiple_incompatible_packages() -> Result<()> { Resolved 5 packages in [TIME] Downloaded 5 packages in [TIME] Installed 5 packages in [TIME] - + certifi==2023.11.17 + + certifi==2024.2.2 + charset-normalizer==3.3.2 - + idna==3.4 + + idna==3.6 + requests==2.31.0 - + urllib3==2.1.0 + + urllib3==2.2.1 "### ); @@ -202,9 +202,9 @@ fn check_multiple_incompatible_packages() -> Result<()> { Resolved 2 packages in [TIME] Downloaded 2 packages in [TIME] Installed 2 packages in [TIME] - - idna==3.4 + - idna==3.6 + idna==2.4 - - urllib3==2.1.0 + - urllib3==2.2.1 + urllib3==1.20 warning: The package `requests` requires `idna<4,>=2.5`, but `2.4` is installed. warning: The package `requests` requires `urllib3<3,>=1.21.1`, but `1.20` is installed. diff --git a/crates/uv/tests/pip_compile.rs b/crates/uv/tests/pip_compile.rs index 575706590..2240f5119 100644 --- a/crates/uv/tests/pip_compile.rs +++ b/crates/uv/tests/pip_compile.rs @@ -33,11 +33,11 @@ fn compile_requirements_in() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in anyio==3.7.0 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -62,10 +62,10 @@ fn compile_requirements_in_annotation_line() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z --annotation-style=line requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z --annotation-style=line requirements.in anyio==3.7.0 - idna==3.4 # via anyio - sniffio==1.3.0 # via anyio + idna==3.6 # via anyio + sniffio==1.3.1 # via anyio ----- stderr ----- Resolved 3 packages in [TIME] @@ -90,11 +90,11 @@ fn compile_requirements_in_stdin() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z - + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z - anyio==3.7.0 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -176,11 +176,11 @@ dependencies = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z pyproject.toml + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z pyproject.toml anyio==3.7.0 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -209,11 +209,11 @@ fn compile_constraints_txt() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt anyio==3.7.0 idna==3.3 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -241,7 +241,7 @@ fn compile_constraints_inline() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in ----- stderr ----- Resolved 0 packages in [TIME] @@ -273,9 +273,9 @@ fn compile_constraints_markers() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt - anyio==4.0.0 - idna==3.4 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt + anyio==4.3.0 + idna==3.6 # via anyio sniffio==1.3.0 # via anyio @@ -314,11 +314,11 @@ optional-dependencies.foo = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z pyproject.toml --extra foo + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z pyproject.toml --extra foo anyio==3.7.0 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -355,11 +355,11 @@ optional-dependencies."FrIeNdLy-._.-bArD" = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z pyproject.toml --extra FRiENDlY-...-_-BARd + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z pyproject.toml --extra FRiENDlY-...-_-BARd anyio==3.7.0 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -433,7 +433,7 @@ build-backend = "poetry.core.masonry.api" exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z pyproject.toml + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z pyproject.toml ----- stderr ----- warning: `pyproject.toml` does not contain any dependencies (hint: specify dependencies in the `project.dependencies` section; `tool.poetry.dependencies` is not currently supported) @@ -556,17 +556,17 @@ fn compile_python_312() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --python-version 3.12 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --python-version 3.12 black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -593,13 +593,13 @@ fn compile_python_312_annotation_line() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z --annotation-style=line requirements.in --python-version 3.12 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z --annotation-style=line requirements.in --python-version 3.12 black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 # via black - pathspec==0.11.2 # via black - platformdirs==4.0.0 # via black + packaging==24.0 # via black + pathspec==0.12.1 # via black + platformdirs==4.2.0 # via black ----- stderr ----- Resolved 6 packages in [TIME] @@ -625,7 +625,7 @@ fn compile_python_312_no_deps() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-deps --python-version 3.12 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-deps --python-version 3.12 black==23.10.1 ----- stderr ----- @@ -691,11 +691,11 @@ fn compile_sdist_resolution_lowest() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --resolution=lowest-direct --python-version 3.12 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --resolution=lowest-direct --python-version 3.12 anyio @ https://files.pythonhosted.org/packages/2d/b8/7333d87d5f03247215d86a86362fd3e324111788c6cdd8d2e6196a6ba833/anyio-4.2.0.tar.gz - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -772,7 +772,7 @@ fn compile_numpy_py38() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-build + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-build numpy==1.24.4 ----- stderr ----- @@ -796,7 +796,7 @@ fn compile_wheel_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -804,9 +804,9 @@ fn compile_wheel_url_dependency() -> Result<()> { flask @ https://files.pythonhosted.org/packages/36/42/015c23096649b908c809c69388a805a571a3bea44362fe87e33fc3afa01f/flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -836,7 +836,7 @@ fn compile_sdist_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -844,9 +844,9 @@ fn compile_sdist_url_dependency() -> Result<()> { flask @ https://files.pythonhosted.org/packages/d8/09/c1a7354d3925a3c6c8cfdebf4245bae67d633ffda1ba415add06ffc839c5/flask-3.0.0.tar.gz itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -881,7 +881,7 @@ fn compile_git_https_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -889,9 +889,9 @@ fn compile_git_https_dependency() -> Result<()> { flask @ git+https://github.com/pallets/flask.git@[COMMIT] itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -919,15 +919,15 @@ fn compile_git_branch_https_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in click==8.1.7 # via flask flask @ git+https://github.com/pallets/flask.git@d92b64aa275841b0c9aea3903aba72fbc4275d91 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -956,7 +956,7 @@ fn compile_git_tag_https_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -964,9 +964,9 @@ fn compile_git_tag_https_dependency() -> Result<()> { flask @ git+https://github.com/pallets/flask.git@735a4701d6d5e848241e7d7535db898efb62d400 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -997,15 +997,15 @@ fn compile_git_long_commit_https_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in click==8.1.7 # via flask flask @ git+https://github.com/pallets/flask.git@d92b64aa275841b0c9aea3903aba72fbc4275d91 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1034,15 +1034,15 @@ fn compile_git_short_commit_https_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in click==8.1.7 # via flask flask @ git+https://github.com/pallets/flask.git@d92b64aa275841b0c9aea3903aba72fbc4275d91 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1072,7 +1072,7 @@ fn compile_git_refs_https_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -1080,9 +1080,9 @@ fn compile_git_refs_https_dependency() -> Result<()> { flask @ git+https://github.com/pallets/flask.git@7af0271f4703a71beef8e26d1f5f6f8da04100e6 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1111,7 +1111,7 @@ fn compile_git_subdirectory_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in example-pkg-a @ git+https://github.com/pypa/sample-namespace-packages.git@df7530eeb8fa0cb7dbb8ecb28363e8e36bfa2f45#subdirectory=pkg_resources/pkg_a ----- stderr ----- @@ -1137,7 +1137,7 @@ fn compile_git_concurrent_access() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in example-pkg-a @ git+https://github.com/pypa/sample-namespace-packages.git@df7530eeb8fa0cb7dbb8ecb28363e8e36bfa2f45#subdirectory=pkg_resources/pkg_a example-pkg-b @ git+https://github.com/pypa/sample-namespace-packages.git@df7530eeb8fa0cb7dbb8ecb28363e8e36bfa2f45#subdirectory=pkg_resources/pkg_b @@ -1187,7 +1187,7 @@ fn mixed_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -1195,9 +1195,9 @@ fn mixed_url_dependency() -> Result<()> { flask==3.0.0 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1251,7 +1251,7 @@ fn compatible_direct_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in werkzeug @ https://files.pythonhosted.org/packages/ff/1d/960bb4017c68674a1cb099534840f18d3def3ce44aed12b5ed8b78e0153e/Werkzeug-2.0.0-py3-none-any.whl ----- stderr ----- @@ -1302,7 +1302,7 @@ fn conflicting_repeated_url_dependency_markers() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in werkzeug @ https://files.pythonhosted.org/packages/bd/24/11c3ea5a7e866bf2d97f0501d0b4b1c9bbeade102bb4b588f0d2919a5212/Werkzeug-2.0.1-py3-none-any.whl ----- stderr ----- @@ -1376,7 +1376,7 @@ fn compatible_repeated_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in werkzeug @ git+https://github.com/pallets/werkzeug@af160e0b6b7ddd81c22f1652c728ff5ac72d5c74 ----- stderr ----- @@ -1425,8 +1425,8 @@ fn compatible_narrowed_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - markupsafe==2.1.3 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + markupsafe==2.1.5 # via werkzeug werkzeug @ git+https://github.com/pallets/werkzeug@32e69512134c2f8183c6438b2b2e13fd24e9d19f @@ -1535,7 +1535,7 @@ fn allowed_transitive_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt hatchling-editable @ ${HATCHLING} iniconfig @ git+https://github.com/pytest-dev/iniconfig@9cae43103df70bac6fde7b9f35ad11a9f1be0cb4 # via hatchling-editable @@ -1572,7 +1572,7 @@ fn allowed_transitive_canonical_url_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt hatchling-editable @ ${HATCHLING} iniconfig @ git+https://github.com/pytest-dev/iniconfig.git@9cae43103df70bac6fde7b9f35ad11a9f1be0cb4 # via hatchling-editable @@ -1613,18 +1613,18 @@ optional-dependencies.bar = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z pyproject.toml --all-extras + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z pyproject.toml --all-extras anyio==3.7.0 # via httpcore - certifi==2023.11.17 + certifi==2024.2.2 # via httpcore h11==0.14.0 # via httpcore httpcore==0.18.0 - idna==3.4 + idna==3.6 # via anyio iniconfig==1.1.1 - sniffio==1.3.0 + sniffio==1.3.1 # via # anyio # httpcore @@ -1665,14 +1665,14 @@ optional-dependencies.bar = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z --annotation-style=line pyproject.toml --all-extras + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z --annotation-style=line pyproject.toml --all-extras anyio==3.7.0 # via httpcore - certifi==2023.11.17 # via httpcore + certifi==2024.2.2 # via httpcore h11==0.14.0 # via httpcore httpcore==0.18.0 - idna==3.4 # via anyio + idna==3.6 # via anyio iniconfig==1.1.1 - sniffio==1.3.0 # via anyio, httpcore + sniffio==1.3.1 # via anyio, httpcore ----- stderr ----- Resolved 7 packages in [TIME] @@ -1897,7 +1897,7 @@ fn compile_wheel_path_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -1905,9 +1905,9 @@ fn compile_wheel_path_dependency() -> Result<()> { flask @ file://[TEMP_DIR]/flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1928,7 +1928,7 @@ fn compile_wheel_path_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -1936,9 +1936,9 @@ fn compile_wheel_path_dependency() -> Result<()> { flask @ file:flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1960,7 +1960,7 @@ fn compile_wheel_path_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -1968,9 +1968,9 @@ fn compile_wheel_path_dependency() -> Result<()> { flask @ file://flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -1992,7 +1992,7 @@ fn compile_wheel_path_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2000,9 +2000,9 @@ fn compile_wheel_path_dependency() -> Result<()> { flask @ ./flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2031,7 +2031,7 @@ fn compile_wheel_path_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2039,9 +2039,9 @@ fn compile_wheel_path_dependency() -> Result<()> { flask @ /[TEMP_DIR]/ itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2084,7 +2084,7 @@ fn compile_source_distribution_path_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2092,9 +2092,9 @@ fn compile_source_distribution_path_dependency() -> Result<()> { flask @ file://[TEMP_DIR]/flask-3.0.0.tar.gz itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2147,7 +2147,7 @@ fn compile_yanked_version_direct() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in attrs==21.1.0 ----- stderr ----- @@ -2207,7 +2207,7 @@ fn override_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --override overrides.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --override overrides.txt blinker==1.7.0 # via flask click==8.1.7 @@ -2215,9 +2215,9 @@ fn override_dependency() -> Result<()> { flask==3.0.0 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2253,17 +2253,17 @@ fn override_multi_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --override overrides.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --override overrides.txt black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black tomli==2.0.1 # via black @@ -2289,17 +2289,17 @@ fn missing_registry_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -2324,7 +2324,7 @@ fn missing_url_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2332,9 +2332,9 @@ fn missing_url_extra() -> Result<()> { flask @ https://files.pythonhosted.org/packages/36/42/015c23096649b908c809c69388a805a571a3bea44362fe87e33fc3afa01f/flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2364,7 +2364,7 @@ fn preserve_url() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2372,9 +2372,9 @@ fn preserve_url() -> Result<()> { flask @ https://files.PYTHONHOSTED.org/packages/36/42/015c23096649b908c809c69388a805a571a3bea44362fe87e33fc3afa01f/flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2409,7 +2409,7 @@ fn preserve_project_root() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2417,9 +2417,9 @@ fn preserve_project_root() -> Result<()> { flask @ file://${PROJECT_ROOT}/flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2449,7 +2449,7 @@ fn respect_http_env_var() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2457,9 +2457,9 @@ fn respect_http_env_var() -> Result<()> { flask @ ${URL} itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2489,7 +2489,7 @@ fn respect_unnamed_env_var() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2497,9 +2497,9 @@ fn respect_unnamed_env_var() -> Result<()> { flask @ ${URL} itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2560,7 +2560,7 @@ fn respect_file_env_var() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -2568,9 +2568,9 @@ fn respect_file_env_var() -> Result<()> { flask @ ${FILE_PATH} itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -2611,36 +2611,36 @@ fn compile_editable() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in -e ${PROJECT_ROOT}/../../scripts/packages/maturin_editable -e ../../scripts/packages/poetry_editable -e file://../../scripts/packages/black_editable - aiohttp==3.9.0 + aiohttp==3.9.3 # via black aiosignal==1.3.1 # via aiohttp - anyio==4.0.0 + anyio==4.3.0 # via poetry-editable - attrs==23.1.0 + attrs==23.2.0 # via aiohttp boltons==23.1.1 - frozenlist==1.4.0 + frozenlist==1.4.1 # via # aiohttp # aiosignal - idna==3.4 + idna==3.6 # via # anyio # yarl - multidict==6.0.4 + multidict==6.0.5 # via # aiohttp # yarl - sniffio==1.3.0 + sniffio==1.3.1 # via anyio uvloop==0.19.0 # via black - yarl==1.9.2 + yarl==1.9.4 # via aiohttp ----- stderr ----- @@ -2683,27 +2683,27 @@ fn recursive_extras_direct_url() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile requirements.in --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z - aiohttp==3.9.0 + # uv pip compile requirements.in --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z + aiohttp==3.9.3 # via black aiosignal==1.3.1 # via aiohttp - attrs==23.1.0 + attrs==23.2.0 # via aiohttp black @ ../../scripts/packages/black_editable - frozenlist==1.4.0 + frozenlist==1.4.1 # via # aiohttp # aiosignal - idna==3.4 + idna==3.6 # via yarl - multidict==6.0.4 + multidict==6.0.5 # via # aiohttp # yarl uvloop==0.19.0 # via black - yarl==1.9.2 + yarl==1.9.4 # via aiohttp ----- stderr ----- @@ -2733,7 +2733,7 @@ fn compile_editable_url_requirement() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in -e ../../scripts/packages/hatchling_editable iniconfig @ git+https://github.com/pytest-dev/iniconfig@9cae43103df70bac6fde7b9f35ad11a9f1be0cb4 # via hatchling-editable @@ -2887,9 +2887,9 @@ fn trailing_slash() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - jinja2==3.1.2 - markupsafe==2.1.3 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + jinja2==3.1.3 + markupsafe==2.1.5 # via jinja2 ----- stderr ----- @@ -2905,9 +2905,9 @@ fn trailing_slash() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - jinja2==3.1.2 - markupsafe==2.1.3 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + jinja2==3.1.3 + markupsafe==2.1.5 # via jinja2 ----- stderr ----- @@ -2931,7 +2931,7 @@ fn compile_legacy_sdist_pep_517() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in flake8 @ https://files.pythonhosted.org/packages/66/53/3ad4a3b74d609b3b9008a10075c40e7c8909eae60af53623c3888f7a529a/flake8-6.0.0.tar.gz mccabe==0.7.0 # via flake8 @@ -2962,7 +2962,7 @@ fn compile_legacy_sdist_setuptools() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --legacy-setup-py + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --legacy-setup-py flake8 @ https://files.pythonhosted.org/packages/66/53/3ad4a3b74d609b3b9008a10075c40e7c8909eae60af53623c3888f7a529a/flake8-6.0.0.tar.gz mccabe==0.7.0 # via flake8 @@ -3012,7 +3012,7 @@ fn generate_hashes() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --generate-hashes + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --generate-hashes blinker==1.7.0 \ --hash=sha256:c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9 \ --hash=sha256:e6820ff6fa4e4d1d8e2747c2283749c3f547e4fee112b98555cdcdae32996182 @@ -3028,71 +3028,71 @@ fn generate_hashes() -> Result<()> { --hash=sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44 \ --hash=sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a # via flask - jinja2==3.1.2 \ - --hash=sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852 \ - --hash=sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61 + jinja2==3.1.3 \ + --hash=sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa \ + --hash=sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90 # via flask - markupsafe==2.1.3 \ - --hash=sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e \ - --hash=sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e \ - --hash=sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431 \ - --hash=sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686 \ - --hash=sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c \ - --hash=sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559 \ - --hash=sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc \ - --hash=sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb \ - --hash=sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939 \ - --hash=sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c \ - --hash=sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0 \ - --hash=sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4 \ - --hash=sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9 \ - --hash=sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575 \ - --hash=sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba \ - --hash=sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d \ - --hash=sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd \ - --hash=sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3 \ - --hash=sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00 \ - --hash=sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155 \ - --hash=sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac \ - --hash=sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52 \ - --hash=sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f \ - --hash=sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8 \ - --hash=sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b \ - --hash=sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007 \ - --hash=sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24 \ - --hash=sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea \ - --hash=sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198 \ - --hash=sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0 \ - --hash=sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee \ - --hash=sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be \ - --hash=sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2 \ - --hash=sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1 \ - --hash=sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707 \ - --hash=sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6 \ - --hash=sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c \ - --hash=sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58 \ - --hash=sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823 \ - --hash=sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779 \ - --hash=sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636 \ - --hash=sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c \ - --hash=sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad \ - --hash=sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee \ - --hash=sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc \ - --hash=sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2 \ - --hash=sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48 \ - --hash=sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7 \ - --hash=sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e \ - --hash=sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b \ - --hash=sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa \ - --hash=sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5 \ - --hash=sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e \ - --hash=sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb \ - --hash=sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9 \ - --hash=sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57 \ - --hash=sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc \ - --hash=sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc \ - --hash=sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2 \ - --hash=sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11 + markupsafe==2.1.5 \ + --hash=sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf \ + --hash=sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff \ + --hash=sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f \ + --hash=sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3 \ + --hash=sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532 \ + --hash=sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f \ + --hash=sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617 \ + --hash=sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df \ + --hash=sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4 \ + --hash=sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906 \ + --hash=sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f \ + --hash=sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4 \ + --hash=sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8 \ + --hash=sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371 \ + --hash=sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2 \ + --hash=sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465 \ + --hash=sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52 \ + --hash=sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6 \ + --hash=sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169 \ + --hash=sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad \ + --hash=sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2 \ + --hash=sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0 \ + --hash=sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029 \ + --hash=sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f \ + --hash=sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a \ + --hash=sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced \ + --hash=sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5 \ + --hash=sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c \ + --hash=sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf \ + --hash=sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9 \ + --hash=sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb \ + --hash=sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad \ + --hash=sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3 \ + --hash=sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1 \ + --hash=sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46 \ + --hash=sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc \ + --hash=sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a \ + --hash=sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee \ + --hash=sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900 \ + --hash=sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5 \ + --hash=sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea \ + --hash=sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f \ + --hash=sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5 \ + --hash=sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e \ + --hash=sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a \ + --hash=sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f \ + --hash=sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50 \ + --hash=sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a \ + --hash=sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b \ + --hash=sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4 \ + --hash=sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff \ + --hash=sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2 \ + --hash=sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46 \ + --hash=sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b \ + --hash=sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf \ + --hash=sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5 \ + --hash=sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5 \ + --hash=sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab \ + --hash=sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd \ + --hash=sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68 # via # jinja2 # werkzeug @@ -3142,10 +3142,10 @@ fn find_links_directory() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - markupsafe==2.1.3 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + markupsafe==2.1.5 # via werkzeug - numpy==1.26.2 + numpy==1.26.4 tqdm==1000.0.0 werkzeug @ https://files.pythonhosted.org/packages/c3/fc/254c3e9b5feb89ff5b9076a23218dafbc99c96ac5941e900b71206e6313b/werkzeug-3.0.1-py3-none-any.whl @@ -3172,7 +3172,7 @@ fn find_links_url() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-index + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-index tqdm==4.64.1 ----- stderr ----- @@ -3198,7 +3198,7 @@ fn find_links_env_var() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-index + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-index tqdm==4.64.1 ----- stderr ----- @@ -3225,7 +3225,7 @@ fn find_links_requirements_txt() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-index --emit-find-links + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-index --emit-find-links --find-links https://download.pytorch.org/whl/torch_stable.html tqdm==4.64.1 @@ -3269,7 +3269,7 @@ fn upgrade_none() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --output-file requirements.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --output-file requirements.txt black==23.10.1 click==8.1.2 # via black @@ -3324,17 +3324,17 @@ fn upgrade_all() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --output-file requirements.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --output-file requirements.txt black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3380,7 +3380,7 @@ fn upgrade_package() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --output-file requirements.txt --upgrade-package click + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --output-file requirements.txt --upgrade-package click black==23.10.1 click==8.1.7 # via black @@ -3475,7 +3475,7 @@ fn unnamed_requirement_with_package_name() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -3483,9 +3483,9 @@ fn unnamed_requirement_with_package_name() -> Result<()> { flask @ https://files.pythonhosted.org/packages/36/42/015c23096649b908c809c69388a805a571a3bea44362fe87e33fc3afa01f/flask-3.0.0-py3-none-any.whl itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -3514,13 +3514,13 @@ fn no_annotate() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-annotate + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-annotate black==23.10.1 click==8.1.7 mypy-extensions==1.0.0 - packaging==23.2 - pathspec==0.11.2 - platformdirs==4.0.0 + packaging==24.0 + pathspec==0.12.1 + platformdirs==4.2.0 ----- stderr ----- Resolved 6 packages in [TIME] @@ -3548,11 +3548,11 @@ fn no_header() -> Result<()> { # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3584,11 +3584,11 @@ fn custom_compile_command() -> Result<()> { # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3610,11 +3610,11 @@ fn custom_compile_command() -> Result<()> { # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3639,8 +3639,8 @@ fn allow_unsafe() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --allow-unsafe - markupsafe==2.1.3 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --allow-unsafe + markupsafe==2.1.5 # via werkzeug werkzeug==3.0.1 @@ -3694,7 +3694,7 @@ fn emit_index_urls() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --emit-index-url --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --emit-index-url --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple @@ -3703,11 +3703,11 @@ fn emit_index_urls() -> Result<()> { # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3734,7 +3734,7 @@ fn emit_find_links() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --emit-find-links --find-links ./ + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --emit-find-links --find-links ./ --find-links ./ black==23.10.1 @@ -3742,11 +3742,11 @@ fn emit_find_links() -> Result<()> { # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3801,8 +3801,8 @@ fn index_url_requirements_txt() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - tqdm==4.66.1 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + tqdm==4.66.2 ----- stderr ----- Resolved 1 package in [TIME] @@ -3856,7 +3856,7 @@ fn matching_index_urls_requirements_txt() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.in ----- stderr ----- Resolved 0 packages in [TIME] @@ -3897,17 +3897,17 @@ fn offline() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -3923,17 +3923,17 @@ fn offline() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --offline + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --offline black==23.10.1 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -4017,11 +4017,11 @@ fn compile_relative_subfile() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - anyio==4.0.0 - idna==3.4 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + anyio==4.3.0 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -4045,7 +4045,7 @@ fn compile_none_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in entrypoints==0.3 ----- stderr ----- @@ -4076,7 +4076,7 @@ fn compile_types_pytz() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in -o requirements.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in -o requirements.txt types-pytz==2021.1.0 ----- stderr ----- @@ -4105,11 +4105,11 @@ fn compile_constraints_compatible_url() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt anyio @ https://files.pythonhosted.org/packages/bf/cd/d6d9bb1dadf73e7af02d18225cbd2c93f8552e13130484f1c8dcfece292b/anyio-4.2.0-py3-none-any.whl - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -4139,11 +4139,11 @@ fn compile_constraints_compatible_url_version() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt anyio @ https://files.pythonhosted.org/packages/bf/cd/d6d9bb1dadf73e7af02d18225cbd2c93f8552e13130484f1c8dcfece292b/anyio-4.2.0-py3-none-any.whl - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -4223,11 +4223,11 @@ fn index_url_from_command_line() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in anyio==3.7.1 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -4274,8 +4274,8 @@ fn no_deps_valid_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-deps - flask==3.0.0 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-deps + flask==3.0.2 ----- stderr ----- Resolved 1 package in [TIME] @@ -4299,12 +4299,12 @@ fn no_deps_invalid_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-deps - flask==3.0.0 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-deps + flask==3.0.2 ----- stderr ----- Resolved 1 package in [TIME] - warning: The package `flask==3.0.0` does not have an extra named `empty`. + warning: The package `flask==3.0.2` does not have an extra named `empty`. "### ); @@ -4334,7 +4334,7 @@ fn editable_invalid_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in -e ../../scripts/packages/black_editable ----- stderr ----- @@ -4360,21 +4360,21 @@ fn no_strip_extra() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-strip-extras + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-strip-extras blinker==1.7.0 # via flask click==8.1.7 # via flask - flask[dotenv]==3.0.0 + flask[dotenv]==3.0.2 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug - python-dotenv==1.0.0 + python-dotenv==1.0.1 # via flask werkzeug==3.0.1 # via flask @@ -4402,46 +4402,46 @@ fn no_strip_extras() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --no-strip-extras - alabaster==0.7.13 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --no-strip-extras + alabaster==0.7.16 # via sphinx - anyio[doc, trio]==4.0.0 - attrs==23.1.0 + anyio[doc, trio]==4.3.0 + attrs==23.2.0 # via # outcome # trio - babel==2.13.1 + babel==2.14.0 # via sphinx - certifi==2023.11.17 + certifi==2024.2.2 # via requests charset-normalizer==3.3.2 # via requests docutils==0.20.1 - # via sphinx - idna==3.4 + # via + # sphinx + # sphinx-rtd-theme + idna==3.6 # via # anyio # requests # trio imagesize==1.4.1 # via sphinx - jinja2==3.1.2 + jinja2==3.1.3 # via sphinx - markupsafe==2.1.3 + markupsafe==2.1.5 # via jinja2 outcome==1.3.0.post0 # via trio - packaging==23.2 + packaging==24.0 # via # anyio # sphinx - pygments==2.16.1 + pygments==2.17.2 # via sphinx requests==2.31.0 # via sphinx - setuptools==68.2.2 - # via babel - sniffio==1.3.0 + sniffio==1.3.1 # via # anyio # trio @@ -4453,32 +4453,33 @@ fn no_strip_extras() -> Result<()> { # via # anyio # sphinx-autodoc-typehints - # sphinxcontrib-applehelp - # sphinxcontrib-devhelp - # sphinxcontrib-htmlhelp - # sphinxcontrib-qthelp - # sphinxcontrib-serializinghtml - sphinx-autodoc-typehints==1.25.2 + # sphinx-rtd-theme + # sphinxcontrib-jquery + sphinx-autodoc-typehints==2.0.0 # via anyio - sphinxcontrib-applehelp==1.0.7 + sphinx-rtd-theme==2.0.0 + # via anyio + sphinxcontrib-applehelp==1.0.8 # via sphinx - sphinxcontrib-devhelp==1.0.5 + sphinxcontrib-devhelp==1.0.6 # via sphinx - sphinxcontrib-htmlhelp==2.0.4 + sphinxcontrib-htmlhelp==2.0.5 # via sphinx + sphinxcontrib-jquery==4.1 + # via sphinx-rtd-theme sphinxcontrib-jsmath==1.0.1 # via sphinx - sphinxcontrib-qthelp==1.0.6 + sphinxcontrib-qthelp==1.0.7 # via sphinx - sphinxcontrib-serializinghtml==1.1.9 + sphinxcontrib-serializinghtml==1.1.10 # via sphinx - trio==0.23.1 + trio==0.25.0 # via anyio - urllib3==2.1.0 + urllib3==2.2.1 # via requests ----- stderr ----- - Resolved 29 packages in [TIME] + Resolved 30 packages in [TIME] "### ); @@ -4504,8 +4505,8 @@ fn compile_constraints_compatible_version() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt - distlib==0.3.7 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt + distlib==0.3.8 # via virtualenv filelock==3.8.0 # via virtualenv @@ -4602,17 +4603,17 @@ fn editable_override() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --override overrides.txt - black==23.11.0 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --override overrides.txt + black==24.3.0 click==8.1.7 # via black mypy-extensions==1.0.0 # via black - packaging==23.2 + packaging==24.0 # via black - pathspec==0.11.2 + pathspec==0.12.1 # via black - platformdirs==4.0.0 + platformdirs==4.2.0 # via black ----- stderr ----- @@ -4654,7 +4655,7 @@ fn override_editable() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --override overrides.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --override overrides.txt -e ../../scripts/packages/black_editable ----- stderr ----- @@ -4689,11 +4690,11 @@ fn override_with_compatible_constraint() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt --override overrides.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt --override overrides.txt anyio==3.0.0 - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -4755,15 +4756,15 @@ fn unsafe_package() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --unsafe-package jinja2 --unsafe-package pydantic + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --unsafe-package jinja2 --unsafe-package pydantic blinker==1.7.0 # via flask click==8.1.7 # via flask - flask==3.0.0 + flask==3.0.2 itsdangerous==2.1.2 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -4796,7 +4797,7 @@ fn pre_release_upper_bound_exclude() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --prerelease=allow + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --prerelease=allow click==7.1.2 # via flask flask==1.1.4 @@ -4804,7 +4805,7 @@ fn pre_release_upper_bound_exclude() -> Result<()> { # via flask jinja2==2.11.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via jinja2 werkzeug==1.0.1 # via flask @@ -4832,15 +4833,15 @@ fn pre_release_upper_bound_include() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --prerelease=allow + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --prerelease=allow click==8.1.7 # via flask flask==2.0.0rc2 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -4869,7 +4870,7 @@ fn pre_alias() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --pre + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --pre click==7.1.2 # via flask flask==1.1.4 @@ -4877,7 +4878,7 @@ fn pre_alias() -> Result<()> { # via flask jinja2==2.11.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via jinja2 werkzeug==1.0.1 # via flask @@ -4908,15 +4909,15 @@ fn pre_release_constraint() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --constraint constraints.txt + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --constraint constraints.txt click==8.1.7 # via flask flask==2.0.0rc2 itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -4964,7 +4965,7 @@ dev = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z pyproject.toml --extra dev + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z pyproject.toml --extra dev pep517==0.13.1 tomli==2.0.1 @@ -5001,7 +5002,7 @@ fn editable_direct_dependency() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --resolution lowest-direct + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --resolution lowest-direct -e ../../scripts/packages/setuptools_editable iniconfig==0.1 # via setuptools-editable @@ -5029,13 +5030,13 @@ fn empty_index_url_env_var() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --emit-index-url + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --emit-index-url --index-url https://pypi.org/simple - anyio==4.0.0 - idna==3.4 + anyio==4.3.0 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -5061,13 +5062,13 @@ fn empty_extra_index_url_env_var() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --emit-index-url + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --emit-index-url --index-url https://pypi.org/simple - anyio==4.0.0 - idna==3.4 + anyio==4.3.0 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -5094,7 +5095,7 @@ fn empty_index_url_env_var_override() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --emit-index-url + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --emit-index-url --index-url https://test.pypi.org/simple idna==2.7 @@ -5122,7 +5123,7 @@ fn index_url_env_var_override() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --emit-index-url + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --emit-index-url --index-url https://test.pypi.org/simple idna==2.7 @@ -5152,11 +5153,11 @@ fn expand_env_var_requirements_txt() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - anyio==4.0.0 - idna==3.4 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + anyio==4.3.0 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -5283,13 +5284,13 @@ dev = [ exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in -e . anyio @ https://files.pythonhosted.org/packages/bf/cd/d6d9bb1dadf73e7af02d18225cbd2c93f8552e13130484f1c8dcfece292b/anyio-4.2.0-py3-none-any.whl # via example - idna==3.4 + idna==3.6 # via anyio - sniffio==1.3.0 + sniffio==1.3.1 # via anyio ----- stderr ----- @@ -5333,11 +5334,11 @@ dev = ["setuptools"] exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --resolution=lowest-direct + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --resolution=lowest-direct -e . - packaging==23.2 + packaging==24.0 # via setuptools-scm - setuptools==68.2.2 + setuptools==69.2.0 # via setuptools-scm setuptools-scm==8.0.1 # via example @@ -5364,7 +5365,7 @@ fn metadata_2_2() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in boltons==23.1.1 # via pyo3-mixed pyo3-mixed @ https://files.pythonhosted.org/packages/2b/b8/e04b783d3569d5b61b1dcdfda683ac2e3617340539aecd0f099fbade0b4a/pyo3_mixed-2.1.5.tar.gz @@ -5483,7 +5484,7 @@ fn compile_root_uri() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in -e ${ROOT_PATH} black @ file://[TEMP_DIR]/black_editable # via root-editable @@ -5548,7 +5549,7 @@ fn preserve_hashes_no_upgrade() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --output-file requirements.txt --generate-hashes + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --output-file requirements.txt --generate-hashes markupsafe==2.1.2 \ --hash=sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed \ --hash=sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc \ @@ -5592,7 +5593,7 @@ fn preserve_hashes_upgrade() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --output-file requirements.txt --generate-hashes + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --output-file requirements.txt --generate-hashes markupsafe==2.1.2 \ --hash=sha256:0576fe974b40a400449768941d5d0858cc624e3249dfd1e0c33674e5c7ca7aed \ --hash=sha256:085fd3201e7b12809f9e6e9bc1e5c96a368c8523fad5afb02afe3c051ae4afcc \ @@ -5682,7 +5683,7 @@ fn preserve_hashes_newer_version() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in --output-file requirements.txt --generate-hashes + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in --output-file requirements.txt --generate-hashes markupsafe==2.1.3 \ --hash=sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e \ --hash=sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e \ @@ -5779,13 +5780,13 @@ fn unnamed_path_requirement() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in - anyio==4.0.0 + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in + anyio==4.3.0 # via # httpx # poetry-editable black @ ../../scripts/packages/black_editable - certifi==2023.11.17 + certifi==2024.2.2 # via # httpcore # httpx @@ -5794,11 +5795,11 @@ fn unnamed_path_requirement() -> Result<()> { # via requests h11==0.14.0 # via httpcore - httpcore==1.0.2 + httpcore==1.0.4 # via httpx - httpx==0.25.1 + httpx==0.27.0 # via setup-py-editable - idna==3.4 + idna==3.6 # via # anyio # httpx @@ -5808,11 +5809,11 @@ fn unnamed_path_requirement() -> Result<()> { # via setup-cfg-editable setup-cfg-editable @ ../../scripts/packages/setup_cfg_editable setup-py-editable @ ../../scripts/packages/setup_py_editable - sniffio==1.3.0 + sniffio==1.3.1 # via # anyio # httpx - urllib3==2.1.0 + urllib3==2.2.1 # via requests ----- stderr ----- @@ -5835,7 +5836,7 @@ fn unnamed_git_requirement() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -5843,9 +5844,9 @@ fn unnamed_git_requirement() -> Result<()> { flask @ git+https://github.com/pallets/flask.git@b90a4f1f4a370e92054b9cc9db0efcb864f87ebe itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug @@ -5873,7 +5874,7 @@ fn unnamed_https_requirement() -> Result<()> { exit_code: 0 ----- stdout ----- # This file was autogenerated by uv via the following command: - # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2023-11-18T12:00:00Z requirements.in + # uv pip compile --cache-dir [CACHE_DIR] --exclude-newer 2024-03-25T00:00:00Z requirements.in blinker==1.7.0 # via flask click==8.1.7 @@ -5881,9 +5882,9 @@ fn unnamed_https_requirement() -> Result<()> { flask @ https://github.com/pallets/flask/archive/refs/tags/3.0.2.tar.gz itsdangerous==2.1.2 # via flask - jinja2==3.1.2 + jinja2==3.1.3 # via flask - markupsafe==2.1.3 + markupsafe==2.1.5 # via # jinja2 # werkzeug diff --git a/crates/uv/tests/pip_install.rs b/crates/uv/tests/pip_install.rs index 190a545fe..197e7aa18 100644 --- a/crates/uv/tests/pip_install.rs +++ b/crates/uv/tests/pip_install.rs @@ -137,7 +137,7 @@ fn no_solution() { let context = TestContext::new("3.12"); uv_snapshot!(command(&context) - .arg("flask>=3.0.0") + .arg("flask>=3.0.2") .arg("WerkZeug<1.0.0") .arg("--strict"), @r###" success: false @@ -146,10 +146,10 @@ fn no_solution() { ----- stderr ----- × No solution found when resolving dependencies: - ╰─▶ Because only flask<=3.0.0 is available and flask==3.0.0 depends - on werkzeug>=3.0.0, we can conclude that flask>=3.0.0 depends on + ╰─▶ Because only flask<=3.0.2 is available and flask==3.0.2 depends + on werkzeug>=3.0.0, we can conclude that flask>=3.0.2 depends on werkzeug>=3.0.0. - And because you require flask>=3.0.0 and you require werkzeug<1.0.0, we + And because you require flask>=3.0.2 and you require werkzeug<1.0.0, we can conclude that the requirements are unsatisfiable. "###); } @@ -173,10 +173,10 @@ fn install_package() { Installed 7 packages in [TIME] + blinker==1.7.0 + click==8.1.7 - + flask==3.0.0 + + flask==3.0.2 + itsdangerous==2.1.2 - + jinja2==3.1.2 - + markupsafe==2.1.3 + + jinja2==3.1.3 + + markupsafe==2.1.5 + werkzeug==3.0.1 "### ); @@ -207,10 +207,10 @@ fn install_requirements_txt() -> Result<()> { Installed 7 packages in [TIME] + blinker==1.7.0 + click==8.1.7 - + flask==3.0.0 + + flask==3.0.2 + itsdangerous==2.1.2 - + jinja2==3.1.2 - + markupsafe==2.1.3 + + jinja2==3.1.3 + + markupsafe==2.1.5 + werkzeug==3.0.1 "### ); @@ -265,8 +265,8 @@ fn respect_installed_and_reinstall() -> Result<()> { + click==8.1.7 + flask==2.3.2 + itsdangerous==2.1.2 - + jinja2==3.1.2 - + markupsafe==2.1.3 + + jinja2==3.1.3 + + markupsafe==2.1.5 + werkzeug==3.0.1 "### ); @@ -345,7 +345,7 @@ fn respect_installed_and_reinstall() -> Result<()> { Downloaded 1 package in [TIME] Installed 1 package in [TIME] - flask==2.3.3 - + flask==3.0.0 + + flask==3.0.2 "### ); @@ -367,8 +367,8 @@ fn respect_installed_and_reinstall() -> Result<()> { ----- stderr ----- Resolved 7 packages in [TIME] Installed 1 package in [TIME] - - flask==3.0.0 - + flask==3.0.0 + - flask==3.0.2 + + flask==3.0.2 "### ); @@ -396,13 +396,13 @@ fn reinstall_extras() -> Result<()> { Resolved 7 packages in [TIME] Downloaded 7 packages in [TIME] Installed 7 packages in [TIME] - + anyio==4.0.0 - + certifi==2023.11.17 + + anyio==4.3.0 + + certifi==2024.2.2 + h11==0.14.0 - + httpcore==1.0.2 - + httpx==0.25.1 - + idna==3.4 - + sniffio==1.3.0 + + httpcore==1.0.4 + + httpx==0.27.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -459,8 +459,8 @@ fn reinstall_incomplete() -> Result<()> { Downloaded 3 packages in [TIME] Installed 3 packages in [TIME] + anyio==3.7.0 - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -525,10 +525,10 @@ fn allow_incompatibilities() -> Result<()> { Installed 7 packages in [TIME] + blinker==1.7.0 + click==8.1.7 - + flask==3.0.0 + + flask==3.0.2 + itsdangerous==2.1.2 - + jinja2==3.1.2 - + markupsafe==2.1.3 + + jinja2==3.1.3 + + markupsafe==2.1.5 + werkzeug==3.0.1 "### ); @@ -552,7 +552,7 @@ fn allow_incompatibilities() -> Result<()> { Resolved 2 packages in [TIME] Downloaded 1 package in [TIME] Installed 1 package in [TIME] - - jinja2==3.1.2 + - jinja2==3.1.3 + jinja2==2.11.3 warning: The package `flask` requires `jinja2>=3.1.2`, but `2.11.3` is installed. "### @@ -596,10 +596,10 @@ fn install_editable() -> Result<()> { Resolved 4 packages in [TIME] Downloaded 3 packages in [TIME] Installed 4 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 + + anyio==4.3.0 + + idna==3.6 + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -648,12 +648,12 @@ fn install_editable() -> Result<()> { Resolved 10 packages in [TIME] Downloaded 6 packages in [TIME] Installed 7 packages in [TIME] - + black==23.11.0 + + black==24.3.0 + click==8.1.7 + mypy-extensions==1.0.0 - + packaging==23.2 - + pathspec==0.11.2 - + platformdirs==4.0.0 + + packaging==24.0 + + pathspec==0.12.1 + + platformdirs==4.2.0 - poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) "### @@ -691,12 +691,12 @@ fn install_editable_and_registry() -> Result<()> { Resolved 6 packages in [TIME] Downloaded 6 packages in [TIME] Installed 6 packages in [TIME] - + black==23.11.0 + + black==24.3.0 + click==8.1.7 + mypy-extensions==1.0.0 - + packaging==23.2 - + pathspec==0.11.2 - + platformdirs==4.0.0 + + packaging==24.0 + + pathspec==0.12.1 + + platformdirs==4.2.0 "### ); @@ -714,7 +714,7 @@ fn install_editable_and_registry() -> Result<()> { Built 1 editable in [TIME] Resolved 1 package in [TIME] Installed 1 package in [TIME] - - black==23.11.0 + - black==24.3.0 + black==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/black_editable) "### ); @@ -836,8 +836,8 @@ fn reinstall_build_system() -> Result<()> { + flask==3.0.0 (from https://files.pythonhosted.org/packages/d8/09/c1a7354d3925a3c6c8cfdebf4245bae67d633ffda1ba415add06ffc839c5/flask-3.0.0.tar.gz) + flit-core==3.9.0 + itsdangerous==2.1.2 - + jinja2==3.1.2 - + markupsafe==2.1.3 + + jinja2==3.1.3 + + markupsafe==2.1.5 + werkzeug==3.0.1 "### ); @@ -1187,9 +1187,9 @@ fn reinstall_no_binary() { Resolved 3 packages in [TIME] Downloaded 3 packages in [TIME] Installed 3 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 - + sniffio==1.3.0 + + anyio==4.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -1242,8 +1242,8 @@ fn reinstall_no_binary() { ----- stderr ----- Resolved 3 packages in [TIME] Installed 1 package in [TIME] - - anyio==4.0.0 - + anyio==4.0.0 + - anyio==4.3.0 + + anyio==4.3.0 "### ); @@ -1268,13 +1268,13 @@ fn install_executable() { Resolved 7 packages in [TIME] Downloaded 7 packages in [TIME] Installed 7 packages in [TIME] - + astroid==3.0.1 - + dill==0.3.7 - + isort==5.12.0 + + astroid==3.0.3 + + dill==0.3.8 + + isort==5.13.2 + mccabe==0.7.0 - + platformdirs==4.0.0 + + platformdirs==4.2.0 + pylint==3.0.0 - + tomlkit==0.12.3 + + tomlkit==0.12.4 "### ); @@ -1304,13 +1304,13 @@ fn install_executable_copy() { Resolved 7 packages in [TIME] Downloaded 7 packages in [TIME] Installed 7 packages in [TIME] - + astroid==3.0.1 - + dill==0.3.7 - + isort==5.12.0 + + astroid==3.0.3 + + dill==0.3.8 + + isort==5.13.2 + mccabe==0.7.0 - + platformdirs==4.0.0 + + platformdirs==4.2.0 + pylint==3.0.0 - + tomlkit==0.12.3 + + tomlkit==0.12.4 "### ); @@ -1340,13 +1340,13 @@ fn install_executable_hardlink() { Resolved 7 packages in [TIME] Downloaded 7 packages in [TIME] Installed 7 packages in [TIME] - + astroid==3.0.1 - + dill==0.3.7 - + isort==5.12.0 + + astroid==3.0.3 + + dill==0.3.8 + + isort==5.13.2 + mccabe==0.7.0 - + platformdirs==4.0.0 + + platformdirs==4.2.0 + pylint==3.0.0 - + tomlkit==0.12.3 + + tomlkit==0.12.4 "### ); @@ -1376,7 +1376,7 @@ fn no_deps() { Resolved 1 package in [TIME] Downloaded 1 package in [TIME] Installed 1 package in [TIME] - + flask==3.0.0 + + flask==3.0.2 warning: The package `flask` requires `werkzeug>=3.0.0`, but it's not installed. warning: The package `flask` requires `jinja2>=3.1.2`, but it's not installed. warning: The package `flask` requires `itsdangerous>=2.1.2`, but it's not installed. @@ -1407,11 +1407,11 @@ fn install_upgrade() { Downloaded 6 packages in [TIME] Installed 6 packages in [TIME] + anyio==3.6.2 - + certifi==2023.11.17 + + certifi==2024.2.2 + h11==0.14.0 + httpcore==0.16.3 - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -1431,7 +1431,7 @@ fn install_upgrade() { Downloaded 1 package in [TIME] Installed 1 package in [TIME] - anyio==3.6.2 - + anyio==4.0.0 + + anyio==4.3.0 "### ); @@ -1478,7 +1478,7 @@ fn install_upgrade() { Downloaded 1 package in [TIME] Installed 1 package in [TIME] - httpcore==0.16.3 - + httpcore==1.0.2 + + httpcore==1.0.4 "### ); } @@ -1508,7 +1508,7 @@ fn install_constraints_txt() -> Result<()> { Installed 3 packages in [TIME] + anyio==3.7.0 + idna==3.3 - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -1538,7 +1538,7 @@ fn install_constraints_inline() -> Result<()> { Installed 3 packages in [TIME] + anyio==3.7.0 + idna==3.3 - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -1664,8 +1664,8 @@ fn install_sdist_resolution_lowest() -> Result<()> { Downloaded 3 packages in [TIME] Installed 3 packages in [TIME] + anyio==4.2.0 (from https://files.pythonhosted.org/packages/2d/b8/7333d87d5f03247215d86a86362fd3e324111788c6cdd8d2e6196a6ba833/anyio-4.2.0.tar.gz) - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -1696,12 +1696,12 @@ fn direct_url_zip_file_bunk_permissions() -> Result<()> { Resolved 6 packages in [TIME] Downloaded 5 packages in [TIME] Installed 6 packages in [TIME] - + distro==1.8.0 + + distro==1.9.0 + opensafely-pipeline==2023.11.6.145820 (from https://github.com/opensafely-core/pipeline/archive/refs/tags/v2023.11.06.145820.zip) - + pydantic==1.10.13 + + pydantic==1.10.14 + ruyaml==0.91.0 - + setuptools==68.2.2 - + typing-extensions==4.8.0 + + setuptools==69.2.0 + + typing-extensions==4.10.0 "### ); @@ -1986,7 +1986,7 @@ fn reinstall_duplicate() -> Result<()> { Installed 1 package in [TIME] - pip==21.3.1 - pip==22.1.1 - + pip==23.3.1 + + pip==24.0 "### ); @@ -2065,8 +2065,8 @@ requires-python = ">=3.8" Installed 4 packages in [TIME] + anyio==4.0.0 + example==0.0.0 (from [WORKSPACE_DIR]) - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -2160,8 +2160,8 @@ dependencies = {file = ["requirements.txt"]} Installed 4 packages in [TIME] + anyio==4.0.0 + example==0.1.0 (from [WORKSPACE_DIR]) - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -2244,8 +2244,8 @@ requires-python = ">=3.8" Installed 4 packages in [TIME] + anyio==4.0.0 + example==0.0.0 (from [WORKSPACE_DIR]) - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -2335,8 +2335,8 @@ requires-python = ">=3.11,<3.13" Installed 4 packages in [TIME] + anyio==4.0.0 + example==0.1.0 (from [WORKSPACE_DIR]) - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -2422,8 +2422,8 @@ fn no_build_isolation() -> Result<()> { Resolved 2 packages in [TIME] Downloaded 2 packages in [TIME] Installed 2 packages in [TIME] - + setuptools==68.2.2 - + wheel==0.41.3 + + setuptools==69.2.0 + + wheel==0.43.0 "###); // We expect the build to succeed, since `setuptools` is now installed. @@ -2440,8 +2440,8 @@ fn no_build_isolation() -> Result<()> { Downloaded 3 packages in [TIME] Installed 3 packages in [TIME] + anyio==0.0.0 (from https://files.pythonhosted.org/packages/db/4d/3970183622f0330d3c23d9b8a5f52e365e50381fd484d08e3285104333d3/anyio-4.3.0.tar.gz) - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -2542,13 +2542,13 @@ fn dry_run_install() -> std::result::Result<(), Box> { Resolved 7 packages in [TIME] Would download 7 packages Would install 7 packages - + anyio==4.0.0 - + certifi==2023.11.17 + + anyio==4.3.0 + + certifi==2024.2.2 + h11==0.14.0 - + httpcore==1.0.2 + + httpcore==1.0.4 + httpx==0.25.1 - + idna==3.4 - + sniffio==1.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); @@ -2576,8 +2576,8 @@ fn dry_run_install_url_dependency() -> std::result::Result<(), Box std::result::Result<(), Box std::result::Result<(), Box std::result::Result<(), Box std::result::Result<(), Box Result<()> { Resolved 3 packages in [TIME] Downloaded 3 packages in [TIME] Installed 3 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 - + sniffio==1.3.0 + + anyio==4.3.0 + + idna==3.6 + + sniffio==1.3.1 "### ); diff --git a/crates/uv/tests/pip_list.rs b/crates/uv/tests/pip_list.rs index 66be0d551..e7e17bf2d 100644 --- a/crates/uv/tests/pip_list.rs +++ b/crates/uv/tests/pip_list.rs @@ -129,10 +129,10 @@ fn list_editable() -> Result<()> { Resolved 4 packages in [TIME] Downloaded 3 packages in [TIME] Installed 4 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 + + anyio==4.3.0 + + idna==3.6 + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -185,10 +185,10 @@ fn list_editable() -> Result<()> { ----- stdout ----- Package Version Editable project location --------------- ------- ------------------------------------------------ - anyio 4.0.0 - idna 3.4 + anyio 4.3.0 + idna 3.6 poetry-editable 0.1.0 [WORKSPACE_DIR]/scripts/packages/poetry_editable - sniffio 1.3.0 + sniffio 1.3.1 ----- stderr ----- "### @@ -226,10 +226,10 @@ fn list_editable_only() -> Result<()> { Resolved 4 packages in [TIME] Downloaded 3 packages in [TIME] Installed 4 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 + + anyio==4.3.0 + + idna==3.6 + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -295,9 +295,9 @@ fn list_editable_only() -> Result<()> { ----- stdout ----- Package Version ------- ------- - anyio 4.0.0 - idna 3.4 - sniffio 1.3.0 + anyio 4.3.0 + idna 3.6 + sniffio 1.3.1 ----- stderr ----- "### @@ -352,10 +352,10 @@ fn list_exclude() -> Result<()> { Resolved 4 packages in [TIME] Downloaded 3 packages in [TIME] Installed 4 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 + + anyio==4.3.0 + + idna==3.6 + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -403,10 +403,10 @@ fn list_exclude() -> Result<()> { ----- stdout ----- Package Version Editable project location --------------- ------- ------------------------------------------------ - anyio 4.0.0 - idna 3.4 + anyio 4.3.0 + idna 3.6 poetry-editable 0.1.0 [WORKSPACE_DIR]/scripts/packages/poetry_editable - sniffio 1.3.0 + sniffio 1.3.1 ----- stderr ----- "### @@ -426,9 +426,9 @@ fn list_exclude() -> Result<()> { ----- stdout ----- Package Version ------- ------- - anyio 4.0.0 - idna 3.4 - sniffio 1.3.0 + anyio 4.3.0 + idna 3.6 + sniffio 1.3.1 ----- stderr ----- "### @@ -450,9 +450,9 @@ fn list_exclude() -> Result<()> { ----- stdout ----- Package Version ------- ------- - anyio 4.0.0 - idna 3.4 - sniffio 1.3.0 + anyio 4.3.0 + idna 3.6 + sniffio 1.3.1 ----- stderr ----- "### @@ -493,10 +493,10 @@ fn list_format_json() -> Result<()> { Resolved 4 packages in [TIME] Downloaded 3 packages in [TIME] Installed 4 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 + + anyio==4.3.0 + + idna==3.6 + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -548,7 +548,7 @@ fn list_format_json() -> Result<()> { success: true exit_code: 0 ----- stdout ----- - [{"name":"anyio","version":"4.0.0"},{"name":"idna","version":"3.4"},{"name":"poetry-editable","version":"0.1.0","editable_project_location":"[WORKSPACE_DIR]/scripts/packages/poetry_editable"},{"name":"sniffio","version":"1.3.0"}] + [{"name":"anyio","version":"4.3.0"},{"name":"idna","version":"3.6"},{"name":"poetry-editable","version":"0.1.0","editable_project_location":"[WORKSPACE_DIR]/scripts/packages/poetry_editable"},{"name":"sniffio","version":"1.3.1"}] ----- stderr ----- "### @@ -584,7 +584,7 @@ fn list_format_json() -> Result<()> { success: true exit_code: 0 ----- stdout ----- - [{"name":"anyio","version":"4.0.0"},{"name":"idna","version":"3.4"},{"name":"sniffio","version":"1.3.0"}] + [{"name":"anyio","version":"4.3.0"},{"name":"idna","version":"3.6"},{"name":"sniffio","version":"1.3.1"}] ----- stderr ----- "### @@ -642,10 +642,10 @@ fn list_format_freeze() -> Result<()> { Resolved 4 packages in [TIME] Downloaded 3 packages in [TIME] Installed 4 packages in [TIME] - + anyio==4.0.0 - + idna==3.4 + + anyio==4.3.0 + + idna==3.6 + poetry-editable==0.1.0 (from file://[WORKSPACE_DIR]/scripts/packages/poetry_editable) - + sniffio==1.3.0 + + sniffio==1.3.1 "### ); @@ -690,10 +690,10 @@ fn list_format_freeze() -> Result<()> { success: true exit_code: 0 ----- stdout ----- - anyio==4.0.0 - idna==3.4 + anyio==4.3.0 + idna==3.6 poetry-editable==0.1.0 - sniffio==1.3.0 + sniffio==1.3.1 ----- stderr ----- "### @@ -729,9 +729,9 @@ fn list_format_freeze() -> Result<()> { success: true exit_code: 0 ----- stdout ----- - anyio==4.0.0 - idna==3.4 - sniffio==1.3.0 + anyio==4.3.0 + idna==3.6 + sniffio==1.3.1 ----- stderr ----- "### diff --git a/crates/uv/tests/pip_show.rs b/crates/uv/tests/pip_show.rs index cb9854fcf..2f39dba64 100644 --- a/crates/uv/tests/pip_show.rs +++ b/crates/uv/tests/pip_show.rs @@ -76,11 +76,11 @@ fn show_requires_multiple() -> Result<()> { Resolved 5 packages in [TIME] Downloaded 5 packages in [TIME] Installed 5 packages in [TIME] - + certifi==2023.11.17 + + certifi==2024.2.2 + charset-normalizer==3.3.2 - + idna==3.4 + + idna==3.6 + requests==2.31.0 - + urllib3==2.1.0 + + urllib3==2.2.1 "### ); diff --git a/crates/uv/tests/venv.rs b/crates/uv/tests/venv.rs index 067c14146..805d1bb60 100644 --- a/crates/uv/tests/venv.rs +++ b/crates/uv/tests/venv.rs @@ -176,7 +176,7 @@ fn seed() -> Result<()> { ----- stderr ----- Using Python [VERSION] interpreter at: [PATH] Creating virtualenv at: .venv - + pip==23.3.1 + + pip==24.0 Activate with: source .venv/bin/activate "### ); @@ -223,9 +223,9 @@ fn seed_older_python_version() -> Result<()> { ----- stderr ----- Using Python [VERSION] interpreter at: [PATH] Creating virtualenv at: .venv - + pip==23.3.1 - + setuptools==68.2.2 - + wheel==0.41.3 + + pip==24.0 + + setuptools==69.2.0 + + wheel==0.43.0 Activate with: source .venv/bin/activate "### );