Skip to content

Commit a1bdfd7

Browse files
committed
Add access to other python dev stuff
1 parent 1294e15 commit a1bdfd7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
os: [ "ubuntu-latest" ]
166166
# TODO: consider what versions to use here
167167
# (maybe the bugfix python versions..?)
168-
python-version: [ "3.11", "3.12" ]
168+
python-version: [ "3.11", "3.12", "3.13" ]
169169
runs-on: "${{ matrix.os }}"
170170
defaults:
171171
run:
@@ -186,7 +186,9 @@ jobs:
186186
- name: Setup compilation dependencies
187187
run: |
188188
echo "python${{ matrix.python-version }}-dev"
189-
sudo apt-get install -y libopenblas-dev "python${{ matrix.python-version }}-dev"
189+
sudo add-apt-repository ppa:deadsnakes/ppa -y
190+
sudo apt update
191+
sudo apt install -y libopenblas-dev "python${{ matrix.python-version }}-dev"
190192
- name: Create venv
191193
run: |
192194
uv venv --seed

0 commit comments

Comments
 (0)