Skip to content

Commit 4eefb63

Browse files
author
James Williams
authored
Use known working python version for GitHub deployment (#165)
## What is the goal of this PR? We've fixed the Python version learned from the successful GitHub deployment of typedb-common a definite working version of Python for this job. ## What are the changes implemented in this PR? We've changed the used Python version to 3.7.9 from 3.7.12. This fixes a later bug where we attempt to link a library to a not-installed version of Python.
1 parent b580973 commit 4eefb63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.factory/automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ release:
8989
image: vaticle-ubuntu-22.04
9090
command: |
9191
export PYENV_ROOT="/opt/pyenv"
92-
pyenv install -s 3.7.12
93-
pyenv global 3.7.12 system
92+
pyenv install 3.7.9
93+
pyenv global 3.7.9
9494
sudo unlink /usr/bin/python3
9595
sudo ln -s $(which python3) /usr/bin/python3
9696
sudo ln -s /usr/share/pyshared/lsb_release.py /opt/pyenv/versions/3.7.9/lib/python3.7/site-packages/lsb_release.py

0 commit comments

Comments
 (0)