Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed May 10, 2020
1 parent b1e5ae3 commit 12cad68
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
14 changes: 11 additions & 3 deletions .circleci/config.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
name: Install pyproj (1)
command: |
# requires libstdc++6 >= 9
sudo apt-get install -y libgeos-dev libproj-dev proj-data graphviz libgfortran3 libblas-dev liblapack-dev
sudo apt-get install -y libgeos-dev libproj-dev proj-data graphviz
export PYPROJMAJVER=15
export PYPROJVERSION=6.3.1-1
# export PYPROJMAJVER=19
Expand All @@ -58,11 +58,19 @@ jobs:
# sudo pip install git+https://github.com/pyproj4/pyproj.git

- run:
name: Install cartopy
name: Install standard libraries
command: |
python3 -m venv venv
. venv/bin/activate
pip3 install scipy matplotlib cython shapely pyproj
pip3 install scipy matplotlib numpy cython pandas
- run:
name: Install pyproj, shapely, cartopy
command: |
python3 -m venv venv
. venv/bin/activate
pip3 install pyproj
pip3 install shapely
pip3 install cartopy
- run:
Expand Down
4 changes: 0 additions & 4 deletions .travis.yml
Expand Up @@ -7,12 +7,8 @@ python:
before_install:
- sudo apt-get install libgeos-dev libproj-dev proj-data graphviz libgfortran3 libblas-dev liblapack-dev
install:
- pip install scipy matplotlib cython shapely pyproj
#- pip install git+https://github.com/SciTools/cartopy.git
- pip install cartopy
- pip install -r requirements.txt
- pip uninstall -y shapely
- pip install shapely
- pip freeze
- apt list --installed
script:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
@@ -1,5 +1,6 @@
cartopy
coverage
cython
jyquickhelper
matplotlib
numpy
Expand Down

0 comments on commit 12cad68

Please sign in to comment.