Skip to content

Commit 4c1d8f4

Browse files
Updated files with 'repo_helper'. (#20)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 1106cd5 commit 4c1d8f4

File tree

8 files changed

+27
-24
lines changed

8 files changed

+27
-24
lines changed

.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: 4 additions & 4 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.7,3.8,3.9,3.10,3.11.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,14 +32,14 @@ jobs:
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
35+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3636
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3737
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3838
- {python-version: "pypy-3.9", testenvs: "pypy39", 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

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 4 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.7,3.8,3.9,3.10,3.11.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
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-rc.1", 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
- {python-version: "pypy-3.9", testenvs: "pypy39", 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

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 4 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.7,3.8,3.9,3.10,3.11.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,14 +32,14 @@ jobs:
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
35+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3636
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3737
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3838
- {python-version: "pypy-3.9", testenvs: "pypy39", 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

.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
@@ -43,7 +43,7 @@ package = "testing_tox"
4343
always = [ "testing_tox",]
4444

4545
[tool.mypy]
46-
python_version = "3.7"
46+
python_version = "3.8"
4747
namespace_packages = true
4848
check_untyped_defs = true
4949
warn_unused_ignores = true

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ commands =
5959
check-wheel-contents dist/
6060

6161
[testenv:lint]
62-
basepython = python3.7
62+
basepython = python3.8
6363
changedir = {toxinidir}
6464
ignore_errors = True
6565
skip_install = True
@@ -89,22 +89,22 @@ deps =
8989
commands = python3 -m flake8_rst_docstrings_sphinx testing_tox --allow-toolbox {posargs}
9090

9191
[testenv:perflint]
92-
basepython = python3.7
92+
basepython = python3.8
9393
changedir = {toxinidir}
9494
ignore_errors = True
9595
skip_install = True
9696
deps = perflint
9797
commands = python3 -m perflint testing_tox {posargs}
9898

9999
[testenv:mypy]
100-
basepython = python3.7
100+
basepython = python3.8
101101
ignore_errors = True
102102
changedir = {toxinidir}
103-
deps = mypy==0.942
103+
deps = mypy==0.971
104104
commands = mypy testing_tox {posargs}
105105

106106
[testenv:pyup]
107-
basepython = python3.7
107+
basepython = python3.8
108108
skip_install = True
109109
ignore_errors = True
110110
changedir = {toxinidir}

0 commit comments

Comments
 (0)