File: no-internet.patch

package info (click to toggle)
python-awkward 2.8.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,140 kB
  • sloc: python: 182,845; cpp: 33,828; sh: 432; makefile: 21; javascript: 8
file content (21 lines) | stat: -rw-r--r-- 792 bytes parent folder | download
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: