Skip to content

Commit 15e5459

Browse files
Updated files with 'repo_helper'.
1 parent 3302322 commit 15e5459

File tree

11 files changed

+30
-24
lines changed

11 files changed

+30
-24
lines changed

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout 🛎️
41-
uses: "actions/checkout@v3"
41+
uses: "actions/checkout@v4"
4242

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

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
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

@@ -84,10 +84,10 @@ jobs:
8484
runs-on: "ubuntu-20.04"
8585
steps:
8686
- name: Checkout 🛎️
87-
uses: "actions/checkout@v3"
87+
uses: "actions/checkout@v4"
8888

8989
- name: Setup Python 🐍
90-
uses: "actions/setup-python@v4"
90+
uses: "actions/setup-python@v5"
9191
with:
9292
python-version: 3.8
9393

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

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

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout 🛎️
41-
uses: "actions/checkout@v3"
41+
uses: "actions/checkout@v4"
4242

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

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
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: ^tox_recreate_hook/.*\.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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ tox-recreate-hook
9999
:target: https://github.com/python-coincidence/tox-recreate-hook/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/tox-recreate-hook

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ tox-recreate-hook
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::

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
# * envlists
55
# * testenv
66
# * testenv:.package
7+
# * testenv:py313-dev
78
# * testenv:py312-dev
9+
# * testenv:py312
810
# * testenv:docs
911
# * testenv:build
1012
# * testenv:lint
@@ -76,7 +78,8 @@ changedir = {toxinidir}
7678
deps =
7779
build[virtualenv]>=0.3.1
7880
check-wheel-contents>=0.1.0
79-
twine>=3.2.0
81+
twine>=3.2.0; python_version < "3.13"
82+
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
8083
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
8184
commands =
8285
python -m build --sdist --wheel "{toxinidir}"

0 commit comments

Comments
 (0)