Skip to content

Commit

Permalink
Merge pull request #15821 from asmeurer/sage-workaround
Browse files Browse the repository at this point in the history
Try a workaround to make the Sage tests pass on CI
  • Loading branch information
asmeurer committed Jan 21, 2019
2 parents 28d913d + 8f7351b commit de3c43c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ before_install:
conda clean --all;
if [[ "$TEST_SAGE" == "true" ]]; then
# Use a separate environment because sage downgrades matplotlib
conda create -n sage sagelib mpmath "ipython>=5.5.0,<6";
conda create -c conda-forge/label/cf201901 -n sage sagelib mpmath "ipython>=5.5.0,<6";
conda clean --all;
fi
if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
- task: CondaEnvironment@0
inputs:
createCustomEnvironment: true
createOptions: "-c conda-forge"
createOptions: "-c conda-forge/label/cf201901"
environmentName: 'sage'
packageSpecs: sage mpmath ipython>=5.5.0,<6 python=3
displayName: 'Create conda environment'
Expand Down

0 comments on commit de3c43c

Please sign in to comment.