8000 Updated files with 'repo_helper'. (#24) · python-formate/snippet-fmt@9781405 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9781405

Browse files
Updated files with 'repo_helper'. (#24)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 2eb3793 commit 9781405

12 files changed

+35
-31
lines changed

.github/workflows/docs_test_action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout 🛎️
20-
uses: "actions/checkout@v3"
20+
uses: "actions/checkout@v4"
2121

2222
- name: Check for changed files
2323
uses: dorny/paths-filter@v2

.github/workflows/flake8.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v3"
23+
uses: "actions/checkout@v4"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v4"
36+
uses: "actions/setup-python@v5"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v3"
28+
uses: "actions/checkout@v4"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v4"
41+
uses: "actions/setup-python@v5"
4242
with:
4343
python-version: "3.8"
4444

.github/workflows/python_ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3'
2626

2727
strategy:
2828
fail-fast: False
@@ -35,11 +35,11 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
38-
- {python-version: "3.13.0-alpha.1", testenvs: "py313-dev-click{7,8},build", experimental: True}
38+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev-click{7,8},build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️
42-
uses: "actions/checkout@v3"
42+
uses: "actions/checkout@v4"
4343

4444
- name: Check for changed files
4545
if: startsWith(github.ref, 'refs/tags/') != true
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Python 🐍
5555
id: setup-python
5656
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
57-
uses: "actions/setup-python@v4"
57+
uses: "actions/setup-python@v5"
5858
with:
5959
python-version: "${{ matrix.config.python-version }}"
6060

.github/workflows/python_ci_linux.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3'
2727

2828
strategy:
2929
fail-fast: False
@@ -36,11 +36,11 @@ jobs:
3636
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3838
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
39-
- {python-version: "3.13.0-alpha.1", testenvs: "py313-dev-click{7,8},build", experimental: True}
39+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev-click{7,8},build", experimental: True}
4040

4141
steps:
4242
- name: Checkout 🛎️
43-
uses: "actions/checkout@v3"
43+
uses: "actions/checkout@v4"
4444

4545
- name: Check for changed files
4646
if: startsWith(github.ref, 'refs/tags/') != true
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Python 🐍
5656
id: setup-python
5757
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
58-
uses: "actions/setup-python@v4"
58+
uses: "actions/setup-python@v5"
5959
with:
6060
python-version: "${{ matrix.config.python-version }}"
6161

@@ -85,10 +85,10 @@ jobs:
8585
runs-on: "ubuntu-20.04"
8686
steps:
8787
- name: Checkout 🛎️
88-
uses: "actions/checkout@v3"
88+
uses: "actions/checkout@v4"
8989

9090
- name: Setup Python 🐍
91-
uses: "actions/setup-python@v4"
91+
uses: "actions/setup-python@v5"
9292
with:
9393
python-version: 3.8
9494

@@ -134,11 +134,11 @@ jobs:
134134
runs-on: "ubuntu-20.04"
135135
steps:
136136
- name: Checkout 🛎️
137-
uses: "actions/checkout@v3"
137+
uses: "actions/checkout@v4"
138138
if: startsWith(github.ref, 'refs/tags/')
139139

140140
- name: Setup Python 🐍
141-
uses: "actions/setup-python@v4"
141+
uses: "actions/setup-python@v5"
142142
if: startsWith(github.ref, 'refs/tags/')
143143
with:
144144
python-version: 3.8

.github/workflows/python_ci_macos.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.3'
2626

2727
strategy:
2828
fail-fast: False
@@ -35,11 +35,11 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311-click{7,8},build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312-click{7,8},build", experimental: False}
38-
- {python-version: "3.13.0-alpha.1", testenvs: "py313-dev-click{7,8},build", experimental: True}
38+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev-click{7,8},build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️
42-
uses: "actions/checkout@v3"
42+
uses: "actions/checkout@v4"
4343

4444
- name: Check for changed files
4545
if: startsWith(github.ref, 'refs/tags/') != true
@@ -54,7 +54,7 @@ jobs:
5454
- name: Setup Python 🐍
5555
id: setup-python
5656
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
57-
uses: "actions/setup-python@v4"
57+
uses: "actions/setup-python@v5"
5858
with:
5959
python-version: "${{ matrix.config.python-version }}"
6060

.pre-commit-config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ci:
88

99
repos:
1010
- repo: https://github.com/repo-helper/pyproject-parser
11-
rev: v0.9.0
11+
rev: v0.9.1
1212
hooks:
1313
- id: reformat-pyproject
1414

@@ -43,13 +43,13 @@ repos:
4343
- id: bind-requirements
4444

4545
- repo: https://github.com/domdfcoding/flake8-dunder-all
46-
rev: v0.3.0
46+
rev: v0.3.1
4747
hooks:
4848
- id: ensure-dunder-all
4949
files: ^snippet_fmt/.*\.py$
5050

5151
- repo: https://github.com/domdfcoding/flake2lint
52-
rev: v0.4.2
52+
rev: v0.4.3
5353
hooks:
5454
- id: flake2lint
5555

@@ -76,18 +76,18 @@ repos:
7676
- id: forbid-crlf
7777

7878
- repo: https://github.com/python-formate/snippet-fmt
79-
rev: v0.1.4
79+
rev: v0.1.5
8080
hooks:
8181
- id: snippet-fmt
8282

8383
- repo: https://github.com/python-formate/formate
84-
rev: v0.5.0
84+
rev: v0.7.0
8585
hooks:
8686
- id: formate
8787
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
8888

8989
- repo: https://github.com/domdfcoding/dep_checker
90-
rev: v0.7.1
90+
rev: v0.8.0
9191
hooks:
9292
- id: dep_checker
9393
args:

.readthedocs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ build:
1919
jobs:
2020
post_create_environment:
2121
- pip install .
22+
post_install:
23+
- pip install sphinxcontrib-applehelp==1.0.4 sphinxcontrib-devhelp==1.0.2 sphinxcontrib-htmlhelp==2.0.1
24+
sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.3 sphinxcontrib-serializinghtml==1.1.5

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ snippet-fmt
9999
:target: https://github.com/python-formate/snippet-fmt/commit/master
100100
:alt: GitHub last commit
101101

102-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2023
102+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
103103
:alt: Maintenance
104104

105105
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/snippet-fmt

doc-source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ snippet-fmt
104104
:last-commit:
105105
:alt: GitHub last commit
106106

107-
.. |maintained| maintained-shield:: 2023
107+
.. |maintained| maintained-shield:: 2024
108108
:alt: Maintenance
109109

110110
.. |pypi-downloads| pypi-shield::

doc-source/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ git+https://github.com/domdfcoding/sphinx-click.git
22
git+https://github.com/sphinx-toolbox/sphinx-toolbox-experimental.git
33
default-values>=0.6.0
44
extras-require>=0.5.0
5-
furo>=2020.11.19b18
5+
furo==2021.06.18b36
66
html-section>=0.3.0
77
seed-intersphinx-mapping>=1.2.2
88
sphinx>=3.0.3

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ changedir = {toxinidir}
9999
deps =
100100
build[virtualenv]>=0.3.1
101101
check-wheel-contents>=0.1.0
102-
twine>=3.2.0
102+
twine>=3.2.0; python_version < "3.13"
103+
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
103104
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
104105
commands =
105106
python -m build --sdist --wheel "{toxinidir}"

0 commit comments

Comments
 (0)
0