From f4e06890fc43e605f22cda2c950c3a39e2f1d90d Mon Sep 17 00:00:00 2001 From: Florian Reimold <11774314+FlorianReimold@users.noreply.github.com> Date: Thu, 28 Sep 2023 09:56:15 +0200 Subject: [PATCH] GH Actions: Remove Python 3.6 wheel build on Windows (#1208) The default GH Action runners dropped Python 3.6, so we are dropping it as well. --- .github/workflows/build-windows.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 07f3fd3a8f..ecc9fcaad1 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -238,18 +238,6 @@ jobs: shell: cmd working-directory: ${{ runner.workspace }}/_build/complete - - name: Build Python 3.6 Wheel - run: | - mkdir ".venv_36" - py -3.6 -m venv ".venv_36" - CALL ".venv_36\Scripts\activate.bat" - pip install wheel - cmake %GITHUB_WORKSPACE% -G "Visual Studio 16 2019" -A x64 -T v140 -DPython_FIND_VIRTUALENV=FIRST - cmake %GITHUB_WORKSPACE% -G "Visual Studio 16 2019" -A x64 -T v140 -DPython_FIND_VIRTUALENV=ONLY - cmake --build . --target create_python_wheel --config Release - shell: cmd - working-directory: ${{ runner.workspace }}/_build/complete - # - name: Build Documentation C # run: cmake --build . --target documentation_c # working-directory: ${{ runner.workspace }}/_build