Skip to content

Commit 6fb33cc

Browse files
authored
Merge branch 'master' into dependabot/github_actions/actions/checkout-5.0.0
2 parents 09e4275 + f81ebae commit 6fb33cc

3 files changed

Lines changed: 17 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,17 @@ jobs:
4040
runs-on: ubuntu-latest
4141
timeout-minutes: 15
4242
steps:
43+
4344
- uses: actions/checkout@v5.0.0
4445
- name: Set up Python 3.11
4546
uses: actions/setup-python@v5.6.0
47+
48+
- uses: actions/checkout@v5.0.0
49+
50+
- name: Set up Python 3.13
51+
uses: uses: actions/setup-python@v6.0.0
4652
with:
47-
python-version: 3.12
53+
python-version: 3.13
4854
- name: Install python dependencies
4955
run: |
5056
pip install --upgrade pip
@@ -56,11 +62,13 @@ jobs:
5662
runs-on: ubuntu-latest
5763
timeout-minutes: 15
5864
steps:
65+
5966
- uses: actions/checkout@v5.0.0
60-
- name: Set up Python 3.12
61-
uses: actions/setup-python@v5.6.0
67+
68+
- name: Set up Python 3.13
69+
uses: actions/setup-python@v6.0.0
6270
with:
63-
python-version: 3.12
71+
python-version: 3.13
6472
- name: Install python dependencies
6573
run: |
6674
pip install --upgrade pip

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v5.0.0
2323

2424
- name: get python 3.11.6
25-
uses: actions/setup-python@v5.6.0
25+
uses: actions/setup-python@v6.0.0
2626
with:
2727
python-version: 3.11.6
2828

@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797

9898
- name: create release
99-
uses: softprops/action-gh-release@v2.3.2
99+
uses: softprops/action-gh-release@v2.3.3
100100
with:
101101
name: v${{ github.event.inputs.version }}
102102
generate_release_notes: true
@@ -114,7 +114,7 @@ jobs:
114114
ref: master
115115

116116
- name: get python 3.11.6
117-
uses: actions/setup-python@v5.6.0
117+
uses: actions/setup-python@v6.0.0
118118
with:
119119
python-version: 3.11.6
120120

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
version: 2
22

33
build:
4-
os: "ubuntu-22.04"
4+
os: "ubuntu-24.04"
55
tools:
6-
python: "3.11"
6+
python: "3.13"
77

88
python:
99
install:

0 commit comments

Comments
 (0)