scripts: switch from python 3.6 to python 3.7

PEP 562 (__getattr__ in deltachat.const module) is implemented only since python 3.7
This commit is contained in:
link2xt
2021-11-14 00:00:00 +00:00
parent dd4f2ac671
commit 60d41022ea
3 changed files with 11 additions and 13 deletions

View File

@@ -19,11 +19,9 @@ export DCC_RS_TARGET=release
# Configure access to a base python and to several python interpreters
# needed by tox below.
export PATH=$PATH:/opt/python/cp36-cp36m/bin
export PATH=$PATH:/opt/python/cp37-cp37m/bin
export PYTHONDONTWRITEBYTECODE=1
pushd /bin
rm -f python3.6
ln -s /opt/python/cp36-cp36m/bin/python3.6
rm -f python3.7
ln -s /opt/python/cp37-cp37m/bin/python3.7
rm -f python3.8