diff --git a/MANIFEST.in b/MANIFEST.in index 068678d23..5ec1cdd9e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -181,7 +181,7 @@ include scripts/internal/bench_oneshot_2.py include scripts/internal/check_broken_links.py include scripts/internal/clinter.py include scripts/internal/convert_readme.py -include scripts/internal/download_wheels_github.py +include scripts/internal/download_wheels.py include scripts/internal/generate_manifest.py include scripts/internal/git_pre_commit.py include scripts/internal/install-sysdeps.sh diff --git a/Makefile b/Makefile index cca8b4c9b..2c7d050ce 100644 --- a/Makefile +++ b/Makefile @@ -219,7 +219,7 @@ sdist: ## Create tar.gz source distribution. $(PYTHON_ENV_VARS) $(PYTHON) setup.py sdist download-wheels: ## Download latest wheels hosted on github. - $(PYTHON_ENV_VARS) $(PYTHON) scripts/internal/download_wheels_github.py --tokenfile=~/.github.token + $(PYTHON_ENV_VARS) $(PYTHON) scripts/internal/download_wheels.py --tokenfile=~/.github.token ${MAKE} print-dist create-wheels: ## Create .whl files diff --git a/scripts/internal/download_wheels_github.py b/scripts/internal/download_wheels.py similarity index 100% rename from scripts/internal/download_wheels_github.py rename to scripts/internal/download_wheels.py