Skip to content

Prefixed batch script commands with call #26383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
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%