From 51ab32afff6fe84fa7f65afbf0b515f9f45c4039 Mon Sep 17 00:00:00 2001 From: David Hotham Date: Sun, 4 Sep 2022 02:15:01 +0100 Subject: [PATCH] bump lockfile version --- src/poetry/packages/locker.py | 2 +- tests/console/commands/test_lock.py | 2 +- tests/fixtures/outdated_lock/poetry.lock | 2 +- tests/fixtures/up_to_date_lock/poetry.lock | 2 +- .../fixtures/extras-with-dependencies.test | 2 +- tests/installation/fixtures/extras.test | 2 +- .../installation/fixtures/install-no-dev.test | 2 +- .../fixtures/no-dependencies.test | 2 +- tests/installation/fixtures/remove.test | 2 +- .../fixtures/update-with-lock.test | 2 +- .../fixtures/update-with-locked-extras.test | 2 +- .../fixtures/with-category-change.test | 2 +- .../fixtures/with-conditional-dependency.test | 2 +- .../fixtures/with-dependencies-extras.test | 2 +- .../with-dependencies-nested-extras.test | 2 +- .../fixtures/with-dependencies.test | 2 +- ...irectory-dependency-poetry-transitive.test | 2 +- .../with-directory-dependency-poetry.test | 2 +- .../with-directory-dependency-setuptools.test | 2 +- .../with-duplicate-dependencies-update.test | 2 +- .../fixtures/with-duplicate-dependencies.test | 2 +- .../with-file-dependency-transitive.test | 2 +- .../fixtures/with-file-dependency.test | 2 +- .../fixtures/with-multiple-updates.test | 2 +- .../fixtures/with-optional-dependencies.test | 2 +- .../fixtures/with-platform-dependencies.test | 2 +- .../fixtures/with-prereleases.test | 2 +- .../fixtures/with-pypi-repository.test | 2 +- .../fixtures/with-python-versions.test | 2 +- .../with-same-version-url-dependencies.test | 2 +- .../fixtures/with-sub-dependencies.test | 2 +- .../fixtures/with-url-dependency.test | 2 +- .../with-vcs-dependency-with-extras.test | 2 +- .../with-vcs-dependency-without-ref.test | 2 +- ...ith-wheel-dependency-no-requires-dist.test | 2 +- tests/packages/test_locker.py | 30 +++++++++---------- 36 files changed, 50 insertions(+), 50 deletions(-) diff --git a/src/poetry/packages/locker.py b/src/poetry/packages/locker.py index 9bbbc1dc8b9..8c284f0d365 100644 --- a/src/poetry/packages/locker.py +++ b/src/poetry/packages/locker.py @@ -41,7 +41,7 @@ class Locker: - _VERSION = "1.1" + _VERSION = "1.2" _legacy_keys = ["dependencies", "source", "extras", "dev-dependencies"] _relevant_keys = [*_legacy_keys, "group"] diff --git a/tests/console/commands/test_lock.py b/tests/console/commands/test_lock.py index dae977a1d27..84a997db85f 100644 --- a/tests/console/commands/test_lock.py +++ b/tests/console/commands/test_lock.py @@ -146,7 +146,7 @@ def test_lock_no_update( assert len(packages) == len(locked_repository.packages) - assert locker.lock_data["metadata"].get("lock-version") == "1.1" + assert locker.lock_data["metadata"].get("lock-version") == "1.2" for package in packages: assert locked_repository.find_packages(package.to_dependency()) diff --git a/tests/fixtures/outdated_lock/poetry.lock b/tests/fixtures/outdated_lock/poetry.lock index 0eef56ef0b6..9308c921955 100644 --- a/tests/fixtures/outdated_lock/poetry.lock +++ b/tests/fixtures/outdated_lock/poetry.lock @@ -211,7 +211,7 @@ hash = "sha256:d735b91d6d1692a6a181f2a8c9e0238e5f6373356f561bb9dc4c7af36f452010" six = "*" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "^3.8" content-hash = "2f47de5e052dabeff3c1362d3a37b5cfcaf9bbe9d9ce1681207e72ca1f4dab55" diff --git a/tests/fixtures/up_to_date_lock/poetry.lock b/tests/fixtures/up_to_date_lock/poetry.lock index 3a9340461cc..6f3931be704 100644 --- a/tests/fixtures/up_to_date_lock/poetry.lock +++ b/tests/fixtures/up_to_date_lock/poetry.lock @@ -211,7 +211,7 @@ hash = "sha256:63509b41d158ae5b7f67eb4ad20fecbb4eee99434e73e140354dc3ff8e09716f" six = "*" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "^3.8" content-hash = "0cd068218f235c162f7b74bc8faf4ce3387b82daee1c1bb7a97af034f27ee116" diff --git a/tests/installation/fixtures/extras-with-dependencies.test b/tests/installation/fixtures/extras-with-dependencies.test index c6f8dad346b..e5c03847040 100644 --- a/tests/installation/fixtures/extras-with-dependencies.test +++ b/tests/installation/fixtures/extras-with-dependencies.test @@ -42,7 +42,7 @@ foo = ["C"] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/extras.test b/tests/installation/fixtures/extras.test index 86b959002e5..52c623dc656 100644 --- a/tests/installation/fixtures/extras.test +++ b/tests/installation/fixtures/extras.test @@ -39,7 +39,7 @@ foo = ["D"] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/install-no-dev.test b/tests/installation/fixtures/install-no-dev.test index ec1b0c0248d..405fafbad67 100644 --- a/tests/installation/fixtures/install-no-dev.test +++ b/tests/installation/fixtures/install-no-dev.test @@ -27,7 +27,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/no-dependencies.test b/tests/installation/fixtures/no-dependencies.test index 61424ceee4b..2f9f69be392 100644 --- a/tests/installation/fixtures/no-dependencies.test +++ b/tests/installation/fixtures/no-dependencies.test @@ -2,7 +2,7 @@ package = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/remove.test b/tests/installation/fixtures/remove.test index e651474f509..dd33cc672af 100644 --- a/tests/installation/fixtures/remove.test +++ b/tests/installation/fixtures/remove.test @@ -9,7 +9,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/update-with-lock.test b/tests/installation/fixtures/update-with-lock.test index 728e198b30a..37b09980bb6 100644 --- a/tests/installation/fixtures/update-with-lock.test +++ b/tests/installation/fixtures/update-with-lock.test @@ -9,7 +9,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/update-with-locked-extras.test b/tests/installation/fixtures/update-with-locked-extras.test index ab0b6b850e3..a95da697644 100644 --- a/tests/installation/fixtures/update-with-locked-extras.test +++ b/tests/installation/fixtures/update-with-locked-extras.test @@ -43,7 +43,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-category-change.test b/tests/installation/fixtures/with-category-change.test index 54c9f1ebe62..69222c44c38 100644 --- a/tests/installation/fixtures/with-category-change.test +++ b/tests/installation/fixtures/with-category-change.test @@ -21,7 +21,7 @@ A = "^1.0" [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-conditional-dependency.test b/tests/installation/fixtures/with-conditional-dependency.test index a261b741e93..4f733bd424b 100644 --- a/tests/installation/fixtures/with-conditional-dependency.test +++ b/tests/installation/fixtures/with-conditional-dependency.test @@ -24,7 +24,7 @@ python = ">=3.6,<4.0" [metadata] python-versions = "~2.7 || ^3.4" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-dependencies-extras.test b/tests/installation/fixtures/with-dependencies-extras.test index e6f6c8b1338..47b0201cce1 100644 --- a/tests/installation/fixtures/with-dependencies-extras.test +++ b/tests/installation/fixtures/with-dependencies-extras.test @@ -33,7 +33,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-dependencies-nested-extras.test b/tests/installation/fixtures/with-dependencies-nested-extras.test index c4360d0cd27..586731bf68e 100644 --- a/tests/installation/fixtures/with-dependencies-nested-extras.test +++ b/tests/installation/fixtures/with-dependencies-nested-extras.test @@ -39,7 +39,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-dependencies.test b/tests/installation/fixtures/with-dependencies.test index 74699a91dd9..9b21eb02b09 100644 --- a/tests/installation/fixtures/with-dependencies.test +++ b/tests/installation/fixtures/with-dependencies.test @@ -18,7 +18,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-directory-dependency-poetry-transitive.test b/tests/installation/fixtures/with-directory-dependency-poetry-transitive.test index 223b4b287cf..6f7f1b62d3f 100644 --- a/tests/installation/fixtures/with-directory-dependency-poetry-transitive.test +++ b/tests/installation/fixtures/with-directory-dependency-poetry-transitive.test @@ -100,7 +100,7 @@ url = "project_with_transitive_file_dependencies" [metadata] content-hash = "123456789" -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" [metadata.files] diff --git a/tests/installation/fixtures/with-directory-dependency-poetry.test b/tests/installation/fixtures/with-directory-dependency-poetry.test index eab2b8e8a7a..d67ebd9d718 100644 --- a/tests/installation/fixtures/with-directory-dependency-poetry.test +++ b/tests/installation/fixtures/with-directory-dependency-poetry.test @@ -30,7 +30,7 @@ url = "tests/fixtures/project_with_extras" [metadata] content-hash = "123456789" -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" [metadata.files] diff --git a/tests/installation/fixtures/with-directory-dependency-setuptools.test b/tests/installation/fixtures/with-directory-dependency-setuptools.test index b6bf29946a6..2563b3a3ccf 100644 --- a/tests/installation/fixtures/with-directory-dependency-setuptools.test +++ b/tests/installation/fixtures/with-directory-dependency-setuptools.test @@ -36,7 +36,7 @@ pendulum = ">=1.4.4" [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-duplicate-dependencies-update.test b/tests/installation/fixtures/with-duplicate-dependencies-update.test index faec4acd70a..341492cf1e6 100644 --- a/tests/installation/fixtures/with-duplicate-dependencies-update.test +++ b/tests/installation/fixtures/with-duplicate-dependencies-update.test @@ -33,7 +33,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-duplicate-dependencies.test b/tests/installation/fixtures/with-duplicate-dependencies.test index 18ea4efe5bd..d4e0fe0feb0 100644 --- a/tests/installation/fixtures/with-duplicate-dependencies.test +++ b/tests/installation/fixtures/with-duplicate-dependencies.test @@ -57,7 +57,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-file-dependency-transitive.test b/tests/installation/fixtures/with-file-dependency-transitive.test index 6ea4aad8e9a..c032a5f091f 100644 --- a/tests/installation/fixtures/with-file-dependency-transitive.test +++ b/tests/installation/fixtures/with-file-dependency-transitive.test @@ -64,7 +64,7 @@ url = "project_with_transitive_file_dependencies" [metadata] content-hash = "123456789" -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" [metadata.files] diff --git a/tests/installation/fixtures/with-file-dependency.test b/tests/installation/fixtures/with-file-dependency.test index 6ba34523535..2ad0e06d80f 100644 --- a/tests/installation/fixtures/with-file-dependency.test +++ b/tests/installation/fixtures/with-file-dependency.test @@ -32,7 +32,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-multiple-updates.test b/tests/installation/fixtures/with-multiple-updates.test index b00bde40fd9..b206f043115 100644 --- a/tests/installation/fixtures/with-multiple-updates.test +++ b/tests/installation/fixtures/with-multiple-updates.test @@ -43,7 +43,7 @@ files = [] [metadata] python-versions = "~2.7 || ^3.4" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-optional-dependencies.test b/tests/installation/fixtures/with-optional-dependencies.test index f56bdfac4f0..37974ffc1a7 100644 --- a/tests/installation/fixtures/with-optional-dependencies.test +++ b/tests/installation/fixtures/with-optional-dependencies.test @@ -33,7 +33,7 @@ foo = ["A"] [metadata] python-versions = "~2.7 || ^3.4" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-platform-dependencies.test b/tests/installation/fixtures/with-platform-dependencies.test index 397145c4384..6048edc2cd9 100644 --- a/tests/installation/fixtures/with-platform-dependencies.test +++ b/tests/installation/fixtures/with-platform-dependencies.test @@ -42,7 +42,7 @@ foo = ["A"] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-prereleases.test b/tests/installation/fixtures/with-prereleases.test index fb6121dbd6d..902dfb1a683 100644 --- a/tests/installation/fixtures/with-prereleases.test +++ b/tests/installation/fixtures/with-prereleases.test @@ -18,7 +18,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-pypi-repository.test b/tests/installation/fixtures/with-pypi-repository.test index ddd396931af..bd8eae34fa2 100644 --- a/tests/installation/fixtures/with-pypi-repository.test +++ b/tests/installation/fixtures/with-pypi-repository.test @@ -166,7 +166,7 @@ hash = "sha256:70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9" [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-python-versions.test b/tests/installation/fixtures/with-python-versions.test index feb0880ded9..412a1ff1598 100644 --- a/tests/installation/fixtures/with-python-versions.test +++ b/tests/installation/fixtures/with-python-versions.test @@ -27,7 +27,7 @@ files = [] [metadata] python-versions = "~2.7 || ^3.4" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-same-version-url-dependencies.test b/tests/installation/fixtures/with-same-version-url-dependencies.test index e7e0e8e9f8c..c28464c4c6d 100644 --- a/tests/installation/fixtures/with-same-version-url-dependencies.test +++ b/tests/installation/fixtures/with-same-version-url-dependencies.test @@ -49,7 +49,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-sub-dependencies.test b/tests/installation/fixtures/with-sub-dependencies.test index 74eda1a856a..4f16246d6f1 100644 --- a/tests/installation/fixtures/with-sub-dependencies.test +++ b/tests/installation/fixtures/with-sub-dependencies.test @@ -42,7 +42,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-url-dependency.test b/tests/installation/fixtures/with-url-dependency.test index 0d883fcfd3b..ddf9ce6e479 100644 --- a/tests/installation/fixtures/with-url-dependency.test +++ b/tests/installation/fixtures/with-url-dependency.test @@ -29,7 +29,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-vcs-dependency-with-extras.test b/tests/installation/fixtures/with-vcs-dependency-with-extras.test index cc87dd5e970..3e7a657988f 100644 --- a/tests/installation/fixtures/with-vcs-dependency-with-extras.test +++ b/tests/installation/fixtures/with-vcs-dependency-with-extras.test @@ -41,7 +41,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-vcs-dependency-without-ref.test b/tests/installation/fixtures/with-vcs-dependency-without-ref.test index efc98787771..8f398146776 100644 --- a/tests/installation/fixtures/with-vcs-dependency-without-ref.test +++ b/tests/installation/fixtures/with-vcs-dependency-without-ref.test @@ -28,7 +28,7 @@ files = [] [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/installation/fixtures/with-wheel-dependency-no-requires-dist.test b/tests/installation/fixtures/with-wheel-dependency-no-requires-dist.test index d0fc1fb14ac..267160acf3d 100644 --- a/tests/installation/fixtures/with-wheel-dependency-no-requires-dist.test +++ b/tests/installation/fixtures/with-wheel-dependency-no-requires-dist.test @@ -16,7 +16,7 @@ url = "tests/fixtures/wheel_with_no_requires_dist/demo-0.1.0-py2.py3-none-any.wh [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] diff --git a/tests/packages/test_locker.py b/tests/packages/test_locker.py index 9a918848803..9196b27b68f 100644 --- a/tests/packages/test_locker.py +++ b/tests/packages/test_locker.py @@ -194,7 +194,7 @@ def test_lock_file_data_is_ordered(locker: Locker, root: ProjectPackage): url = "https://example.org/url-package-1.0-cp39-win_amd64.whl" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -236,7 +236,7 @@ def test_locker_properly_loads_extras(locker: Locker): redis = ["redis (>=2.10.5)"] [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "~2.7 || ^3.4" content-hash = "c3d07fca33fba542ef2b2a4d75bf5b48d892d21a830e2ad9c952ba5123a52f77" @@ -298,7 +298,7 @@ def test_locker_properly_loads_nested_extras(locker: Locker): [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] @@ -364,7 +364,7 @@ def test_locker_properly_loads_extras_legacy(locker: Locker): [metadata] python-versions = "*" -lock-version = "1.1" +lock-version = "1.2" content-hash = "123456789" [metadata.files] @@ -407,7 +407,7 @@ def test_locker_properly_loads_subdir(locker: Locker) -> None: subdirectory = "subdir" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -445,7 +445,7 @@ def test_lock_packages_with_null_description(locker: Locker, root: ProjectPackag files = [] [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -486,7 +486,7 @@ def test_lock_file_should_not_have_mixed_types(locker: Locker, root: ProjectPack foo = ["B (>=1.0.0)"] [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -516,7 +516,7 @@ def test_reading_lock_file_should_raise_an_error_on_invalid_data(locker: Locker) foo = ["bar"] [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -564,7 +564,7 @@ def test_locking_legacy_repository_package_should_include_source_section( reference = "legacy" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -649,7 +649,7 @@ def test_extras_dependencies_are_ordered(locker: Locker, root: ProjectPackage): B = {version = "^1.0.0", extras = ["a", "b", "c"], optional = true} [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -744,7 +744,7 @@ def test_locker_dumps_dependency_information_correctly( F = {git = "https://github.com/python-poetry/poetry.git", branch = "foo"} [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -790,7 +790,7 @@ def test_locker_dumps_subdir(locker: Locker, root: ProjectPackage) -> None: subdirectory = "subdir" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -836,7 +836,7 @@ def test_locker_dumps_dependency_extras_in_correct_order( C = ["first (==1.0.0)", "second (==1.0.0)", "third (==1.0.0)"] [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -868,7 +868,7 @@ def test_locked_repository_uses_root_dir_of_package( url = "lib/libA" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8" @@ -1014,7 +1014,7 @@ def test_lock_file_resolves_file_url_symlinks(root: ProjectPackage): resolved_reference = "123456" [metadata] -lock-version = "1.1" +lock-version = "1.2" python-versions = "*" content-hash = "115cf985d932e9bf5f540555bbdd75decbb62cac81e399375fc19f6277f8c1d8"