Skip to content

Commit 6d57b46

Browse files
committed
Update packse to pull in additional local version tests
1 parent b50cb3e commit 6d57b46

File tree

5 files changed

+569
-31
lines changed

5 files changed

+569
-31
lines changed

crates/uv/tests/pip_compile_scenarios.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! DO NOT EDIT
22
//!
33
//! Generated with ./scripts/scenarios/sync.sh
4-
//! Scenarios from <https://github.com/zanieb/packse/tree/0.3.7/scenarios>
4+
//! Scenarios from <https://github.com/zanieb/packse/tree/0.3.8/scenarios>
55
//!
66
#![cfg(all(feature = "python", feature = "pypi"))]
77

@@ -27,9 +27,9 @@ fn command(context: &TestContext, python_versions: &[&str]) -> Command {
2727
.arg("compile")
2828
.arg("requirements.in")
2929
.arg("--index-url")
30-
.arg("https://astral-sh.github.io/packse/0.3.7/simple-html/")
30+
.arg("https://astral-sh.github.io/packse/0.3.8/simple-html/")
3131
.arg("--find-links")
32-
.arg("https://raw.githubusercontent.com/zanieb/packse/0.3.7/vendor/links.html")
32+
.arg("https://raw.githubusercontent.com/zanieb/packse/0.3.8/vendor/links.html")
3333
.arg("--cache-dir")
3434
.arg(context.cache_dir.path())
3535
.env("VIRTUAL_ENV", context.venv.as_os_str())
@@ -66,7 +66,7 @@ fn incompatible_python_compatible_override() -> Result<()> {
6666
let context = TestContext::new("3.9");
6767
let python_versions = &[];
6868

69-
// In addition to the standard filters, swap out package names for more realistic messages
69+
// In addition to the standard filters, swap out package names for shorter messages
7070
let mut filters = INSTA_FILTERS.to_vec();
7171
filters.push((r"incompatible-python-compatible-override-", "package-"));
7272

@@ -115,7 +115,7 @@ fn compatible_python_incompatible_override() -> Result<()> {
115115
let context = TestContext::new("3.11");
116116
let python_versions = &[];
117117

118-
// In addition to the standard filters, swap out package names for more realistic messages
118+
// In addition to the standard filters, swap out package names for shorter messages
119119
let mut filters = INSTA_FILTERS.to_vec();
120120
filters.push((r"compatible-python-incompatible-override-", "package-"));
121121

@@ -162,7 +162,7 @@ fn incompatible_python_compatible_override_unavailable_no_wheels() -> Result<()>
162162
let context = TestContext::new("3.9");
163163
let python_versions = &[];
164164

165-
// In addition to the standard filters, swap out package names for more realistic messages
165+
// In addition to the standard filters, swap out package names for shorter messages
166166
let mut filters = INSTA_FILTERS.to_vec();
167167
filters.push((
168168
r"incompatible-python-compatible-override-unavailable-no-wheels-",
@@ -218,7 +218,7 @@ fn incompatible_python_compatible_override_available_no_wheels() -> Result<()> {
218218
let context = TestContext::new("3.9");
219219
let python_versions = &["3.11"];
220220

221-
// In addition to the standard filters, swap out package names for more realistic messages
221+
// In addition to the standard filters, swap out package names for shorter messages
222222
let mut filters = INSTA_FILTERS.to_vec();
223223
filters.push((
224224
r"incompatible-python-compatible-override-available-no-wheels-",
@@ -273,7 +273,7 @@ fn incompatible_python_compatible_override_no_compatible_wheels() -> Result<()>
273273
let context = TestContext::new("3.9");
274274
let python_versions = &[];
275275

276-
// In addition to the standard filters, swap out package names for more realistic messages
276+
// In addition to the standard filters, swap out package names for shorter messages
277277
let mut filters = INSTA_FILTERS.to_vec();
278278
filters.push((
279279
r"incompatible-python-compatible-override-no-compatible-wheels-",
@@ -331,7 +331,7 @@ fn incompatible_python_compatible_override_other_wheel() -> Result<()> {
331331
let context = TestContext::new("3.9");
332332
let python_versions = &[];
333333

334-
// In addition to the standard filters, swap out package names for more realistic messages
334+
// In addition to the standard filters, swap out package names for shorter messages
335335
let mut filters = INSTA_FILTERS.to_vec();
336336
filters.push((
337337
r"incompatible-python-compatible-override-other-wheel-",
@@ -391,7 +391,7 @@ fn python_patch_override_no_patch() -> Result<()> {
391391
let context = TestContext::new("3.8.18");
392392
let python_versions = &[];
393393

394-
// In addition to the standard filters, swap out package names for more realistic messages
394+
// In addition to the standard filters, swap out package names for shorter messages
395395
let mut filters = INSTA_FILTERS.to_vec();
396396
filters.push((r"python-patch-override-no-patch-", "package-"));
397397

@@ -438,7 +438,7 @@ fn python_patch_override_patch_compatible() -> Result<()> {
438438
let context = TestContext::new("3.8.18");
439439
let python_versions = &[];
440440

441-
// In addition to the standard filters, swap out package names for more realistic messages
441+
// In addition to the standard filters, swap out package names for shorter messages
442442
let mut filters = INSTA_FILTERS.to_vec();
443443
filters.push((r"python-patch-override-patch-compatible-", "package-"));
444444

0 commit comments

Comments
 (0)