Move and delete files for merging into main repository

This commit is contained in:
Andrew Murray 2023-09-24 22:34:13 +10:00
parent f3a245518f
commit 8d0bfc4e03
29 changed files with 1 additions and 103 deletions

View File

@ -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
View File

@ -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
View File

@ -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"]
}

View File

@ -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
View File

@ -1,7 +0,0 @@
*.pyc
*.swp
*~
.idea
build
downloads
working

5
.gitmodules vendored
View File

@ -1,6 +1,3 @@
[submodule "Pillow"]
path = Pillow
url = https://github.com/python-Pillow/Pillow.git
[submodule "multibuild"]
path = multibuild
path = wheels/multibuild
url = https://github.com/multi-build/multibuild.git

View File

@ -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 +0,0 @@
Subproject commit e34d346f10c0b1c814661e662a3e0c1ef084cf1c

View File

@ -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