1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Do not try to download packages from PyPI
The nox prepare target assumes that a virtual environment will be used.
Therefore, it tries to install all build dependencies from pyPI before
processing its build steps. This is not desired in our build environment.
Author: Athos Ribeiro <athos.ribeiro@canonical.com>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1072109
Forwarded: not-needed
Last-Update: 2024-06-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/noxfile.py
+++ b/noxfile.py
@@ -151,8 +151,6 @@
parser.add_argument("--docs", action="store_true")
args = parser.parse_args(session.posargs)
- session.install(*requirements_dev)
-
prepare_all = not session.posargs
if args.headers or prepare_all:
|