Skip to content

Commit

Permalink
python env
Browse files Browse the repository at this point in the history
  • Loading branch information
gstarovo committed May 29, 2024
1 parent fb03f0b commit 3317684
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,15 @@ jobs:
run: git fetch origin master:refs/remotes/origin/master
- name: Set up Python ${{ matrix.python-version }}
# we use containers to use the native python version from them
if: ${{ !matrix.container && matrix.python-version != '2.7' }}
if: ${{ !matrix.container && matrix.python-version != '2.7' && matrix.python-version != '3.5'}}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python 3.5
if: ${{ matrix.python-version == '3.5' }}
env:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Ensure python 2.7
Expand Down

0 comments on commit 3317684

Please sign in to comment.