diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 7163ecf1e..2f7975e15 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -67,7 +67,7 @@ jobs: id: test run: | # Check that the downloader tool at least knows where to get the data from (but don't actually download it) - python tools/feature_download.py gshhs physical --dry-run + python tools/cartopy_feature_download.py gshhs physical --dry-run CARTOPY_GIT_DIR=$PWD pytest -n 4 --doctest-modules --pyargs cartopy ${EXTRA_TEST_ARGS} diff --git a/setup.py b/setup.py index 097cd4b9b..b6a37d700 100644 --- a/setup.py +++ b/setup.py @@ -391,6 +391,7 @@ def decythonize(extensions, **_ignore): remove='lib/cartopy/')) + ['io/srtm.npz']}, + scripts=['tools/cartopy_feature_download.py'], # requires proj headers ext_modules=extensions, diff --git a/tools/feature_download.py b/tools/cartopy_feature_download.py similarity index 100% rename from tools/feature_download.py rename to tools/cartopy_feature_download.py