Skip to content

Commit

Permalink
Use python3.13 in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ciur committed Dec 7, 2024
1 parent 0fe5a65 commit 9bdf821
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.13"
- uses: pre-commit/[email protected]

unit-tests:
needs: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.13"
- name: Run Tests
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 9bdf821

Please sign in to comment.