Skip to content

Commit 844b102

Browse files
Updated files with 'repo_helper'. (#49)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 85deb55 commit 844b102

12 files changed

+27
-23
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: Install and Build 🔧
2323
uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1

.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.6"
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.6"
4444

.github/workflows/python_ci.yml

+2-2
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

+4-4
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

@@ -78,11 +78,11 @@ jobs:
7878
runs-on: "ubuntu-20.04"
7979
steps:
8080
- name: Checkout 🛎️
81-
uses: "actions/checkout@v3"
81+
uses: "actions/checkout@v4"
8282
if: startsWith(github.ref, 'refs/tags/')
8383

8484
- name: Setup Python 🐍
85-
uses: "actions/setup-python@v4"
85+
uses: "actions/setup-python@v5"
8686
if: startsWith(github.ref, 'refs/tags/')
8787
with:
8888
python-version: 3.8

.github/workflows/python_ci_macos.yml

+2-2
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

+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: ^whiptail/.*\.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 @@ whiptail
9999
:target: https://github.com/domdfcoding/whiptail/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/whiptail-dialogs

doc-source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ whiptail
105105
:last-commit:
106106
:alt: GitHub last commit
107107

108-
.. |maintained| maintained-shield:: 2023
108+
.. |maintained| maintained-shield:: 2024
109109
:alt: Maintenance
110110

111111
.. |pypi-downloads| pypi-shield::

formate.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ use_parentheses = true
3232
remove_redundant_aliases = true
3333
default_section = "THIRDPARTY"
3434
known_third_party = [ "domdf_python_tools", "github", "requests", "typing_extensions",]
35-
known_first_party = "whiptail"
35+
known_first_party = [ "whiptail",]

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ changedir = {toxinidir}
6969
deps =
7070
build[virtualenv]>=0.3.1
7171
check-wheel-contents>=0.1.0
72-
twine>=3.2.0
72+
twine>=3.2.0; python_version < "3.13"
73+
twine@git+https://github.com/pypa/twine; python_version >= "3.13"
7374
cryptography<40; implementation_name == "pypy" and python_version <= "3.7"
7475
commands =
7576
python -m build --sdist --wheel "{toxinidir}"

0 commit comments

Comments
 (0)