forked from WeblateOrg/weblate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 5.4.3
- Loading branch information
Showing
884 changed files
with
1,212,047 additions
and
813,498 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,25 +30,25 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/[email protected] | ||
- name: Install apt dependencies | ||
run: sudo ./ci/apt-install $CI_DATABASE | ||
run: sudo ./ci/apt-install | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
cache: pip | ||
cache-dependency-path: '**/requirements*.txt' | ||
cache-dependency-path: requirements*.txt | ||
- name: Used versions | ||
run: ./ci/print-versions | ||
- name: Install pip dependencies | ||
run: ./ci/pip-install | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
setup-python-dependencies: false | ||
|
||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
uses: github/codeql-action/autobuild@v3 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
uses: github/codeql-action/analyze@v3 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,14 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
submodules: true | ||
- uses: actions/cache@v3 | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cache/pip | ||
~/.cache/pre-commit | ||
key: ${{ runner.os }}-pre-commit-${{ hashFiles('**/requirements*.txt') }}-${{ hashFiles('.pre-commit-config.yaml') }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
- name: Install dependencies | ||
|
@@ -48,7 +48,7 @@ jobs: | |
commit_message: 'utils: Update SPDX license data' | ||
- name: Create Pull Request | ||
if: github.ref == 'refs/heads/main' | ||
uses: peter-evans/create-pull-request@v5 | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
branch: create-pull-request/licenses-update | ||
title: 'utils: Update SPDX license data' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,29 @@ jobs: | |
env: | ||
PYTHONUNBUFFERED: 1 | ||
PYTHONWARNINGS: default,ignore:unclosed:ResourceWarning | ||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | ||
HOMEBREW_NO_INSTALL_UPGRADE: 1 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: brew update | ||
- name: Install Python | ||
run: brew link --overwrite python | ||
- run: brew list --versions | ||
- run: brew deps --tree --installed | ||
- name: Fix Python | ||
# Workaround for https://github.com/actions/setup-python/issues/577 | ||
run: | | ||
brew uninstall --ignore-dependencies [email protected] | ||
brew unlink [email protected] | ||
rm -f /usr/local/bin/{2to3,idle3,pydoc3,python3,python3-config} | ||
brew link --overwrite [email protected] | ||
- name: Install brew dependencies | ||
run: brew install pango cairo gobject-introspection glib libyaml tvuotila/libxmlsec1/[email protected] openssl pkg-config zstd xxhash | ||
run: | | ||
# Workaround for https://github.com/xmlsec/python-xmlsec/issues/254 | ||
wget -O /tmp/libxmlsec1.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/7f35e6ede954326a10949891af2dba47bbe1fc17/Formula/libxmlsec1.rb | ||
brew install --formula /tmp/libxmlsec1.rb | ||
brew pin libxmlsec1 | ||
brew install python pango cairo gobject-introspection glib libyaml pkg-config zstd xxhash | ||
- name: Install Weblate | ||
run: pip3 install -e .[all,test] | ||
run: | | ||
python3 -m venv .venv | ||
.venv/bin/pip3 install -e .[all,test] |
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
Oops, something went wrong.