about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-06-26 16:41:00 +0200
committerGitHub <noreply@github.com>2018-06-26 16:41:00 +0200
commitfc66a3dc88b1263ec6ae7b441eb9a4231befd8b5 (patch)
treeaae147ceb942d1e2398be2b8ce082b9bb1306d9e
parent191c42d6ca17a3687af23d13cbfe414d9c203d29 (diff)
parent3a2e601efd8d43ad35e5340aeb6b815086229d84 (diff)
downloadnixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.tar
nixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.tar.gz
nixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.tar.bz2
nixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.tar.lz
nixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.tar.xz
nixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.tar.zst
nixlib-fc66a3dc88b1263ec6ae7b441eb9a4231befd8b5.zip
Merge pull request #42606 from pandaman64/qiskit
qiskit: fix build
-rw-r--r--pkgs/development/python-modules/qiskit/setup.py.patch12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/qiskit/setup.py.patch b/pkgs/development/python-modules/qiskit/setup.py.patch
index bb7cb71ae098..9c4224ce64c6 100644
--- a/pkgs/development/python-modules/qiskit/setup.py.patch
+++ b/pkgs/development/python-modules/qiskit/setup.py.patch
@@ -1,19 +1,21 @@
 --- a/setup.py
 +++ b/setup.py
-@@ -28,11 +28,11 @@ from setuptools.dist import Distribution
+@@ -18,13 +18,13 @@ from setuptools.dist import Distribution
  
  requirements = [
-     "IBMQuantumExperience>=1.8.29",
+     "IBMQuantumExperience>=1.9.2",
 -    "matplotlib>=2.1,<2.2",
 -    "networkx>=2.0,<2.1",
 -    "numpy>=1.13,<1.15",
 -    "ply==3.10",
--    "scipy>=0.19,<1.1",
+-    "scipy>=0.19,<1.2",
+-    "sympy>=1.0,<1.2",
+-    "pillow>=4.2.1,<5.2"
 +    "matplotlib>=2.1",
 +    "networkx>=2.0",
 +    "numpy>=1.13",
 +    "ply>=3.10",
 +    "scipy>=0.19",
-     "sympy>=1.0",
-     "pillow>=4.2.1"
++    "sympy>=1.0",
++    "pillow>=4.2.1"
  ]