Skip to content

Commit 0301a84

Browse files
committed
Update python version in CI (3.8 -> 3.13)
1 parent 1c2a54e commit 0301a84

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: '3.8'
19+
python-version: '3.13'
2020
architecture: 'x64'
2121

2222
- name: Cache pip on Linux

.github/workflows/devinstall.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Python
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: '3.8'
18+
python-version: '3.13'
1919
architecture: 'x64'
2020
- name: Cache pip on Linux
2121
uses: actions/cache@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install Python
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: '3.8'
16+
python-version: '3.13'
1717
architecture: 'x64'
1818

1919
- name: Install dependencies

.github/workflows/packaging.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.13'
2828
architecture: 'x64'
2929

3030
- uses: actions/cache@v3
@@ -83,16 +83,16 @@ jobs:
8383
fail-fast: false
8484
matrix:
8585
os: [ubuntu, windows]
86-
python: ['3.7', '3.10']
86+
python: ['3.8', '3.13']
8787
dist: ['ipywidgets*.tar.gz']
8888
include:
89-
- python: '3.10'
89+
- python: '3.13'
9090
dist: 'jupyterlab_widgets*.tar.gz'
9191
os: 'ubuntu'
92-
- python: '3.10'
92+
- python: '3.13'
9393
dist: 'widgetsnbextension*.tar.gz'
9494
os: 'ubuntu'
95-
- python: '3.10'
95+
- python: '3.13'
9696
dist: 'ipywidgets*.whl'
9797
os: 'ubuntu'
9898
steps:

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Python
1212
uses: actions/setup-python@v4
1313
with:
14-
python-version: 3.8
14+
python-version: '3.13'
1515
cache: 'pip'
1616
cache-dependency-path: |
1717
**/setup.cfg
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
max-parallel: 4
7979
matrix:
80-
python-version: ['3.8', '3.9', '3.10', '3.11']
80+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
8181

8282
steps:
8383
- uses: actions/checkout@v4
@@ -135,7 +135,7 @@ jobs:
135135
- name: Set up Python
136136
uses: actions/setup-python@v4
137137
with:
138-
python-version: '3.11'
138+
python-version: '3.13'
139139
cache: 'pip'
140140
cache-dependency-path: |
141141
**/setup.cfg

0 commit comments

Comments
 (0)