From 643083756377aea15d63b7f99cfe421583153a70 Mon Sep 17 00:00:00 2001 From: Wilhelm Klopp Date: Sun, 3 Nov 2024 09:08:59 +0000 Subject: [PATCH] Build pure python wheel (#260) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 62c52dc7..7ba0210e 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,8 @@ safetest: export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test publish: clean install-test-requirements - uv run python3 -m build --sdist . - uv run twine upload --repository mocket dist/*.tar.gz + uv run python3 -m build --sdist --wheel . + uv run twine upload --repository mocket dist/ clean: rm -rf .coverage *.egg-info dist/ requirements.txt uv.lock || true