From 161ce411a2808c8b9d6fa202ca3a637c976f3cd6 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Fri, 20 Dec 2024 10:44:29 +0100 Subject: [PATCH] rename download_wheels_github.py -> download_wheels.py --- MANIFEST.in | 2 +- Makefile | 2 +- .../internal/{download_wheels_github.py => download_wheels.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/internal/{download_wheels_github.py => download_wheels.py} (100%) 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