1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: temporarily disable visdom test dependency
visdom was relicensed from CC-BY-NC-4.0 to Apache 2.0
but has not had a new release that uses the new license
Bug: https://github.com/fossasia/visdom/issues/823 https://github.com/fossasia/visdom/issues/759
Author: Paul Wise <pabs@debian.org>
Forwarded: not-needed
--- a/setup.py
+++ b/setup.py
@@ -270,7 +270,12 @@ Copyright (c) 2009-now Radim Rehurek
distributed_env = ['Pyro4 >= 4.27']
-visdom_req = ['visdom >= 0.1.8, != 0.1.8.7']
+# FIXME: visdom was relicensed from CC-BY-NC-4.0 to Apache 2.0
+# but has not had a new release that uses the new license
+# https://github.com/fossasia/visdom/issues/823
+# https://github.com/fossasia/visdom/issues/759
+#visdom_req = ['visdom >= 0.1.8, != 0.1.8.7']
+visdom_req = []
# packages included for build-testing everywhere
core_testenv = [
|