Skip to content

Commit

Permalink
Updated python version in github ci flow
Browse files Browse the repository at this point in the history
  • Loading branch information
kirgrim committed Apr 17, 2024
1 parent 2d8c9c5 commit d2ebc60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
- name: Install Build Tools
run: |
python -m pip install build wheel
2 changes: 1 addition & 1 deletion .github/workflows/publish_version_change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ on:

jobs:
unit_tests:
strategy:
matrix:
python-version: [ '3.10' ]
max-parallel: 1
runs-on: ubuntu-latest
env:
PYKLATCHAT_TESTING_CREDENTIALS: ${{ secrets.PYKLATCHAT_TESTING_CREDENTIALS_V2 }}
Expand All @@ -27,9 +23,9 @@ jobs:
- name: echo Testing Creds
run: echo $PYKLATCHAT_TESTING_CREDENTIALS
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -63,7 +59,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down

0 comments on commit d2ebc60

Please sign in to comment.