File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,18 +45,18 @@ jobs:
4545 name : ' (musllinux aarch64)'
4646 qemu : true
4747 steps :
48- - uses : actions/checkout@v2
48+ - uses : actions/checkout@v3
4949 with :
5050 fetch-depth : 0 # unshallow fetch for setuptools-scm
5151
5252 - name : Set up QEMU
5353 if : matrix.qemu
54- uses : docker/setup-qemu-action@v1
54+ uses : docker/setup-qemu-action@v2
5555 with :
5656 platforms : all
5757
5858 - name : Build wheels
59- uses : pypa/cibuildwheel@v2.4.0
59+ uses : pypa/cibuildwheel@v2.12.3
6060 env :
6161 CIBW_BUILD : ${{ matrix.cibw_build }}
6262 CIBW_ARCHS : " auto64"
7171 output-dir : dist
7272
7373 - name : Upload distributions
74- uses : actions/upload-artifact@v2
74+ uses : actions/upload-artifact@v3
7575 with :
7676 path : dist
7777 name : dist
@@ -82,15 +82,15 @@ jobs:
8282 needs : [build]
8383 if : success() && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
8484 steps :
85- - uses : actions/checkout@v2
85+ - uses : actions/checkout@v3
8686 with :
8787 fetch-depth : 0 # unshallow fetch for setuptools-scm
8888 - name : Set up Python 3.9
89- uses : actions/setup-python@v2
89+ uses : actions/setup-python@v4
9090 with :
9191 python-version : ' 3.9'
9292 - name : Download assets
93- uses : actions/download-artifact@v1.0.0
93+ uses : actions/download-artifact@v3
9494 with :
9595 name : dist
9696 - name : Build sdist
Original file line number Diff line number Diff line change 2525# Needed for the GitHub Actions macOS CI runner, which appears to come without CAs.
2626import certifi
2727
28- FREETYPE_HOST = "https://download.savannah.gnu.org/releases /freetype/"
29- FREETYPE_TARBALL = "freetype-2.12 .0.tar.xz"
28+ FREETYPE_HOST = "https://mirrors.sarata.com/non-gnu /freetype/"
29+ FREETYPE_TARBALL = "freetype-2.13 .0.tar.xz"
3030FREETYPE_URL = FREETYPE_HOST + FREETYPE_TARBALL
31- FREETYPE_SHA256 = "ef5c336aacc1a079ff9262d6308d6c2a066dd4d2a905301c4adda9b354399033 "
32- HARFBUZZ_HOST = "https://github.com/harfbuzz/harfbuzz/releases/download/4 .2.1 /"
33- HARFBUZZ_TARBALL = "harfbuzz-4 .2.1 .tar.xz"
31+ FREETYPE_SHA256 = "5ee23abd047636c24b2d43c6625dcafc66661d1aca64dec9e0d05df29592624c "
32+ HARFBUZZ_HOST = "https://github.com/harfbuzz/harfbuzz/releases/download/7 .2.0 /"
33+ HARFBUZZ_TARBALL = "harfbuzz-7 .2.0 .tar.xz"
3434HARFBUZZ_URL = HARFBUZZ_HOST + HARFBUZZ_TARBALL
35- HARFBUZZ_SHA256 = "bd17916513829aeff961359a5ccebba6de2f4bf37a91faee3ac29c120e3d7ee1 "
35+ HARFBUZZ_SHA256 = "fc5560c807eae0efd5f95b5aa4c65800c7a8eed6642008a6b1e7e3ffff7873cc "
3636
3737root_dir = "."
3838build_dir = path .join (root_dir , "build" )
You can’t perform that action at this time.
0 commit comments