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

Commit

Permalink
Update for #1
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Nov 9, 2019
1 parent e3557e9 commit afff31e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Expand Up @@ -36,6 +36,28 @@ jobs:
command: |
sudo apt-get install -y graphviz
- run:
name: Install pyproj (1)
command: |
echo "deb http://deb.debian.org/debian sid main" | sudo tee /etc/apt/sources.list.d/proj.list
sudo apt-get -qq update
sudo apt-get -t sid install -y libproj-dev proj-bin=6.2.1-1 proj-data libgeos-dev
- run:
name: Install pyproj (2)
command: |
python3 -m venv venv
. venv/bin/activate
pip install git+https://github.com/pyproj4/pyproj.git
# needed otherwise error: ImportError: libproj.so.9: cannot open shared object file: No such file or directory
- run:
name: Install pyproj (3)
command: |
wget http://es.archive.ubuntu.com/ubuntu/pool/universe/p/proj/libproj9_4.9.2-2_amd64.deb
sudo dpkg -i libproj9_4.9.2-2_amd64.deb
- run:
name: install dependencies
command: |
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -7,6 +7,9 @@ addons:
- apt:
- packages:
- libgeos-dev
- libproj-dev
- proj-bin
- proj-data
install:
- pip install -r requirements.txt

Expand Down

0 comments on commit afff31e

Please sign in to comment.