Update to packse 0.3.31 (#5441)

Update packse to 0.3.31, adding the instability scenarios.
This commit is contained in:
konsti 2024-07-26 17:39:29 +02:00 committed by GitHub
parent cb505d24f8
commit f1eda3590b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 490 additions and 229 deletions

View file

@ -29,7 +29,7 @@ static EXCLUDE_NEWER: &str = "2024-03-25T00:00:00Z";
/// Using a find links url allows using `--index-url` instead of `--extra-index-url` in tests
/// to prevent dependency confusion attacks against our test suite.
pub const BUILD_VENDOR_LINKS_URL: &str =
"https://raw.githubusercontent.com/astral-sh/packse/0.3.30/vendor/links.html";
"https://raw.githubusercontent.com/astral-sh/packse/0.3.31/vendor/links.html";
#[doc(hidden)] // Macro and test context only, don't use directly.
pub const INSTA_FILTERS: &[(&str, &str)] = &[

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
//! DO NOT EDIT
//!
//! Generated with `./scripts/sync_scenarios.sh`
//! Scenarios from <https://github.com/astral-sh/packse/tree/0.3.30/scenarios>
//! Scenarios from <https://github.com/astral-sh/packse/tree/0.3.31/scenarios>
//!
#![cfg(all(feature = "python", feature = "pypi", unix))]
@ -27,9 +27,9 @@ fn command(context: &TestContext, python_versions: &[&str]) -> Command {
.arg("compile")
.arg("requirements.in")
.arg("--index-url")
.arg("https://astral-sh.github.io/packse/0.3.30/simple-html/")
.arg("https://astral-sh.github.io/packse/0.3.31/simple-html/")
.arg("--find-links")
.arg("https://raw.githubusercontent.com/astral-sh/packse/0.3.30/vendor/links.html");
.arg("https://raw.githubusercontent.com/astral-sh/packse/0.3.31/vendor/links.html");
context.add_shared_args(&mut command);
command.env_remove("UV_EXCLUDE_NEWER");
command.env("UV_TEST_PYTHON_PATH", python_path);

View file

@ -1,7 +1,7 @@
//! DO NOT EDIT
//!
//! Generated with `./scripts/sync_scenarios.sh`
//! Scenarios from <https://github.com/astral-sh/packse/tree/0.3.30/scenarios>
//! Scenarios from <https://github.com/astral-sh/packse/tree/0.3.31/scenarios>
//!
#![cfg(all(feature = "python", feature = "pypi", unix))]
@ -46,9 +46,9 @@ fn command(context: &TestContext) -> Command {
.arg("pip")
.arg("install")
.arg("--index-url")
.arg("https://astral-sh.github.io/packse/0.3.30/simple-html/")
.arg("https://astral-sh.github.io/packse/0.3.31/simple-html/")
.arg("--find-links")
.arg("https://raw.githubusercontent.com/astral-sh/packse/0.3.30/vendor/links.html");
.arg("https://raw.githubusercontent.com/astral-sh/packse/0.3.31/vendor/links.html");
context.add_shared_args(&mut command);
command.env_remove("UV_EXCLUDE_NEWER");
command