We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d55543e commit 2850eaeCopy full SHA for 2850eae
Makefile
@@ -124,16 +124,17 @@ test-dist: test-sdist test-bdist-wheel
124
125
test-sdist: clean venv
126
@echo $(H1)Testing sdist build an installation$(H1END)
127
- $(VENV_PYTHON) setup.py sdist
+ $(VENV_PIP) install build
128
+ $(VENV_PYTHON) -m build --sdist
129
$(VENV_PIP) install --force-reinstall --upgrade dist/*.gz
130
$(VENV_BIN)/http --version
131
@echo
132
133
134
test-bdist-wheel: clean venv
135
@echo $(H1)Testing wheel build an installation$(H1END)
- $(VENV_PIP) install wheel
136
- $(VENV_PYTHON) setup.py bdist_wheel
137
+ $(VENV_PYTHON) -m build --wheel
138
$(VENV_PIP) install --force-reinstall --upgrade dist/*.whl
139
140
0 commit comments