Skip to content

Commit fece39a

Browse files
committed
make dependencies less strict
1 parent 6ee8d75 commit fece39a

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

requirements.txt

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
adaptive==0.11.1
2-
cma==3.0.3
3-
docstr-coverage==1.2.0
4-
gast==0.3.3
5-
hjson==3.0.2
6-
numpy==1.19.5
7-
pre-commit==2.13.0
8-
pytest-cov==2.11.1
9-
pytest-xdist==2.2.1
10-
python-dateutil==2.8.1
11-
qiskit==0.25.0
12-
radon==4.3.2
13-
rich==9.2.0
14-
scipy==1.5.2
15-
six==1.15.0
16-
Sphinx==3.2.1
17-
sphinx-autoapi==1.4.0
18-
tensorflow==2.4.2
19-
tensorflow-estimator==2.4.0
20-
tensorflow-probability==0.12.1
21-
xenon==0.7.1
1+
adaptive>=0.11.1
2+
cma>=3.0.3
3+
docstr-coverage>=1.2.0
4+
gast>=0.3.3
5+
hjson>=3.0.2
6+
numpy>=1.19.5
7+
pre-commit>=2.7.1
8+
pytest-cov>=2.11.1
9+
pytest-xdist>=2.2.1
10+
python-dateutil>=2.8.1
11+
qiskit>=0.25.0
12+
radon>=4.3.2
13+
rich>=9.2.0
14+
scipy>=1.5.2
15+
six>=1.15.0
16+
Sphinx>=3.2.1
17+
sphinx-autoapi>=1.4.0
18+
tensorflow>=2.4.1
19+
tensorflow-estimator>=2.4.0
20+
tensorflow-probability>=0.12.1
21+
xenon>=0.7.1

setup.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@
3434
long_description=open("README.md").read(),
3535
long_description_content_type="text/markdown",
3636
install_requires=[
37-
"adaptive==0.11.1",
38-
"cma==3.0.3",
39-
"gast==0.3.3",
40-
"hjson==3.0.2",
41-
"rich==9.2.0",
42-
"numpy==1.19.5",
43-
"scipy==1.5.2",
44-
"tensorflow==2.4.2",
45-
"tensorflow-estimator==2.4.0",
46-
"tensorflow-probability==0.12.1",
37+
"adaptive>=0.11.1",
38+
"cma>=3.0.3",
39+
"gast>=0.3.3",
40+
"hjson>=3.0.2",
41+
"rich>=9.2.0",
42+
"numpy>=1.19.5",
43+
"scipy>=1.5.2",
44+
"tensorflow>=2.4.1",
45+
"tensorflow-estimator>=2.4.0",
46+
"tensorflow-probability>=0.12.1",
4747
],
4848
python_requires="~=3.6",
4949
)

0 commit comments

Comments
 (0)