Skip to content

Commit 0a125d3

Browse files
committed
undo some changes
1 parent 623cdec commit 0a125d3

File tree

8 files changed

+20
-21
lines changed

8 files changed

+20
-21
lines changed

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,11 @@ jobs:
195195
echo "steps.script.outputs.old_tag=v${current_tag}"
196196
echo "old_tag=v${current_tag}" >> $GITHUB_OUTPUT
197197
198-
- name: Set up Python 3.12
198+
- name: Set up Python
199199
if: success()
200200
uses: actions/setup-python@v6
201201
with:
202-
python-version: '3.12'
202+
python-version: '3.13'
203203

204204
- name: Install Python dependencies
205205
run: |

.github/workflows/ci-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [windows-latest]
23-
python-version: ['3.9', '3.10', '3.11', '3.12']
23+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2424

2525
steps:
2626
- uses: actions/checkout@v5

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install dependencies
5050
run: |
5151
python -m pip install uv
52-
uv pip install --system --upgrade ".[all,test]"
52+
uv pip install --system --upgrade ".[all]" --group test
5353
5454
- name: List installed Python packages
5555
run: python -m pip list
@@ -111,7 +111,6 @@ jobs:
111111
112112
- name: Report doctest coverage with Codecov
113113
if: github.event_name != 'schedule' && matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest' && github.repository == 'scikit-hep/pyhf'
114-
if: github.event_name != 'schedule' && matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
115114
uses: codecov/codecov-action@v5
116115
with:
117116
fail_ci_if_error: true
@@ -120,6 +119,6 @@ jobs:
120119
token: ${{ secrets.CODECOV_TOKEN }}
121120

122121
- name: Run benchmarks
123-
if: github.event_name == 'schedule' && matrix.python-version == '3.12'
122+
if: github.event_name == 'schedule' && matrix.python-version == '3.13'
124123
run: |
125124
pytest --benchmark-sort=mean tests/benchmarks/test_benchmark.py

.github/workflows/dependencies-head.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
23-
os: [ubuntu-latest, macos-latest, macos-13]
24-
python-version: ['3.12']
23+
os: [ubuntu-latest, macos-latest, macos-15-intel]
24+
python-version: ['3.13']
2525

2626
steps:
2727
- uses: actions/checkout@v5
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
matrix:
5454
os: [ubuntu-latest]
55-
python-version: ['3.12']
55+
python-version: ['3.13']
5656

5757
steps:
5858
- uses: actions/checkout@v5
@@ -82,7 +82,7 @@ jobs:
8282
strategy:
8383
matrix:
8484
os: [ubuntu-latest]
85-
python-version: ['3.12']
85+
python-version: ['3.13']
8686

8787
steps:
8888
- uses: actions/checkout@v5
@@ -109,7 +109,7 @@ jobs:
109109
strategy:
110110
matrix:
111111
os: [ubuntu-latest]
112-
python-version: ['3.12']
112+
python-version: ['3.13']
113113

114114
steps:
115115
- uses: actions/checkout@v5
@@ -135,7 +135,7 @@ jobs:
135135
strategy:
136136
matrix:
137137
os: [ubuntu-latest]
138-
python-version: ['3.12']
138+
python-version: ['3.13']
139139

140140
steps:
141141
- uses: actions/checkout@v5
@@ -174,7 +174,7 @@ jobs:
174174
strategy:
175175
matrix:
176176
os: [ubuntu-latest]
177-
python-version: ['3.12']
177+
python-version: ['3.13']
178178

179179
steps:
180180
- uses: actions/checkout@v5

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v6
2929
with:
30-
python-version: '3.12'
30+
python-version: '3.13'
3131

3232
- name: Install Python dependencies
3333
run: |

.github/workflows/notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python-version: ['3.12']
22+
python-version: ['3.13']
2323

2424
steps:
2525
- uses: actions/checkout@v5

.github/workflows/publish-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
with:
4242
fetch-depth: 0
4343

44-
- name: Set up Python 3.13
44+
- name: Set up Python
4545
uses: actions/setup-python@v6
4646
with:
47-
python-version: '3.12'
47+
python-version: '3.13'
4848

4949
- name: Install python-build and twine
5050
run: |

.github/workflows/release_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest]
25-
python-version: ['3.9', '3.10', '3.11', '3.12']
25+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2626
include:
2727
- os: macos-latest
28-
python-version: '3.12'
28+
python-version: '3.13'
2929
# Intel runner
30-
- os: macos-13
31-
python-version: '3.12'
30+
- os: macos-15-intel
31+
python-version: '3.13'
3232
fail-fast: false
3333

3434
steps:

0 commit comments

Comments
 (0)