-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
[ci] use conda-forge in Windows CI jobs and Docker images #4993
Conversation
@@ -50,7 +50,9 @@ if ($env:TASK -eq "swig") { | |||
Exit 0 | |||
} | |||
|
|||
conda install -q -y -n $env:CONDA_ENV joblib matplotlib numpy pandas psutil pytest python-graphviz scikit-learn scipy ; Check-Output $? | |||
conda install -q -y -n $env:CONDA_ENV joblib matplotlib numpy pandas psutil pytest scikit-learn scipy ; Check-Output $? | |||
# python-graphviz has to be installed separately to prevent conda from downgrading to pypy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same problem here as at *nix systems (#4953 (comment)).
|
||
RUN conda config --set always_yes yes --set changeps1 no && \ | ||
conda create -y -q -n py3 python=3.8 mkl numpy scipy scikit-learn jupyter notebook ipython pandas matplotlib | ||
conda create -y -q -n py3 numpy scipy scikit-learn jupyter notebook ipython pandas matplotlib |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just use default Python to not update this place each time some Python version reaches EOL.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for doing this!
This pull request has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
Continuation of #4953.
Refer to #4953 (comment).