Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/precommit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
submodules: "true"
submodules: true
fetch-depth: 2
- name: Setup python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
Expand All @@ -25,5 +25,5 @@ jobs:
sudo apt-get update
sudo apt-get install -y hunspell hunspell-el gettext language-pack-el locales-all
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
- uses: pre-commit-ci/lite-action@9d882e7a565f7008d4faf128f27d1cb6503d4ebf # v1.0.2
- uses: pre-commit-ci/lite-action@5d6cc0eb514c891a40562a58a8e71576c5c7fb43 # v1.1.0
if: always()
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 2c9f875913ee60ca25ce70243dc24d5b6415598c # v4.6.0
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # v5.0.0
hooks:
- id: file-contents-sorter
files: "dictionaries/main.txt"
Expand All @@ -10,7 +10,7 @@ repos:
- id: end-of-file-fixer

- repo: https://git.afpy.org/AFPy/powrap
rev: df2a0a54804a6146cc9fbffb77464d4b5fe24f41 # v1.0.1
rev: 416de333cc58dce4453d1257769d7c9abdde95f7 # v1.0.2
hooks:
- id: powrap

Expand All @@ -23,6 +23,6 @@ repos:
- "--personal-dict=dictionaries/main.txt"

- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: ce6d7aeab24d60b6119dbad180540bf3c9ff31da # v0.9.1
rev: ff671d6a030a3141634793e6d1e8909ab6091830 # v1.0.0
hooks:
- id: sphinx-lint
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ CPYTHON_CURRENT_COMMIT := 9cbde7c6ce6f7b93301a37f03dfa0c0d45e00a39
CPYTHON_PATH := ./cpython

LANGUAGE := el
TRANSLATION_BRANCH := main
BRANCH := 3.12

EXCLUDED := whatsnew/ c-api/
Expand Down Expand Up @@ -119,7 +118,7 @@ wrap: ensure_prerequisites
@echo "Verify wrapping"
powrap --check --quiet *.po **/*.po

SRCS = $(shell git diff --name-only $(TRANSLATION_BRANCH) | grep '.po$$')
SRCS = $(shell git diff --name-only $(BRANCH) | grep '.po$$')
# foo/bar.po => $(POSPELL_TMP_DIR)/foo/bar.po.out
DESTS = $(addprefix $(POSPELL_TMP_DIR)/,$(addsuffix .out,$(SRCS)))

Expand Down
Loading