diff --git a/.gitea/workflows/setup_docker.yml b/.gitea/workflows/setup_docker.yml index f43f85f87..dfe7c5d81 100644 --- a/.gitea/workflows/setup_docker.yml +++ b/.gitea/workflows/setup_docker.yml @@ -16,22 +16,6 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.ref_name }} - - name: Set up pyenv - run: | - curl https://pyenv.run | bash - export PATH="$HOME/.pyenv/bin:$PATH" - eval "$(pyenv init --path)" - eval "$(pyenv init -)" - eval "$(pyenv virtualenv-init -)" - - - name: Install Python with pyenv - run: | - export PATH="$HOME/.pyenv/bin:$PATH" - eval "$(pyenv init --path)" - eval "$(pyenv init -)" - eval "$(pyenv virtualenv-init -)" - pyenv install ${{ matrix.python }} -s - - name: Clean up Virtual Environment run: ./setup/clean_up_virtualenvs.sh 0