Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork45
Remove powrap checks#120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
50 commits Select commitHold shift + click to select a range
038f6ff Remove line-length from checks, new pre-commit checks instead
egeakmana1cbac2 Cross platform gettext installation, some wiki
egeakmanf0136d7 revert pre-commit ci's commit
egeakmanf44091f try pre-commit on multiple platforms
egeakmane64d07a try pre-commit on multiple platforms
egeakman1eafaaf try pre-commit on multiple platforms
egeakman80c4cc7 try pre-commit on multiple platforms
egeakman49e0c50 try pre-commit on multiple platforms
egeakmanb20ee69 uyku önemli
egeakmaned3390b try pre-commit on multiple platforms
egeakman4133dfc try pre-commit on multiple platforms
egeakman744a4a2 try pre-commit on multiple platforms
egeakmancd9b83f try pre-commit on multiple platforms
egeakmancd3c398 let's try this
egeakmand63633c try pre-commit on multiple platforms
egeakman7c51999 Merge branch '3.11' into line-length
egeakman1aaec6b update
egeakman889c277 Merge branch 'line-length' of https://github.com/python/python-docs-t…
egeakman2e5ed72 macos
egeakmane92562e trigger
egeakman800879d force
egeakman77230f3 Merge branch '3.11' into line-length
egeakman0c2409d switch to ubuntu
egeakman45ffeff Merge branch 'line-length' of https://github.com/python/python-docs-t…
egeakmanb4bbd5b this seems better
egeakman6b4f752 update
egeakman08b99e0 update
egeakman989bebd How did I miss that
egeakmanba0ea41 [pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot]5542660 style-print notice
egeakman0361365 test on different OSs
egeakman0e72cd6 Everything looks fine, let's test it.
egeakman6cb2121 [pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot]b551bbc Update gettext.md
egeakman2b2d37e Update README.md
egeakman69f8756 update
egeakman31c6beb [pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot]50dde37 Let's see how this'll do
egeakmana51316e update
egeakman9ce2eea test
egeakman4a01035 revert to 9ce2eea626b429680b72feb4e2fb24e9b04f25ce and make changes
egeakmanf7d22a4 test
egeakman59d46d2 test
egeakman52c8bf3 Will be good to go after tests
egeakman8470e94 [pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot]add8291 Merge branch '3.11' into line-length
egeakman272c577 ok
egeakman6bb9143 Update README.md
egeakman30ddb75 remove powrap from pre-commit since it is very problematic
egeakmand534571 Merge branch '3.11' into line-length
egeakmanFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| *.po diff=podiff | ||
| *.po text eol=lf | ||
| *.pot diff=podiff | ||
| *.pot text eol=lf |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| name: pre-commit-ci | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: | ||
| - "**" | ||
| pull_request: | ||
| branches: | ||
| - "**" | ||
| jobs: | ||
| pre-commit: | ||
| name: "Pre-commit checks" | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions/setup-python@v4 | ||
| id: setup_python | ||
| with: | ||
| python-version: "3.11" | ||
| cache: pip | ||
| - name: Install pre-commit | ||
| run: pip install --upgrade -r requirements.txt | ||
| - name: Cache pre-commit tools | ||
| uses: actions/cache@v3 | ||
| with: | ||
| key: pre-commit-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('.pre-commit-config.yaml') }} | ||
| path: ~/.cache/pre-commit | ||
| - name: Run pre-commit | ||
| run: pre-commit run --all-files --show-diff-on-failure | ||
| - name: Run pre-commit-ci-lite | ||
| uses: pre-commit-ci/lite-action@v1.0.1 | ||
| if: always() |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,9 +1,44 @@ | ||
| repos: | ||
| - repo: local | ||
| hooks: | ||
| - id: style-print | ||
| name: "" | ||
| entry: "style-print 'Please report any issues at: https://github.com/python/python-docs-tr/issues' 'rUBI{y}'" | ||
| language: python | ||
| additional_dependencies: ["style-print"] | ||
| pass_filenames: false | ||
| verbose: true | ||
| - id: lint | ||
| name: Run sphinx-lint on .po files | ||
| entry: sphinx-lint | ||
| language: python | ||
| additional_dependencies: ["sphinx-lint"] | ||
| files: \.po$ | ||
| - repo: https://github.com/pycqa/isort | ||
| rev: 5.12.0 | ||
| hooks: | ||
| - id: isort | ||
| name: isort (python) | ||
| - repo: https://github.com/psf/black | ||
| rev: 23.1.0 | ||
| hooks: | ||
| - id: black | ||
| name: Run black on Python files | ||
| args: ["--line-length=140", "--target-version=py311"] | ||
| files: \.py$ | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v4.4.0 | ||
| hooks: | ||
| - id: end-of-file-fixer | ||
| - id: trailing-whitespace | ||
| - repo: https://github.com/pre-commit/mirrors-prettier | ||
| rev: v2.7.1 | ||
| hooks: | ||
| - id: prettier | ||
| name: Run prettier on .yml and .yaml files | ||
| types: [yaml] |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.