@@ -148,31 +148,31 @@ jobs:
148148[
149149{
150150toolchain :" 1.53" ,
151- manylinux :" 2010 " ,
151+ manylinux :" 2014 " ,
152152target :" x86_64-unknown-linux-gnu" ,
153153arch :" x86_64" ,
154154python-version :" 3.7"
155155},
156156{
157157toolchain :" nightly" ,
158- manylinux :" 2010 " ,
158+ manylinux :" 2014 " ,
159159target :" x86_64-unknown-linux-gnu" ,
160160arch :" x86_64" ,
161161python-version :" 3.7"
162162},
163163{
164164toolchain :" stable" ,
165- manylinux :" 2010 " ,
165+ manylinux :" 2014 " ,
166166target :" x86_64-unknown-linux-gnu" ,
167167arch :" x86_64" ,
168168python-version :" 3.7"
169169},
170170{
171171toolchain :" stable" ,
172- manylinux :" 2010 " ,
172+ manylinux :" 2014 " ,
173173target :" x86_64-unknown-linux-gnu" ,
174174arch :" x86_64" ,
175- python-version :" 3.10 "
175+ python-version :" 3.11 "
176176}
177177]
178178steps :
@@ -184,7 +184,7 @@ jobs:
184184
185185 -name :Build Wheels
186186run :|
187- echo 'curl --tlsv1.2 - sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${{ matrix.platform.toolchain }}
187+ echo 'curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${{ matrix.platform.toolchain }}
188188 source ~/.cargo/env
189189 export PATH=/opt/python/cp38-cp38/bin:$PATH
190190 pip install maturin
@@ -245,6 +245,7 @@ jobs:
245245 echo 'curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
246246 source ~/.cargo/env
247247 rustup target add ${{ matrix.platform.target }}
248+ pip install maturin
248249 maturin build -i python --release --out dist --target ${{ matrix.platform.target }} --manylinux ${{ matrix.platform.manylinux }}
249250 ' > build-wheel.sh
250251 chmod +x build-wheel.sh
@@ -296,6 +297,7 @@ jobs:
296297
297298 -name :Wheel filename sanity checks
298299run :|
300+ ls -lah
299301 num_abi3_whl=$(find | grep "\./adblock.*-abi3.*\.whl" | wc -l)
300302 num_whl=$(find | grep "\./adblock.*\.whl" | wc -l)
301303 test $num_abi3_whl -eq $num_whl