Skip to content

Commit

Permalink
Avoid pandas >1
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgfierro authored Feb 14, 2020
1 parent 4e8412d commit 79f1ca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/generate_conda_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
CHANNELS = ["defaults", "conda-forge", "pytorch", "fastai"]

CONDA_BASE = {
"python": "python==3.6.10",
"bottleneck": "bottleneck==1.2.1",
"dask": "dask>=0.17.1",
"fastparquet": "fastparquet>=0.1.6",
Expand All @@ -43,9 +44,8 @@
"matplotlib": "matplotlib>=2.2.2",
"mock": "mock==2.0.0",
"numpy": "numpy>=1.13.3",
"pandas": "pandas>=0.23.4",
"pandas": "pandas>=0.23.4,<1.0.0",
"pip": "pip>=19.0.3",
"python": "python==3.6.8",
"pytest": "pytest>=3.6.4",
"pytorch": "pytorch-cpu>=1.0.0",
"seaborn": "seaborn>=0.8.1",
Expand Down

0 comments on commit 79f1ca1

Please sign in to comment.