We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ec9bc commit 58fc826Copy full SHA for 58fc826
.travis.yml
@@ -1,9 +1,17 @@
1
language: python
2
-dist: focal
+
3
+before_install:
4
+ # Install conda
5
+ - export MINICONDA=${HOME}/miniconda
6
+ - export PATH=${MINICONDA}/bin:${PATH}
7
+ - wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
8
+ - bash miniconda.sh -b -f -p ${MINICONDA}
9
+ - conda config --set always_yes yes
10
+ - conda config --add channels defaults
11
+ - conda config --add channels conda-forge
12
13
install:
- - sudo apt-get update && sudo apt-get install -y libisal-dev
- - pip install tox
14
+ - conda install $TRAVIS_PYTHON_VERSION tox isa-l
15
16
python: 3.6 # Use the oldest supported version of python as default.
17
script:
0 commit comments