nixpkgs/pkgs/development/python-modules/qiskit/setup.py.patch

22 lines
469 B
Diff
Raw Normal View History

2018-05-11 23:49:14 -07:00
--- a/setup.py
+++ b/setup.py
2018-06-26 00:55:08 -07:00
@@ -18,13 +18,13 @@ from setuptools.dist import Distribution
2018-05-11 23:49:14 -07:00
requirements = [
2018-06-26 00:55:08 -07:00
"IBMQuantumExperience>=1.9.2",
2018-05-11 23:49:14 -07:00
- "matplotlib>=2.1,<2.2",
- "networkx>=2.0,<2.1",
- "numpy>=1.13,<1.15",
- "ply==3.10",
2018-06-26 00:55:08 -07:00
- "scipy>=0.19,<1.2",
- "sympy>=1.0,<1.2",
- "pillow>=4.2.1,<5.2"
2018-05-11 23:49:14 -07:00
+ "matplotlib>=2.1",
+ "networkx>=2.0",
+ "numpy>=1.13",
+ "ply>=3.10",
+ "scipy>=0.19",
2018-06-26 00:55:08 -07:00
+ "sympy>=1.0",
+ "pillow>=4.2.1"
2018-05-11 23:49:14 -07:00
]