Skip to content

Commit 4bef9a7

Browse files
authored
Merge pull request #164 from rougier/update-deps
Update bundled dependencies
2 parents 73d7380 + f04dea2 commit 4bef9a7

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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"
@@ -71,7 +71,7 @@ jobs:
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

setup-build-freetype.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
# Needed for the GitHub Actions macOS CI runner, which appears to come without CAs.
2626
import 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"
3030
FREETYPE_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"
3434
HARFBUZZ_URL = HARFBUZZ_HOST + HARFBUZZ_TARBALL
35-
HARFBUZZ_SHA256 = "bd17916513829aeff961359a5ccebba6de2f4bf37a91faee3ac29c120e3d7ee1"
35+
HARFBUZZ_SHA256 = "fc5560c807eae0efd5f95b5aa4c65800c7a8eed6642008a6b1e7e3ffff7873cc"
3636

3737
root_dir = "."
3838
build_dir = path.join(root_dir, "build")

0 commit comments

Comments
 (0)