Skip to content

Commit

Permalink
set ci python version explicitly to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ArieLevs committed Jan 14, 2024
1 parent 6301a1a commit 478622f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
python-version: ["3.9", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -77,10 +77,10 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: '3.9'
- name: Check distribution valid and test publish
run: |
pip install wheel twine
Expand All @@ -103,10 +103,10 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: '3.9'
- name: Bump version using self app
id: app_version_bump
run: |
Expand Down Expand Up @@ -163,10 +163,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: '3.9'
# currently there is no way of passing data between jobs except using artifact,
# this might be an option, but just do another bump for now,
# and anyway setup.py file will need to have some change since we checked out again
Expand Down

0 comments on commit 478622f

Please sign in to comment.