Skip to content

Commit 2bd2abf

Browse files
committed
fix(ci): update python version from 3.7 to 3.13
1 parent da5601e commit 2bd2abf

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/ci.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,23 @@ jobs:
4545
toolchain: 1.83.0
4646
override: true
4747
components: rustfmt, clippy
48-
- name: Set up Python 3.7
48+
- name: Set up Python
4949
uses: actions/setup-python@v4
5050
with:
51-
python-version: 3.7
51+
python-version: '3.13'
52+
- name: Install pip and test dependencies
53+
run: |
54+
sudo apt-get update
55+
sudo apt-get install -y python3-pip
56+
if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
57+
- name: Verify installation
58+
run: |
59+
python --version
60+
pip --version
5261
- name: Install libunwind and debug symbols
5362
run: |
5463
sudo apt-get update
5564
sudo apt-get install libunwind-dev libc6-dbg
56-
- name: Install test dependencies
57-
run: |
58-
sudo python -m pip install --upgrade pip
59-
if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
6065
- name: Build debugger and test programs
6166
run: make build-all
6267
- name: Run integration tests

0 commit comments

Comments
 (0)