Skip to content

Commit de83ef9

Browse files
committed
Initial skeleton.
0 parents  commit de83ef9

Some content is hidden

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

47 files changed

+3009
-0
lines changed

.bumpversion.cfg

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[bumpversion]
2+
current_version = 0.0.0
3+
commit = True
4+
tag = True
5+
6+
[bumpversion:file:README.rst]
7+
8+
[bumpversion:file:formate_trailing_commas/__init__.py]
9+
search = : str = "{current_version}"
10+
replace = : str = "{new_version}"
11+
12+
[bumpversion:file:pyproject.toml]
13+
search = version = "{current_version}"
14+
replace = version = "{new_version}"
15+
16+
[bumpversion:file:repo_helper.yml]
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
labels: bug
5+
assignees: domdfcoding
6+
7+
---
8+
9+
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue.
10+
11+
PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE.
12+
THE ISSUE WILL BE CLOSED IF INSUFFICIENT INFORMATION IS PROVIDED.
13+
-->
14+
15+
## Description
16+
<!--Provide a brief description of the issue-->
17+
18+
19+
## Steps to Reproduce
20+
<!--Please add a series of steps to reproduce the issue.
21+
22+
If possible, please include a small, self-contained reproduction.
23+
-->
24+
25+
1.
26+
2.
27+
3.
28+
29+
## Actual result:
30+
<!--Please add screenshots if needed and include the Python traceback if present-->
31+
32+
33+
## Expected result:
34+
35+
36+
## Reproduces how often:
37+
<!--[Easily reproduced/Intermittent issue/No steps to reproduce]-->
38+
39+
40+
## Version
41+
42+
* Operating System:
43+
* Python:
44+
* formate-trailing-commas:
45+
46+
## Installation source
47+
<!-- e.g. GitHub repository, GitHub Releases, PyPI/pip, Anaconda/conda -->
48+
49+
50+
## Other Additional Information:
51+
<!--Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue-->
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
labels: "enhancement"
5+
assignees: domdfcoding
6+
7+
---
8+
9+
<!-- Have you searched for similar issues? Someone may already be working on the feature you are suggesting. Before submitting this issue, please check the open issues and add a note before logging a new issue.
10+
-->
11+
12+
13+
## Description
14+
<!--Provide a clear and concise description of what the problem is and the improvement you are suggesting-->
15+
16+
<!--Please add screenshots if needed-->
17+
18+
19+
## Version
20+
21+
* Operating System:
22+
* Python:
23+
* formate-trailing-commas:
24+
25+
26+
## Other Additional Information:
27+
<!--Any additional information, related issues, etc.-->

.github/auto_assign.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
---
3+
addReviewers: true
4+
addAssignees: true
5+
reviewers:
6+
- domdfcoding
7+
numberOfReviewers: 0
8+
9+
# more settings at https://github.com/marketplace/actions/auto-assign-action

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
---
3+
version: 2
4+
updates:
5+
- package-ecosystem: pip
6+
directory: /
7+
schedule:
8+
interval: weekly
9+
open-pull-requests-limit: 0
10+
reviewers:
11+
- domdfcoding

.github/milestones.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/usr/bin/env python
2+
3+
# stdlib
4+
import os
5+
import sys
6+
7+
# 3rd party
8+
from github3 import GitHub
9+
from github3.repos import Repository
10+
from packaging.version import InvalidVersion, Version
11+
12+
latest_tag = os.environ["GITHUB_REF_NAME"]
13+
14+
try:
15+
current_version = Version(latest_tag)
16+
except InvalidVersion:
17+
sys.exit()
18+
19+
gh: GitHub = GitHub(token=os.environ["GITHUB_TOKEN"])
20+
repo: Repository = gh.repository(*os.environ["GITHUB_REPOSITORY"].split('/', 1))
21+
22+
for milestone in repo.milestones(state="open"):
23+
try:
24+
milestone_version = Version(milestone.title)
25+
except InvalidVersion:
26+
continue
27+
if milestone_version == current_version:
28+
sys.exit(not milestone.update(state="closed"))

.github/stale.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
# Configuration for probot-stale - https://github.com/probot/stale
3+
---
4+
5+
# Number of days of inactivity before an Issue or Pull Request becomes stale
6+
daysUntilStale: 180
7+
8+
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
9+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
10+
daysUntilClose: false
11+
12+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
13+
onlyLabels: []
14+
15+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
16+
exemptLabels:
17+
- pinned
18+
- security
19+
- "[Status] Maybe Later"
20+
21+
# Set to true to ignore issues in a project (defaults to false)
22+
exemptProjects: false
23+
24+
# Set to true to ignore issues in a milestone (defaults to false)
25+
exemptMilestones: false
26+
27+
# Set to true to ignore issues with an assignee (defaults to false)
28+
exemptAssignees: false
29+
30+
# Label to use when marking as stale
31+
staleLabel: stale
32+
33+
# Comment to post when marking as stale. Set to `false` to disable
34+
markComment: false
35+
# This issue has been automatically marked as stale because it has not had
36+
# recent activity. It will be closed if no further activity occurs. Thank you
37+
# for your contributions.
38+
39+
# Comment to post when removing the stale label.
40+
# unmarkComment: >
41+
# Your comment here.
42+
43+
# Comment to post when closing a stale Issue or Pull Request.
44+
# closeComment: >
45+
# Your comment here.
46+
47+
# Limit the number of actions per hour, from 1-30. Default is 30
48+
limitPerRun: 30
49+
50+
# Limit to only `issues` or `pulls`
51+
# only: issues
52+
53+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
54+
# pulls:
55+
# daysUntilStale: 30
56+
# markComment: >
57+
# This pull request has been automatically marked as stale because it has not had
58+
# recent activity. It will be closed if no further activity occurs. Thank you
59+
# for your contributions.
60+
61+
# issues:
62+
# exemptLabels:
63+
# - confirmed

.github/workflows/flake8.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
---
3+
name: Flake8
4+
5+
on:
6+
push:
7+
branches-ignore:
8+
- 'repo-helper-update'
9+
- 'pre-commit-ci-update-config'
10+
- 'imgbot'
11+
pull_request:
12+
13+
jobs:
14+
Run:
15+
name: "Flake8"
16+
permissions:
17+
contents: read
18+
runs-on: "ubuntu-22.04"
19+
20+
steps:
21+
- name: Checkout 🛎️
22+
uses: "actions/checkout@v4"
23+
24+
- name: Check for changed files
25+
uses: dorny/paths-filter@v2
26+
id: changes
27+
with:
28+
list-files: "json"
29+
filters: |
30+
code:
31+
- '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)'
32+
33+
- name: Setup Python 🐍
34+
if: steps.changes.outputs.code == 'true'
35+
uses: "actions/setup-python@v5"
36+
with:
37+
python-version: "3.9"
38+
39+
- name: Install dependencies 🔧
40+
if: steps.changes.outputs.code == 'true'
41+
run: |
42+
python -VV
43+
python -m site
44+
python -m pip install --upgrade pip setuptools wheel
45+
python -m pip install tox~=3.0
46+
47+
- name: "Run Flake8"
48+
if: steps.changes.outputs.code == 'true'
49+
run: "python -m tox -e lint -s false -- --format github"

.github/workflows/mypy.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
---
3+
name: mypy
4+
5+
on:
6+
push:
7+
branches-ignore:
8+
- 'repo-helper-update'
9+
- 'pre-commit-ci-update-config'
10+
- 'imgbot'
11+
pull_request:
12+
13+
jobs:
14+
Run:
15+
permissions:
16+
contents: read
17+
name: "mypy / ${{ matrix.os }}"
18+
runs-on: ${{ matrix.os }}
19+
20+
strategy:
21+
matrix:
22+
os: ['ubuntu-22.04', 'windows-2022']
23+
fail-fast: false
24+
25+
steps:
26+
- name: Checkout 🛎️
27+
uses: "actions/checkout@v4"
28+
29+
- name: Check for changed files
30+
uses: dorny/paths-filter@v2
31+
id: changes
32+
with:
33+
list-files: "json"
34+
filters: |
35+
code:
36+
- '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)'
37+
38+
- name: Setup Python 🐍
39+
if: steps.changes.outputs.code == 'true'
40+
uses: "actions/setup-python@v5"
41+
with:
42+
python-version: "3.9"
43+
44+
- name: Install dependencies 🔧
45+
run: |
46+
python -VV
47+
python -m site
48+
python -m pip install --upgrade pip setuptools wheel
49+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
50+
51+
- name: "Run mypy"
52+
if: steps.changes.outputs.code == 'true'
53+
run: "python -m tox -e mypy -s false"

.github/workflows/python_ci.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
---
3+
name: Windows
4+
5+
on:
6+
push:
7+
branches-ignore:
8+
- 'repo-helper-update'
9+
- 'pre-commit-ci-update-config'
10+
- 'imgbot'
11+
12+
pull_request:
13+
14+
jobs:
15+
tests:
16+
permissions:
17+
actions: write
18+
contents: read
19+
name: "windows-2022 / Python ${{ matrix.config.python-version }}"
20+
runs-on: "windows-2022"
21+
continue-on-error: ${{ matrix.config.experimental }}
22+
env:
23+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
24+
25+
strategy:
26+
fail-fast: False
27+
matrix:
28+
config:
29+
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
30+
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
31+
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
32+
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
33+
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
34+
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
35+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
36+
37+
steps:
38+
- name: Checkout 🛎️
39+
uses: "actions/checkout@v4"
40+
41+
- name: Check for changed files
42+
if: startsWith(github.ref, 'refs/tags/') != true
43+
uses: dorny/paths-filter@v2
44+
id: changes
45+
with:
46+
list-files: "json"
47+
filters: |
48+
code:
49+
- '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)'
50+
51+
- name: Setup Python 🐍
52+
id: setup-python
53+
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
54+
uses: "actions/setup-python@v5"
55+
with:
56+
python-version: "${{ matrix.config.python-version }}"
57+
58+
- name: Install dependencies 🔧
59+
if: steps.setup-python.outcome == 'success'
60+
run: |
61+
python -VV
62+
python -m site
63+
python -m pip install --upgrade pip setuptools wheel
64+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
65+
66+
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
67+
if: steps.setup-python.outcome == 'success'
68+
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false

0 commit comments

Comments
 (0)