diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml index c7e0972..c762217 100644 --- a/.github/workflows/python-package-conda.yml +++ b/.github/workflows/python-package-conda.yml @@ -57,7 +57,7 @@ jobs: strategy: fail-fast: true matrix: - os: ["ubuntu-latest", "macos-13", "macos-14", "windows-latest"] + os: ["ubuntu-latest", "macos-13", "macos-14"] python_version: ${{ fromJSON(needs.conf.outputs.supported_pythons) }} use_conda: [true, false] steps: @@ -69,12 +69,6 @@ jobs: miniforge-version: ${{ env.miniforge_version }} miniforge-variant: ${{ env.miniforge_variant }} environment-file: ci/conda_host_env.yml - - name: Setup for Windows - if: ${{ matrix.os == 'windows-latest' }} - run: | - # Set bash executable explicitly since Make may pick wrong shell - # borrowed from https://github.com/drivendataorg/cookiecutter-data-science/pull/319/files - echo "BASH_EXECUTABLE=$(which bash)" >> "$GITHUB_ENV" - name: Install dependencies (conda) if: ${{ matrix.use_conda }} shell: bash -l {0}