Skip to content

Commit 5681436

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

File tree

9 files changed

+28
-25
lines changed

9 files changed

+28
-25
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@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
@@ -20,7 +20,7 @@ jobs:
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,9 +33,9 @@ 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:
38-
python-version: "3.7"
38+
python-version: "3.8"
3939

4040
- name: Install dependencies 🔧
4141
if: steps.changes.outputs.code == 'true'

.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,9 +38,9 @@ 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:
43-
python-version: "3.7"
43+
python-version: "3.8"
4444

4545
- name: Install dependencies 🔧
4646
run: |

.github/workflows/python_ci.yml

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

3636
steps:
3737
- name: Checkout 🛎️
38-
uses: "actions/checkout@v2"
38+
uses: "actions/checkout@v3"
3939

4040
- name: Check for changed files
4141
if: startsWith(github.ref, 'refs/tags/') != true
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Python 🐍
5151
id: setup-python
5252
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
53-
uses: "actions/setup-python@v2"
53+
uses: "actions/setup-python@v4"
5454
with:
5555
python-version: "${{ matrix.config.python-version }}"
5656

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout 🛎️
39-
uses: "actions/checkout@v2"
39+
uses: "actions/checkout@v3"
4040

4141
- name: Check for changed files
4242
if: startsWith(github.ref, 'refs/tags/') != true
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Python 🐍
5252
id: setup-python
5353
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
54-
uses: "actions/setup-python@v2"
54+
uses: "actions/setup-python@v4"
5555
with:
5656
python-version: "${{ matrix.config.python-version }}"
5757

@@ -81,10 +81,10 @@ jobs:
8181
runs-on: "ubuntu-20.04"
8282
steps:
8383
- name: Checkout 🛎️
84-
uses: "actions/checkout@v2"
84+
uses: "actions/checkout@v3"
8585

8686
- name: Setup Python 🐍
87-
uses: "actions/setup-python@v2"
87+
uses: "actions/setup-python@v4"
8888
with:
8989
python-version: 3.8
9090

@@ -130,11 +130,11 @@ jobs:
130130
runs-on: "ubuntu-20.04"
131131
steps:
132132
- name: Checkout 🛎️
133-
uses: "actions/checkout@v2"
133+
uses: "actions/checkout@v3"
134134
if: startsWith(github.ref, 'refs/tags/')
135135

136136
- name: Setup Python 🐍
137-
uses: "actions/setup-python@v2"
137+
uses: "actions/setup-python@v4"
138138
if: startsWith(github.ref, 'refs/tags/')
139139
with:
140140
python-version: 3.8

.github/workflows/python_ci_macos.yml

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

3636
steps:
3737
- name: Checkout 🛎️
38-
uses: "actions/checkout@v2"
38+
uses: "actions/checkout@v3"
3939

4040
- name: Check for changed files
4141
if: startsWith(github.ref, 'refs/tags/') != true
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup Python 🐍
5151
id: setup-python
5252
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
53-
uses: "actions/setup-python@v2"
53+
uses: "actions/setup-python@v4"
5454
with:
5555
python-version: "${{ matrix.config.python-version }}"
5656

.pre-commit-config.yaml

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

44
exclude: ^$
55

6+
ci:
7+
autoupdate_schedule: quarterly
8+
69
repos:
710
- repo: https://github.com/repo-helper/pyproject-parser
811
rev: v0.7.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ autodoc_exclude_members = [
122122
]
123123

124124
[tool.mypy]
125-
python_version = "3.7"
125+
python_version = "3.8"
126126
namespace_packages = true
127127
check_untyped_defs = true
128128
warn_unused_ignores = true

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ requires =
2828
[envlists]
2929
test = py37, py38, py39, py310-dev
3030
qa = mypy, lint
31-
cov = py37, coverage
31+
cov = py38, coverage
3232

3333
[testenv]
3434
setenv =
@@ -61,7 +61,7 @@ commands =
6161
check-wheel-contents dist/
6262

6363
[testenv:lint]
64-
basepython = python3.7
64+
basepython = python3.8
6565
changedir = {toxinidir}
6666
ignore_errors = True
6767
skip_install = True
@@ -91,33 +91,33 @@ deps =
9191
commands = python3 -m flake8_rst_docstrings_sphinx tox_recreate_hook tests --allow-toolbox {posargs}
9292

9393
[testenv:perflint]
94-
basepython = python3.7
94+
basepython = python3.8
9595
changedir = {toxinidir}
9696
ignore_errors = True
9797
skip_install = True
9898
deps = perflint
9999
commands = python3 -m perflint tox_recreate_hook {posargs}
100100

101101
[testenv:mypy]
102-
basepython = python3.7
102+
basepython = python3.8
103103
ignore_errors = True
104104
changedir = {toxinidir}
105105
deps =
106-
mypy==0.942
106+
mypy==0.971
107107
-r{toxinidir}/tests/requirements.txt
108108
types-first
109109
commands = mypy tox_recreate_hook tests {posargs}
110110

111111
[testenv:pyup]
112-
basepython = python3.7
112+
basepython = python3.8
113113
skip_install = True
114114
ignore_errors = True
115115
changedir = {toxinidir}
116116
deps = pyupgrade-directories
117117
commands = pyup_dirs tox_recreate_hook tests --py36-plus --recursive
118118

119119
[testenv:coverage]
120-
basepython = python3.7
120+
basepython = python3.8
121121
skip_install = True
122122
ignore_errors = True
123123
whitelist_externals = /bin/bash

0 commit comments

Comments
 (0)