Merge pull request #42606 from pandaman64/qiskit

qiskit: fix build
This commit is contained in:
Frederik Rietdijk 2018-06-26 16:41:00 +02:00 committed by GitHub
commit fc66a3dc88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,21 @@
--- a/setup.py --- a/setup.py
+++ b/setup.py +++ b/setup.py
@@ -28,11 +28,11 @@ from setuptools.dist import Distribution @@ -18,13 +18,13 @@ from setuptools.dist import Distribution
requirements = [ requirements = [
"IBMQuantumExperience>=1.8.29", "IBMQuantumExperience>=1.9.2",
- "matplotlib>=2.1,<2.2", - "matplotlib>=2.1,<2.2",
- "networkx>=2.0,<2.1", - "networkx>=2.0,<2.1",
- "numpy>=1.13,<1.15", - "numpy>=1.13,<1.15",
- "ply==3.10", - "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", + "matplotlib>=2.1",
+ "networkx>=2.0", + "networkx>=2.0",
+ "numpy>=1.13", + "numpy>=1.13",
+ "ply>=3.10", + "ply>=3.10",
+ "scipy>=0.19", + "scipy>=0.19",
"sympy>=1.0", + "sympy>=1.0",
"pillow>=4.2.1" + "pillow>=4.2.1"
] ]