From 46f595da0caebed7f74315d4ff61b3ec3a98f48a Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Thu, 12 Dec 2024 14:02:46 -0600 Subject: [PATCH] Remove distribution rules --- Makefile | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/Makefile b/Makefile index 105112ee87..a3a3e24288 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ALL_EXECUTABLE_SPEC_NAMES = \ capella \ deneb \ electra \ - fulu \ + fulu \ whisk \ eip6800 \ eip7732 @@ -68,23 +68,6 @@ $(VENV): requirements_preinstallation.txt @python3 -m venv $(VENV) @$(PIP_VENV) install -r requirements_preinstallation.txt -############################################################################### -# Distribution -############################################################################### - -# The pyspec is rebuilt to enforce the /specs being part of eth2specs source -# distribution. It could be forgotten otherwise. -dist_build: $(VENV) pyspec - @$(PYTHON_VENV) setup.py sdist bdist_wheel - -# Check the distribution for issues. -dist_check: $(VENV) - @$(PYTHON_VENV) -m twine check dist/* - -# Upload the distribution to PyPI. -dist_upload: $(VENV) - @$(PYTHON_VENV) -m twine upload dist/* - ############################################################################### # Specification ###############################################################################