File: remove-no-wheel-usage.patch

package info (click to toggle)
scikit-build-core 0.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,408 kB
  • sloc: python: 13,380; ansic: 140; cpp: 134; sh: 27; fortran: 18; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 517 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
Description: remove usage of deprecated --no-wheel in tests
Author: Ananthu C V <weepingclown@debian.org>
Forwarded: not-needed
Last-Update: 2025-05-07
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -80,3 +80,3 @@
     def __init__(self, env_dir: Path, *, wheelhouse: Path | None = None) -> None:
-        cmd = [str(env_dir), "--no-setuptools", "--no-wheel", "--activators", ""]
+        cmd = [str(env_dir), "--no-setuptools", "--activators", ""]
         result = _virtualenv.cli_run(cmd, setup_logging=False)