File: 01-removes-install-requires.patch

package info (click to toggle)
plotly 5.20.0%2Bdfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,004 kB
  • sloc: python: 368,735; javascript: 195,632; sh: 50; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Removes install_requires in order to avoid automatic package
 installation with some Python package managers.
Author: Josue Ortega <josue@debian.org>
Last-Update: 2023-07-02
Forwarded: not-needed

--- a/setup.py
+++ b/setup.py
@@ -539,6 +539,5 @@
     ]
     + graph_objs_packages
     + validator_packages,
-    install_requires=["tenacity>=6.2.0", "packaging"],
     zip_safe=False,
 )