Skip to content

Commit

Permalink
try python 3.12 in build and deploy.yml instead of 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi6245 committed May 6, 2024
1 parent 07bd7ef commit 93f7a01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12
- name: Install dependencies
run: python -m pip install .[test] --upgrade pip
- name: Test with pytest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
- name: Install dependencies
run: python -m pip install build . --upgrade pip
# - name: Build package distribution
Expand All @@ -36,10 +36,10 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"
- name: Install dependencies
run: python -m pip install .[docs] --upgrade pip
- name: Generate API docs & Build sphinx documentation
Expand Down

0 comments on commit 93f7a01

Please sign in to comment.