chore(deps): update lockfile #9171
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright © Michal Čihař <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: macOS | |
on: | |
push: | |
branches-ignore: | |
- deepsource-fix-** | |
- renovate/** | |
- weblate | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
macos: | |
# This verifies that installation instructions works, any changes here | |
# need to be reflected in docs/admin/install/venv-macos.rst | |
runs-on: macos-14 | |
env: | |
PYTHONUNBUFFERED: 1 | |
PYTHONWARNINGS: default,ignore:unclosed:ResourceWarning | |
steps: | |
- uses: actions/checkout@v4 | |
- run: brew update | |
- run: brew upgrade | |
- run: brew list --versions | |
- run: brew deps --tree --installed | |
- run: brew unlink [email protected] | |
# Some images have pkg-config and some pkgconf, so ignore errors here | |
continue-on-error: true | |
- name: Install brew dependencies | |
run: | | |
brew install pango cairo gobject-introspection glib libyaml pkgconf zstd xxhash libxmlsec1 uv | |
- name: Install Weblate | |
run: | | |
uv venv --python python3.12 .venv | |
source .venv/bin/activate | |
uv pip install -e .[all] |