Skip to content

Commit ef1ba5a

Browse files
[repo-helper] Configuration Update (#46)
* Updated files with 'repo_helper'. * Updated files with 'repo_helper'. Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 9cee39d commit ef1ba5a

File tree

12 files changed

+52
-46
lines changed

12 files changed

+52
-46
lines changed

.github/workflows/conda_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: Checkout 🛎️
22-
uses: "actions/checkout@v2"
22+
uses: "actions/checkout@v3"
2323

2424
- name: Setup Python 🐍
25-
uses: "actions/setup-python@v2"
25+
uses: "actions/setup-python@v4"
2626
with:
2727
python-version: "3.8"
2828

.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@v2"
20+
uses: "actions/checkout@v3"
2121

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

.github/workflows/flake8.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ permissions:
1616
jobs:
1717
Run:
1818
name: "Flake8"
19-
runs-on: "ubuntu-18.04"
19+
runs-on: "ubuntu-20.04"
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v2"
23+
uses: "actions/checkout@v3"
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@v2"
36+
uses: "actions/setup-python@v4"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v2"
28+
uses: "actions/checkout@v3"
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@v2"
41+
uses: "actions/setup-python@v4"
4242
with:
4343
python-version: "3.8"
4444

@@ -47,7 +47,7 @@ jobs:
4747
python -VV
4848
python -m site
4949
python -m pip install --upgrade pip setuptools wheel
50-
python -m pip install --upgrade tox virtualenv
50+
python -m pip install --upgrade tox virtualenv!=20.16.0
5151
5252
- name: "Run mypy"
5353
if: steps.changes.outputs.code == 'true'

.github/workflows/python_ci.yml

Lines changed: 5 additions & 5 deletions
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.0-beta.3,pypy-3.6,pypy-3.7,pypy-3.8'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,14 +33,14 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-beta.3", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4040

4141
steps:
4242
- name: Checkout 🛎️
43-
uses: "actions/checkout@v2"
43+
uses: "actions/checkout@v3"
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@v2"
58+
uses: "actions/setup-python@v4"
5959
with:
6060
python-version: "${{ matrix.config.python-version }}"
6161

@@ -65,7 +65,7 @@ jobs:
6565
python -VV
6666
python -m site
6767
python -m pip install --upgrade pip setuptools wheel
68-
python -m pip install --upgrade tox virtualenv
68+
python -m pip install --upgrade tox virtualenv!=20.16.0
6969
7070
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
7171
if: steps.setup-python.outcome == 'success'

.github/workflows/python_ci_linux.yml

Lines changed: 11 additions & 11 deletions
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.0-beta.3,pypy-3.6,pypy-3.7,pypy-3.8'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8'
2727

2828
strategy:
2929
fail-fast: False
@@ -34,14 +34,14 @@ jobs:
3434
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
37-
- {python-version: "3.11.0-beta.3", testenvs: "py311-dev,build", experimental: True}
37+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3838
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
4141

4242
steps:
4343
- name: Checkout 🛎️
44-
uses: "actions/checkout@v2"
44+
uses: "actions/checkout@v3"
4545

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

@@ -66,7 +66,7 @@ jobs:
6666
python -VV
6767
python -m site
6868
python -m pip install --upgrade pip setuptools wheel
69-
python -m pip install --upgrade tox virtualenv
69+
python -m pip install --upgrade tox virtualenv!=20.16.0
7070
python -m pip install --upgrade coverage_pyver_pragma
7171
7272
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
@@ -86,10 +86,10 @@ jobs:
8686
runs-on: "ubuntu-20.04"
8787
steps:
8888
- name: Checkout 🛎️
89-
uses: "actions/checkout@v2"
89+
uses: "actions/checkout@v3"
9090

9191
- name: Setup Python 🐍
92-
uses: "actions/setup-python@v2"
92+
uses: "actions/setup-python@v4"
9393
with:
9494
python-version: 3.8
9595

@@ -135,11 +135,11 @@ jobs:
135135
runs-on: "ubuntu-20.04"
136136
steps:
137137
- name: Checkout 🛎️
138-
uses: "actions/checkout@v2"
138+
uses: "actions/checkout@v3"
139139
if: startsWith(github.ref, 'refs/tags/')
140140

141141
- name: Setup Python 🐍
142-
uses: "actions/setup-python@v2"
142+
uses: "actions/setup-python@v4"
143143
if: startsWith(github.ref, 'refs/tags/')
144144
with:
145145
python-version: 3.8
@@ -180,10 +180,10 @@ jobs:
180180
if: startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
181181
steps:
182182
- name: Checkout 🛎️
183-
uses: "actions/checkout@v2"
183+
uses: "actions/checkout@v3"
184184

185185
- name: Setup Python 🐍
186-
uses: "actions/setup-python@v2"
186+
uses: "actions/setup-python@v4"
187187
with:
188188
python-version: 3.8
189189

.github/workflows/python_ci_macos.yml

Lines changed: 5 additions & 5 deletions
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.0-beta.3,pypy-3.7,pypy-3.8'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,13 +33,13 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-beta.3", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3838
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️
42-
uses: "actions/checkout@v2"
42+
uses: "actions/checkout@v3"
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@v2"
57+
uses: "actions/setup-python@v4"
5858
with:
5959
python-version: "${{ matrix.config.python-version }}"
6060

@@ -64,7 +64,7 @@ jobs:
6464
python -VV
6565
python -m site
6666
python -m pip install --upgrade pip setuptools wheel
67-
python -m pip install --upgrade tox virtualenv
67+
python -m pip install --upgrade tox virtualenv!=20.16.0
6868
6969
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
7070
if: steps.setup-python.outcome == 'success'

.pre-commit-config.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33

44
exclude: ^$
55

6+
ci:
7+
autoupdate_schedule: quarterly
8+
69
repos:
710
- repo: https://github.com/repo-helper/pyproject-parser
8-
rev: v0.6.1
11+
rev: v0.7.0
912
hooks:
1013
- id: reformat-pyproject
1114

@@ -30,7 +33,7 @@ repos:
3033
- id: end-of-file-fixer
3134

3235
- repo: https://github.com/domdfcoding/pre-commit-hooks
33-
rev: v0.3.0
36+
rev: v0.4.0
3437
hooks:
3538
- id: requirements-txt-sorter
3639
args:
@@ -40,13 +43,13 @@ repos:
4043
- id: bind-requirements
4144

4245
- repo: https://github.com/domdfcoding/flake8-dunder-all
43-
rev: v0.2.1
46+
rev: v0.2.2
4447
hooks:
4548
- id: ensure-dunder-all
4649
files: ^flake8_strftime/.*\.py$
4750

4851
- repo: https://github.com/domdfcoding/flake2lint
49-
rev: v0.4.1
52+
rev: v0.4.2
5053
hooks:
5154
- id: flake2lint
5255

@@ -67,7 +70,7 @@ repos:
6770
- --keep-runtime-typing
6871

6972
- repo: https://github.com/Lucas-C/pre-commit-hooks
70-
rev: v1.2.0
73+
rev: v1.3.1
7174
hooks:
7275
- id: remove-crlf
7376
- id: forbid-crlf
@@ -84,7 +87,7 @@ repos:
8487
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
8588

8689
- repo: https://github.com/domdfcoding/dep_checker
87-
rev: v0.6.2
90+
rev: v0.7.0
8891
hooks:
8992
- id: dep_checker
9093
args:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ flake8_strftime
5858
:target: https://github.com/python-formate/flake8_strftime/actions?query=workflow%3A%22mypy%22
5959
:alt: mypy status
6060

61-
.. |requires| image:: https://dependency-dash.herokuapp.com/github/python-formate/flake8_strftime/badge.svg
62-
:target: https://dependency-dash.herokuapp.com/github/python-formate/flake8_strftime/
61+
.. |requires| image:: https://dependency-dash.repo-helper.uk/github/python-formate/flake8_strftime/badge.svg
62+
:target: https://dependency-dash.repo-helper.uk/github/python-formate/flake8_strftime/
6363
:alt: Requirements Status
6464

6565
.. |coveralls| image:: https://img.shields.io/coveralls/github/python-formate/flake8_strftime/master?logo=coveralls

doc-source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ flake8_strftime
6060
:workflow: mypy
6161
:alt: mypy status
6262

63-
.. |requires| image:: https://dependency-dash.herokuapp.com/github/python-formate/flake8_strftime/badge.svg
64-
:target: https://dependency-dash.herokuapp.com/github/python-formate/flake8_strftime/
63+
.. |requires| image:: https://dependency-dash.repo-helper.uk/github/python-formate/flake8_strftime/badge.svg
64+
:target: https://dependency-dash.repo-helper.uk/github/python-formate/flake8_strftime/
6565
:alt: Requirements Status
6666

6767
.. |coveralls| coveralls-shield::

0 commit comments

Comments
 (0)