We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf39dd commit 6878b40Copy full SHA for 6878b40
1 file changed
.github/workflows/ttt.yml
@@ -37,12 +37,10 @@ jobs:
37
--volume "${PWD}/dist:/artifacts"
38
install: |
39
apt-get update
40
- apt-get install -y --no-install-recommends software-properties-common curl git gcc patch
41
- curl https://pyenv.run | bash
42
- export PATH="$HOME/.pyenv/bin:$PATH"
43
- eval "$(pyenv init --path)"
44
- pyenv install ${{ matrix.python-version }}
45
- pyenv global ${{ matrix.python-version }}
+ apt-get install -y --no-install-recommends software-properties-common curl
+ sudo add-apt-repository ppa:deadsnakes/ppa
+ sudo apt update
+ apt-get install -y python${{ matrix.python-version }}-venv
46
run: |
47
ls -lrth /artifacts
48
PYTHON=python${{ matrix.python-version }}
0 commit comments