@@ -114,12 +114,12 @@ jobs:
114114 steps :
115115 - uses : actions/checkout@v4
116116 - uses : dtolnay/rust-toolchain@stable
117- - name : Set up Python 3.12
117+ - name : Set up Python 3.14
118118 uses : actions/setup-python@v5
119119 with :
120- python-version : 3.12
120+ python-version : 3.14
121121 - name : Install build requirements
122- run : python -m pip install -r .github/workflows/requirements.txt
122+ run : python -m pip install -v - r .github/workflows/requirements.txt
123123 - name : Build source distribution
124124 run : python -m build -s .
125125 - name : Store built source distribution
@@ -135,17 +135,17 @@ jobs:
135135 - sdist
136136 steps :
137137 - uses : dtolnay/rust-toolchain@stable
138- - name : Setup Python 3.12
138+ - name : Setup Python 3.14
139139 uses : actions/setup-python@v5
140140 with :
141- python-version : 3.12
141+ python-version : 3.14
142142 - name : Download built wheels
143143 uses : actions/download-artifact@v4
144144 with :
145145 name : sdist
146146 path : dist/
147147 - name : Update pip to latest version
148- run : python -m pip install -U pip
148+ run : python -m pip install -U pip maturin
149149 - name : Install built wheel
150150 run : python -m pip install --no-binary sphinxcontrib-svgbob --find-links=dist sphinxcontrib-svgbob
151151 - name : Run built-in tests
0 commit comments