Skip to content

Commit

Permalink
Merge pull request #164 from rougier/update-deps
Browse files Browse the repository at this point in the history
Update bundled dependencies
  • Loading branch information
madig authored May 4, 2023
2 parents 73d7380 + f04dea2 commit 4bef9a7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ jobs:
name: '(musllinux aarch64)'
qemu: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm

- name: Set up QEMU
if: matrix.qemu
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
with:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.4.0
uses: pypa/cibuildwheel@v2.12.3
env:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_ARCHS: "auto64"
Expand All @@ -71,7 +71,7 @@ jobs:
output-dir: dist

- name: Upload distributions
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: dist
name: dist
Expand All @@ -82,15 +82,15 @@ jobs:
needs: [build]
if: success() && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # unshallow fetch for setuptools-scm
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Download assets
uses: actions/download-artifact@v1.0.0
uses: actions/download-artifact@v3
with:
name: dist
- name: Build sdist
Expand Down
12 changes: 6 additions & 6 deletions setup-build-freetype.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
# Needed for the GitHub Actions macOS CI runner, which appears to come without CAs.
import certifi

FREETYPE_HOST = "https://download.savannah.gnu.org/releases/freetype/"
FREETYPE_TARBALL = "freetype-2.12.0.tar.xz"
FREETYPE_HOST = "https://mirrors.sarata.com/non-gnu/freetype/"
FREETYPE_TARBALL = "freetype-2.13.0.tar.xz"
FREETYPE_URL = FREETYPE_HOST + FREETYPE_TARBALL
FREETYPE_SHA256 = "ef5c336aacc1a079ff9262d6308d6c2a066dd4d2a905301c4adda9b354399033"
HARFBUZZ_HOST = "https://github.com/harfbuzz/harfbuzz/releases/download/4.2.1/"
HARFBUZZ_TARBALL = "harfbuzz-4.2.1.tar.xz"
FREETYPE_SHA256 = "5ee23abd047636c24b2d43c6625dcafc66661d1aca64dec9e0d05df29592624c"
HARFBUZZ_HOST = "https://github.com/harfbuzz/harfbuzz/releases/download/7.2.0/"
HARFBUZZ_TARBALL = "harfbuzz-7.2.0.tar.xz"
HARFBUZZ_URL = HARFBUZZ_HOST + HARFBUZZ_TARBALL
HARFBUZZ_SHA256 = "bd17916513829aeff961359a5ccebba6de2f4bf37a91faee3ac29c120e3d7ee1"
HARFBUZZ_SHA256 = "fc5560c807eae0efd5f95b5aa4c65800c7a8eed6642008a6b1e7e3ffff7873cc"

root_dir = "."
build_dir = path.join(root_dir, "build")
Expand Down

0 comments on commit 4bef9a7

Please sign in to comment.