From 605c6bff7365c6381d678b9fbb56e86ade3b9854 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?xavier=20dupr=C3=A9?= Date: Sat, 9 Nov 2019 13:27:16 +0100 Subject: [PATCH] update CI --- .travis.yml | 4 +--- appveyor.yml | 2 +- requirements.txt | 2 ++ setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index c889bda..cd8cc07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,11 +3,9 @@ sudo: true language: python python: - "3.7" -before-install: +install: - apt-get install proj-bin proj-data - apt-get install libgeos-dev libproj-dev -install: - pip install -r requirements.txt - script: - python ./setup.py unittests diff --git a/appveyor.yml b/appveyor.yml index 809a804..039bbfd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,7 +20,7 @@ install: - "%PYTHON%\\Scripts\\pip install pymyinstall" - "%PYTHON%\\Scripts\\pymy_install3 --set=pyquickhelper" - "%PYTHON%\\Scripts\\pip install pyquickhelper jyquickhelper" - - "%PYTHON%\\Scripts\\pymy_install3 cartopy pyproj" + - "%PYTHON%\\Scripts\\pymy_install3 cartopy pyproj shapely" - "%PYTHON%\\Scripts\\pip install -r requirements.txt" build: off diff --git a/requirements.txt b/requirements.txt index 4e9be1f..8394a3c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,6 @@ numpy pandas pyproj pyquickhelper +scipy +shapely wheel diff --git a/setup.py b/setup.py index 52910df..8a7c72c 100644 --- a/setup.py +++ b/setup.py @@ -154,5 +154,5 @@ def write_version(): packages=packages, package_dir=package_dir, package_data=package_data, - requires=['cartopy', 'pyproj'], + requires=['cartopy', 'pyproj', 'shapely', 'scipy'], )