1 parent ab11ddd commit 7c74487Copy full SHA for 7c74487
3 files changed
.gitignore
@@ -97,5 +97,8 @@ GarminConnectConfig.json
97
test/test_files
98
my-defines.mk
99
test/*.txt
100
+my-defines.mk
101
+pyproject.toml
102
+uv.lock
103
104
Jupyter/.ipynb_checkpoints/
defines.mk
@@ -24,16 +24,10 @@ TIME ?= $(shell which time)
24
25
endif
26
27
-
28
-# PYTHON3=$(shell which python3)
29
-PYTHON3=python3
30
-# PIP3=$(shell which pip3)
31
-PIP3=pip3
32
33
-PYTHON ?= $(PYTHON3)
+PYTHON ?= python3
34
# what python should the venv be based on?
35
-SYS_PYTHON_PATH ?= PYTHON3=$(shell which $(PYTHON3))
36
-PIP ?= $(PIP3)
+SYS_PYTHON_PATH ?= $(shell which python3)
+PIP ?= pip3
37
38
39
ifeq ($(PYTHON),)
utilities
0 commit comments