From 3c6bf8ed67e604618806c8af294d503f8a6656c1 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Wed, 12 Jun 2024 10:52:49 -0400 Subject: [PATCH] scenarios: mark requires-python tests as satisfiable This was an oversight when I initially wrote the tests. They are of course satisfiable. We are just checking to make sure the `a` dependency is filtered out by our `Requires-Python` specifier. --- scenarios/fork/requires-python-full-prerelease.toml | 2 +- scenarios/fork/requires-python-full.toml | 2 +- scenarios/fork/requires-python.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scenarios/fork/requires-python-full-prerelease.toml b/scenarios/fork/requires-python-full-prerelease.toml index 0a7c267d..2fba6fdd 100644 --- a/scenarios/fork/requires-python-full-prerelease.toml +++ b/scenarios/fork/requires-python-full-prerelease.toml @@ -11,7 +11,7 @@ a pre-release version. universal = true [expected] -satisfiable = false +satisfiable = true [environment] python = "3.12" diff --git a/scenarios/fork/requires-python-full.toml b/scenarios/fork/requires-python-full.toml index 43aefd7d..1def05b8 100644 --- a/scenarios/fork/requires-python-full.toml +++ b/scenarios/fork/requires-python-full.toml @@ -11,7 +11,7 @@ instead of the more common `python_version` marker. universal = true [expected] -satisfiable = false +satisfiable = true [environment] python = "3.12" diff --git a/scenarios/fork/requires-python.toml b/scenarios/fork/requires-python.toml index b0ad4dcc..90405b9a 100644 --- a/scenarios/fork/requires-python.toml +++ b/scenarios/fork/requires-python.toml @@ -8,7 +8,7 @@ exclusion of dependency specifications that cannot possibly satisfy it. universal = true [expected] -satisfiable = false +satisfiable = true [environment] python = "3.12"