-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CI: Fixes to conda environment names #23866
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
Changes from 16 commits
88bc2b7
fc88e2b
fb34dcc
04e721c
cd81131
463be05
6efdedd
24bc4f6
28a3ebf
9f56258
bf6bca2
2c43b2f
3a2a193
bacb230
393f754
840c566
d969685
a0a978a
e024ba0
26df0d4
53f8eaa
de8c1bc
3b6d646
1d9e93a
e3c9fc1
603bd0b
8a37dd0
e59c787
4b0b03e
45e5f06
1c4ddfb
61b7f6f
997d680
49231a7
a0331bf
adea341
afe3b1f
fbde055
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
dependencies: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
dependencies: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pandas | ||
name: pandas-dev | ||
channels: | ||
- defaults | ||
- conda-forge | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#!/bin/bash | ||
|
||
source activate $CONDA_ENV | ||
|
||
# Make sure any error below is reported as such | ||
set -v -e | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,10 @@ call deactivate | |
@rem Display root environment (for debugging) | ||
conda list | ||
@rem Clean up any left-over from a previous build | ||
conda remove --all -q -y -n %CONDA_ENV% | ||
conda remove -all -q -y -n pandas-dev | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the removed |
||
@rem Scipy, CFFI, jinja2 and IPython are optional dependencies, but exercised in the test suite | ||
conda env create -n %CONDA_ENV% --file=ci\deps\azure-windows-%CONDA_PY%.yaml | ||
conda env create --file=ci\deps\azure-windows-%CONDA_PY%.yaml | ||
|
||
call activate %CONDA_ENV% | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this, and another one deleted, need to be moved to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same comment as above |
||
conda list | ||
|
||
if %errorlevel% neq 0 exit /b %errorlevel% |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
|
||
echo "[script_single]" | ||
|
||
source activate pandas | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you remove one of the blank lines besides de source activate and leave just one |
||
if [ -n "$LOCALE_OVERRIDE" ]; then | ||
echo "Setting LC_ALL and LANG to $LOCALE_OVERRIDE" | ||
|
Uh oh!
There was an error while loading. Please reload this page.