Skip to content

Commit

Permalink
Changed build workflows to support python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Rodriguez committed Oct 11, 2023
1 parent 42148c8 commit 388440c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.9
- name: Set up Python 3.11
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11"

- name: Set Up Project
run: |
Expand All @@ -48,11 +48,11 @@ jobs:
- name: Validate Branch name
run: ./scripts/get-current-branch.sh

- name: Set up Python 3.9
- name: Set up Python 3.11
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11"

- name: Set Up Project
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ jobs:
ref: main
fetch-depth: 0

- name: Set up Python 3.9
- name: Set up Python 3.11
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11"

- run: |
pip install poetry
Expand Down

0 comments on commit 388440c

Please sign in to comment.