Skip to content

Added conda update step and re-added gcsfs #26413

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

Merged
merged 4 commits into from
May 15, 2019
Merged
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
5 changes: 4 additions & 1 deletion ci/azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ jobs:
steps:
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
displayName: Add conda to PATH
- script: conda env create --file ci\\deps\\azure-windows-$(CONDA_PY).yaml
- script: conda update -q -n base conda
displayName: Update conda
- script: conda env create -q --file ci\\deps\\azure-windows-$(CONDA_PY).yaml
displayName: Create anaconda environment
- script: |
call activate pandas-dev
call conda list
ci\\incremental\\build.cmd
displayName: 'Build'
- script: |
Expand Down
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