Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ci/deps/azure-windows-37.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: pandas-dev
channels:
- defaults
- conda-forge
dependencies:
- beautifulsoup4
- bottleneck
- gcsfs
- html5lib
- jinja2
- lxml
Expand Down
12 changes: 6 additions & 6 deletions ci/incremental/setup_conda_environment.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ set PIP_INSTALL=pip install -q
@rem Deactivate any environment
call deactivate
@rem Display root environment (for debugging)
conda list
call conda list
@rem Clean up any left-over from a previous build
conda remove --all -q -y -n pandas-dev
call conda remove --all -q -y -n pandas-dev
@rem Upgrade conda
call conda update conda
@rem Scipy, CFFI, jinja2 and IPython are optional dependencies, but exercised in the test suite
conda env create --file=ci\deps\azure-windows-%CONDA_PY%.yaml
call conda env create --file=ci\deps\azure-windows-%CONDA_PY%.yaml

call activate pandas-dev
@rem gh-26345: we need to separate this out so that Azure doesn't complain
conda install -c conda-forge gcsfs
conda list
call conda list

if %errorlevel% neq 0 exit /b %errorlevel%