Skip to content

Commit

Permalink
Merge pull request #11 from pylhc/13
Browse files Browse the repository at this point in the history
Updating with Python 3.13
  • Loading branch information
fsoubelet authored Jan 7, 2025
2 parents a7ff706 + 9bf8423 commit 418a0ac
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ Secrets:

This workflow should be set to trigger anytime a `release` is made of the GitHub repository.


## Assign Labels

Assign labels from json definition file in `labels/` to selected pylhc repos.
Assign labels from json definition file in `labels/` to selected pylhc repos.
This is not a re-usable workflow, but runs on every push to `master` on THIS repo.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
env:
python-version: 3.12
python-version: 3.13

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-latest, windows-latest]
# We escape with quotes so it doesn't get interpreted as float (e.g. 3.10 -> 3.1 by GA's parser)
python-version: ["3.10", "3.11", "3.12", "3.x"] # crons should always run latest python hence 3.x
python-version: ["3.10", "3.11", "3.12", "3.13", "3.x"] # crons should always run latest python hence 3.x

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
documentation:
runs-on: ubuntu-latest
env:
python-version: 3.12
python-version: 3.13

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
deploy: # only a single supported Python on latest ubuntu
runs-on: ubuntu-latest
env:
python-version: 3.12
python-version: 3.13

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ on:
required: false
type: string
default: pyproject.toml
cancel-in-progress:
required: false
type: boolean
default: false

# Cancel (by default) in-progress workflows when pushing a new commit on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ inputs.cancel-in-progress }}

defaults:
run:
Expand All @@ -54,7 +63,7 @@ jobs:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-latest, windows-latest]
# We escape with quotes so it doesn't get interpreted as float (e.g. 3.10 -> 3.1 by GA's parser)
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

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

0 comments on commit 418a0ac

Please sign in to comment.