Skip to content

Commit

Permalink
CI: try updating matplotlib
Browse files Browse the repository at this point in the history
  • Loading branch information
fkuehlein committed Jan 22, 2024
1 parent 6adfb5c commit 36ccf71
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ jobs:
- export MINICONDA_PATH_WIN=`cygpath --windows $MINICONDA_PATH`
- export MINICONDA_SUB_PATH=$MINICONDA_PATH/Scripts
- export MINICONDA_LIB_BIN_PATH=$MINICONDA_PATH/Library/bin
- choco install openssl.light
- choco install miniconda3 --params="'/JustMe /AddToPath:1 /D:$MINICONDA_PATH_WIN'"
# - choco install openssl.light
# - choco install miniconda3 --params="'/JustMe /AddToPath:1 /D:$MINICONDA_PATH_WIN'"
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe -O miniconda.exe
- start /wait "" miniconda.exe /S /InstallationType=JustMe /AddToPath=1 /D=$MINICONDA_PATH_WIN
- export PATH="$MINICONDA_PATH:$MINICONDA_SUB_PATH:$MINICONDA_LIB_BIN_PATH:$PATH"
- source $MINICONDA_PATH/etc/profile.d/conda.sh
- hash -r
Expand Down Expand Up @@ -83,13 +85,14 @@ install:
- travis_retry conda create -n test-env
- eval "$(conda shell.bash hook)"
- conda activate test-env
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then travis_retry conda install -c conda-forge python=${TRAVIS_PYTHON_VERSION%-dev}; else travis_retry conda install -c conda-forge python=3.11; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then travis_retry conda install -c conda-forge python=${TRAVIS_PYTHON_VERSION%-dev}; else travis_retry conda install -c conda-forge python=3.9; fi
- travis_retry conda install -c conda-forge numpy scipy python-igraph h5netcdf tqdm
- travis_retry conda update -c conda-forge --all

# testing dependencies
- travis_retry conda install -c conda-forge tox flake8 pylint pytest-xdist pytest-cov codecov
- travis_retry conda install -c conda-forge networkx matplotlib cartopy sphinx
- travis_retry conda update -c conda-forge --all

# debugging info
- conda info -a
Expand Down

0 comments on commit 36ccf71

Please sign in to comment.