File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments