Skip to content

Commit 7e23115

Browse files
Updated files with 'repo_helper'. (#26)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 9eb0bbc commit 7e23115

File tree

8 files changed

+29
-26
lines changed

8 files changed

+29
-26
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.6"
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.6"
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,22 +22,22 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.10,3.11.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
3131
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
32-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
32+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3333
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3434
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3535
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3636
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
3737

3838
steps:
3939
- name: Checkout 🛎️
40-
uses: "actions/checkout@v2"
40+
uses: "actions/checkout@v3"
4141

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

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.10,3.11.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.10,3.11,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
2727

2828
strategy:
2929
fail-fast: False
3030
matrix:
3131
config:
3232
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
33-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
33+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3434
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3535
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3636
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3737
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
3838

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

@@ -77,11 +77,11 @@ jobs:
7777
runs-on: "ubuntu-20.04"
7878
steps:
7979
- name: Checkout 🛎️
80-
uses: "actions/checkout@v2"
80+
uses: "actions/checkout@v3"
8181
if: startsWith(github.ref, 'refs/tags/')
8282

8383
- name: Setup Python 🐍
84-
uses: "actions/setup-python@v2"
84+
uses: "actions/setup-python@v4"
8585
if: startsWith(github.ref, 'refs/tags/')
8686
with:
8787
python-version: 3.8

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.10,3.11.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.10,3.11,pypy-3.7,pypy-3.8,pypy-3.9'
2626

2727
strategy:
2828
fail-fast: False
2929
matrix:
3030
config:
3131
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
32-
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev,build", experimental: True}
32+
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: True}
3333
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3434
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
3535
- {python-version: "pypy-3.9", testenvs: "pypy39", experimental: True}
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

.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
@@ -35,7 +35,7 @@ license-key = "MIT"
3535
package = "pytest_mypy_plugins_shim"
3636

3737
[tool.mypy]
38-
python_version = "3.6"
38+
python_version = "3.8"
3939
namespace_packages = true
4040
check_untyped_defs = true
4141
warn_unused_ignores = true

tox.ini

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

5151
[testenv:lint]
52-
basepython = python3.6
52+
basepython = python3.8
5353
changedir = {toxinidir}
5454
ignore_errors = True
5555
skip_install = True
@@ -79,22 +79,22 @@ deps =
7979
commands = python3 -m flake8_rst_docstrings_sphinx pytest_mypy_plugins_shim --allow-toolbox {posargs}
8080

8181
[testenv:perflint]
82-
basepython = python3.6
82+
basepython = python3.8
8383
changedir = {toxinidir}
8484
ignore_errors = True
8585
skip_install = True
8686
deps = perflint
8787
commands = python3 -m perflint pytest_mypy_plugins_shim {posargs}
8888

8989
[testenv:mypy]
90-
basepython = python3.6
90+
basepython = python3.8
9191
ignore_errors = True
9292
changedir = {toxinidir}
93-
deps = mypy==0.942
93+
deps = mypy==0.971
9494
commands = mypy pytest_mypy_plugins_shim {posargs}
9595

9696
[testenv:pyup]
97-
basepython = python3.6
97+
basepython = python3.8
9898
skip_install = True
9999
ignore_errors = True
100100
changedir = {toxinidir}

0 commit comments

Comments
 (0)