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 Jan 2, 2021
1 parent 21ac057 commit 5fec897
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Expand Up @@ -48,6 +48,7 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 10
ls /usr/bin/llvm*
- run:
name: Install standard libraries
Expand All @@ -71,7 +72,8 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
export LLVM_CONFIG=/usr/local/opt/llvm/bin/llvm-config
# export LLVM_CONFIG=/usr/local/opt/llvm/bin/llvm-config
sudo ln -s /usr/bin/llvm-config-10 /usr/bin/llvm-config
pip3 install llvmlite numba
- run:
Expand Down
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -11,7 +11,9 @@ before_install:
- wget https://apt.llvm.org/llvm.sh
- chmod +x llvm.sh
- sudo ./llvm.sh 10
- export LLVM_CONFIG=/usr/local/opt/llvm/bin/llvm-config
- ls /usr/bin/llvm*
# - export LLVM_CONFIG=/usr/local/opt/llvm/bin/llvm-config
- sudo ln -s /usr/bin/llvm-config-10 /usr/bin/llvm-config

install:
- pip install -r requirements.txt
Expand Down
4 changes: 4 additions & 0 deletions appveyor.yml
Expand Up @@ -14,7 +14,11 @@ install:
- "%PYTHON%\\Scripts\\pip install pymyinstall numpy"
# for numba
- "%PYTHON%\\Scripts\\pip install importlib_metadata"
# for cartopy
- "%PYTHON%\\Scripts\\pip install pyshp"
# install precompiled versions not available on pypi
- "%PYTHON%\\Scripts\\pymy_install3 cartopy pyproj shapely llvmlite numba"
# other dependencies
- "%PYTHON%\\Scripts\\pip install -r requirements.txt --no-deps"

build: off
Expand Down
15 changes: 10 additions & 5 deletions requirements.txt
@@ -1,20 +1,25 @@
autopep8
cartopy
coverage
cython
jupyter_sphinx
jyquickhelper
llvmlite
matplotlib
numba
numpy
pandas
pycodestyle
pylint
pyproj
pyquickhelper
scipy
shapely
sphinx
sphinxcontrib.imagesvg
wheel

# numba
llvmlite
numba

# cartopy
cartopy
pyproj
pyshp
shapely

0 comments on commit 5fec897

Please sign in to comment.