Is there a reason the release script needs to run ...
# announce
a
Is there a reason the release script needs to run strictly with python3.6?
h
It doesn’t. It can use py36-py38. lines 42-43
a
Copy code
~/src/github.com/pantsbuild/pants % ./build-support/bin/release.sh

Python interpreter python3.6 not discoverable on your PATH.
I guess I can explicitly
USE_PY38=true ./build-support/bin/release.sh
but wanted to make sure that wouldn’t be problematic for some reason
h
Use the env var
USE_PY37
or
USE_PY38
, and it will work
(this is all going to be improved once I finish porting release.sh to Python. It’s mostly there)