1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Removes install_requires in order to avoid automatic package
installation with some Python package managers.
Author: Josue Ortega <josue@debian.org>
Last-Update: 2021-12-08
Forwarded: not-needed
--- a/setup.py
+++ b/setup.py
@@ -537,7 +537,6 @@
+ graph_objs_packages
+ validator_packages,
data_files=[("etc/jupyter/nbconfig/notebook.d", ["jupyterlab-plotly.json"]),],
- install_requires=["tenacity>=6.2.0", "six"],
zip_safe=False,
cmdclass=dict(
build_py=js_prerelease(versioneer_cmds["build_py"]),
|