Skip to content

Commit 5b0610b

Browse files
datapythonistaTomAugspurger
authored andcommitted
DEPS: Pinning versions of some dependencies to speed up environment creation (#24015)
* DEPS: Pinning versions of some dependencies, to fix conda problem that makes solving the environment take around 45 minutes * Making pinned dependencies versions greater or equal, instead of just equal
1 parent 5b6b346 commit 5b0610b

File tree

2 files changed

+12
-20
lines changed

2 files changed

+12
-20
lines changed

environment.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,21 @@ channels:
44
- conda-forge
55
dependencies:
66
# required
7-
- NumPy
7+
- numpy>=1.15
88
- python=3
99
- python-dateutil>=2.5.0
1010
- pytz
1111

1212
# development
13-
- Cython>=0.28.2
13+
- cython>=0.28.2
1414
- flake8
1515
- flake8-comprehensions
1616
- flake8-rst=0.4.2
1717
- gitpython
18-
- hypothesis>=3.58.0
18+
- hypothesis>=3.82
1919
- isort
2020
- moto
21-
- pytest>=3.6
22-
- setuptools>=24.2.0
21+
- pytest>=4.0
2322
- sphinx
2423
- sphinxcontrib-spelling
2524

@@ -28,23 +27,20 @@ dependencies:
2827
- blosc
2928
- bottleneck>=1.2.0
3029
- fastparquet>=0.1.2
31-
- gcsfs
3230
- html5lib
3331
- ipython>=5.6.0
3432
- ipykernel
3533
- jinja2
3634
- lxml
3735
- matplotlib>=2.0.0
3836
- nbsphinx
39-
- numexpr>=2.6.1
37+
- numexpr>=2.6.8
4038
- openpyxl
4139
- pyarrow>=0.7.0
42-
- pymysql
4340
- pytables>=3.4.2
4441
- pytest-cov
4542
- pytest-xdist
46-
- s3fs
47-
- scipy>=0.18.1
43+
- scipy>=1.1
4844
- seaborn
4945
- sqlalchemy
5046
- statsmodels

requirements-dev.txt

+6-10
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,35 @@
1-
NumPy
1+
numpy>=1.15
22
python-dateutil>=2.5.0
33
pytz
4-
Cython>=0.28.2
4+
cython>=0.28.2
55
flake8
66
flake8-comprehensions
77
flake8-rst==0.4.2
88
gitpython
9-
hypothesis>=3.58.0
9+
hypothesis>=3.82
1010
isort
1111
moto
12-
pytest>=3.6
13-
setuptools>=24.2.0
12+
pytest>=4.0
1413
sphinx
1514
sphinxcontrib-spelling
1615
beautifulsoup4>=4.2.1
1716
blosc
1817
bottleneck>=1.2.0
1918
fastparquet>=0.1.2
20-
gcsfs
2119
html5lib
2220
ipython>=5.6.0
2321
ipykernel
2422
jinja2
2523
lxml
2624
matplotlib>=2.0.0
2725
nbsphinx
28-
numexpr>=2.6.1
26+
numexpr>=2.6.8
2927
openpyxl
3028
pyarrow>=0.7.0
31-
pymysql
3229
tables>=3.4.2
3330
pytest-cov
3431
pytest-xdist
35-
s3fs
36-
scipy>=0.18.1
32+
scipy>=1.1
3733
seaborn
3834
sqlalchemy
3935
statsmodels

0 commit comments

Comments
 (0)