mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 10:16:17 +03:00
Move and delete files for merging into main repository
This commit is contained in:
parent
f3a245518f
commit
8d0bfc4e03
|
@ -1,18 +0,0 @@
|
||||||
# Top-most EditorConfig file
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
# Unix-style newlines with a newline ending every file
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
charset = utf-8
|
|
||||||
|
|
||||||
# Four-space indentation
|
|
||||||
indent_size = 4
|
|
||||||
indent_style = space
|
|
||||||
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
|
|
||||||
[*.yml]
|
|
||||||
# Two-space indentation
|
|
||||||
indent_size = 2
|
|
11
.github/mergify.yml
vendored
11
.github/mergify.yml
vendored
|
@ -1,11 +0,0 @@
|
||||||
pull_request_rules:
|
|
||||||
- name: Automatic merge
|
|
||||||
conditions:
|
|
||||||
- "#approved-reviews-by>=1"
|
|
||||||
- label=automerge
|
|
||||||
- status-success=Lint
|
|
||||||
- status-success=Travis CI - Pull Request
|
|
||||||
- status-success=Wheels Successful
|
|
||||||
actions:
|
|
||||||
merge:
|
|
||||||
method: merge
|
|
14
.github/renovate.json
vendored
14
.github/renovate.json
vendored
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
||||||
"extends": [
|
|
||||||
"config:base"
|
|
||||||
],
|
|
||||||
"packageRules": [
|
|
||||||
{
|
|
||||||
"groupName": "github-actions",
|
|
||||||
"matchManagers": ["github-actions"],
|
|
||||||
"separateMajorMinor": "false"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"schedule": ["on the 4th day of the month"]
|
|
||||||
}
|
|
20
.github/workflows/lint.yml
vendored
20
.github/workflows/lint.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
name: Lint
|
|
||||||
|
|
||||||
on: [push, pull_request, workflow_dispatch]
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
lint:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
name: Lint
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "3.x"
|
|
||||||
- uses: pre-commit/action@v3.0.0
|
|
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
*.pyc
|
|
||||||
*.swp
|
|
||||||
*~
|
|
||||||
.idea
|
|
||||||
build
|
|
||||||
downloads
|
|
||||||
working
|
|
5
.gitmodules
vendored
5
.gitmodules
vendored
|
@ -1,6 +1,3 @@
|
||||||
[submodule "Pillow"]
|
|
||||||
path = Pillow
|
|
||||||
url = https://github.com/python-Pillow/Pillow.git
|
|
||||||
[submodule "multibuild"]
|
[submodule "multibuild"]
|
||||||
path = multibuild
|
path = wheels/multibuild
|
||||||
url = https://github.com/multi-build/multibuild.git
|
url = https://github.com/multi-build/multibuild.git
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
repos:
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
||||||
rev: v4.4.0
|
|
||||||
hooks:
|
|
||||||
- id: check-merge-conflict
|
|
||||||
- id: check-json
|
|
||||||
- id: check-yaml
|
|
||||||
|
|
||||||
ci:
|
|
||||||
autoupdate_schedule: quarterly
|
|
1
Pillow
1
Pillow
|
@ -1 +0,0 @@
|
||||||
Subproject commit e34d346f10c0b1c814661e662a3e0c1ef084cf1c
|
|
|
@ -1,18 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -e # exit on error
|
|
||||||
|
|
||||||
if [ $# -eq 0 ]; then
|
|
||||||
echo "Usage: update-pillow-tag.sh [[release tag]]"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
git checkout main
|
|
||||||
git submodule update --init Pillow
|
|
||||||
cd Pillow
|
|
||||||
git fetch --all
|
|
||||||
git checkout $1
|
|
||||||
cd ..
|
|
||||||
git commit -m "Pillow -> $1" Pillow
|
|
||||||
git tag $1
|
|
||||||
git push origin $1
|
|
Loading…
Reference in New Issue
Block a user