Skip to content

Commit

Permalink
API-1458 [Python SDK] Upgrade to latest Python version (#38)
Browse files Browse the repository at this point in the history
* API-1458 update run-tests.yml with python versions 3.10, 3.11, add workflow_dispatch for manual workflow trigger

* API-1458 use quotes to target correct python version

* API-1458 update publish.yml workflow python versions

* API-1458 add back python version 3.8
  • Loading branch information
ahongbynder authored Feb 17, 2023
1 parent bc69382 commit 9842c17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9 ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: Tests

on: [ push, pull_request ]
on: [ push, pull_request, workflow_dispatch ]

jobs:
build:
Expand All @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9 ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 9842c17

Please sign in to comment.