From 2eb861c30300b86bdd09f3afbdf70359ecca49eb Mon Sep 17 00:00:00 2001 From: Yahav Itzhak Date: Wed, 1 Nov 2023 08:48:07 +0200 Subject: [PATCH] Fix TestPipInstallNativeSyntax in Ubuntu (#2291) --- .github/workflows/pythonTests.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pythonTests.yml b/.github/workflows/pythonTests.yml index 934523b8c..fd937028b 100644 --- a/.github/workflows/pythonTests.yml +++ b/.github/workflows/pythonTests.yml @@ -27,17 +27,11 @@ jobs: uses: actions/setup-go@v3 with: go-version: 1.20.x - - name: Setup Python3 in Ubuntu/MacOS - uses: actions/setup-python@v4 - with: - python-version: "3.x" - if: runner.os != 'Windows' - # Due to a bug in Python 3.12.0 in Windows we temporary use version 3.11.5 - - name: Setup Python3 in Windows + # Due to a bug in Python 3.12.0 we temporary use version 3.11.5 + - name: Setup Python3 uses: actions/setup-python@v4 with: python-version: "3.11.5" - if: runner.os == 'Windows' - name: Setup Pipenv if: ${{ matrix.suite == 'pipenv' }} run: python -m pip install pipenv