diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-01 19:50:12 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-01 19:50:12 +0200 |
commit | 8f424c4e37ee738fe8c08b17953f9c40d6b5fb5c (patch) | |
tree | af89875aff8b494119411f2eaad36c8aecee95e6 /python | |
parent | bf3281288e7dc3f6aeec8b4f2e2437581c1971fd (diff) | |
download | refcat-8f424c4e37ee738fe8c08b17953f9c40d6b5fb5c.tar.gz refcat-8f424c4e37ee738fe8c08b17953f9c40d6b5fb5c.zip |
deployment to 3.8; adjust local packaging
local and remote python versions need to match (up to minor version) for
shiv to work
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/Makefile b/python/Makefile index 66248bf..7b78d1f 100644 --- a/python/Makefile +++ b/python/Makefile @@ -16,8 +16,8 @@ ZIPAPP := $(PKGNAME).pyz # IMPORTANT: Python version on dev and target *must match* (up to minor version) # e.g. for aitio (2021), you might want to use: -# make refcat.pyz PYTHON_INTERPRETER='"/usr/bin/env python3.7"' -PYTHON_INTERPRETER := "/usr/bin/env python3.7" +# make refcat.pyz PYTHON_INTERPRETER='"/usr/bin/env python3.8"' +PYTHON_INTERPRETER := "/usr/bin/env python3.8" .PHONY: test test: |