Commit 3ef9d266 authored by Godefroid Chapelle's avatar Godefroid Chapelle

Problem: Chocolatey does not support 2.7 anymore

Solution: stop running 2.7
parent 0df9bb06
...@@ -11,13 +11,13 @@ jobs: ...@@ -11,13 +11,13 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
exclude:
# excludes 2.7 on windows as chocolatey does not support it anymore
- os: windows-latest
python-version: 2.7
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: crazy-max/ghaction-chocolatey@v1
if: matrix.python-version == '2.7' && matrix.os == 'windows-latest'
with:
args: install vcpython27
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment