Skip to content

Commit c0e9005

Browse files
authored
Merge branch 'main' into 3.12-translate-tutorial-index.po
2 parents f4922eb + a39daa7 commit c0e9005

File tree

193 files changed

+11475
-3691
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+11475
-3691
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Global Owners
2-
* @thepetk @lysnikolaou @gzisopoulos
2+
* @pygreece/translation

.github/workflows/main.yaml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/precommit.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Run pre-commit
2+
3+
on:
4+
push:
5+
branches:
6+
- 3.*
7+
- main
8+
pull_request:
9+
10+
jobs:
11+
test:
12+
name: Run pre-commit.ci
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
16+
with:
17+
submodules: "true"
18+
fetch-depth: 2
19+
- name: Setup python
20+
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
21+
with:
22+
python-version: "3.x"
23+
- name: Install system deps
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y hunspell hunspell-el gettext language-pack-el locales-all
27+
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
28+
- uses: pre-commit-ci/lite-action@9d882e7a565f7008d4faf128f27d1cb6503d4ebf # v1.0.2
29+
if: always()

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,9 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161+
162+
locales/
163+
.potodo/
164+
165+
# VS Code
166+
.vscode/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "cpython"]
2+
path = cpython
3+
url = https://github.com/python/cpython

.pre-commit-config.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: 2c9f875913ee60ca25ce70243dc24d5b6415598c # v4.6.0
4+
hooks:
5+
- id: file-contents-sorter
6+
files: "dictionaries/main.txt"
7+
args: ["--unique"]
8+
- id: trailing-whitespace
9+
- id: check-yaml
10+
- id: end-of-file-fixer
11+
12+
- repo: https://git.afpy.org/AFPy/powrap
13+
rev: df2a0a54804a6146cc9fbffb77464d4b5fe24f41 # v1.0.1
14+
hooks:
15+
- id: powrap
16+
17+
- repo: https://git.afpy.org/AFPy/pospell
18+
rev: 8b753bde26fe612ba397a4b4aafa7a0560402805 # v1.3
19+
hooks:
20+
- id: pospell
21+
args:
22+
- "--language=el_GR"
23+
- "--personal-dict=dictionaries/main.txt"
24+
25+
- repo: https://github.com/sphinx-contrib/sphinx-lint
26+
rev: ce6d7aeab24d60b6119dbad180540bf3c9ff31da # v0.9.1
27+
hooks:
28+
- id: sphinx-lint

.readthedocs.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# .readthedocs.yml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
build:
9+
os: ubuntu-22.04
10+
tools:
11+
python: "3"
12+
13+
commands:
14+
- python -m pip install -r requirements.txt
15+
- make
16+
- mkdir -p _readthedocs/html/
17+
- cp -r cpython/Doc/build/html/* _readthedocs/html/
18+
19+
python:
20+
install:
21+
- requirements: requirements.txt
22+
23+
submodules:
24+
include: all

0 commit comments

Comments
 (0)