File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ SHELL=/bin/bash -euo pipefail
44WHEEL_DIR ?= wheel_dist
55PYTHON_VERSION? =3.11
66
7+ COMPOSE =docker compose
8+
79clean : # # cleans the build artifacts
810 rm -Rf build/ dist/ * .egg-info $(WHEEL_DIR )
911.PHONY : clean
@@ -37,10 +39,10 @@ doc-lint: ## Verify markdown rules
3739.PHONY : doc-lint
3840
3941build : build-docker clean # # build the python-conprof using a dockerized python runtime
40- PYTHON_VERSION=$(PYTHON_VERSION ) docker-compose run --rm python make update-version wheel wheel-check
42+ PYTHON_VERSION=$(PYTHON_VERSION ) $( COMPOSE ) run --rm python make update-version wheel wheel-check
4143
4244build-docker :
43- PYTHON_VERSION=$(PYTHON_VERSION ) docker-compose build python
45+ PYTHON_VERSION=$(PYTHON_VERSION ) $( COMPOSE ) build python
4446.PHONY : build-docker
4547
4648release : # # release the python conprof
You can’t perform that action at this time.
0 commit comments