Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 8870ae6

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

6 files changed

Lines changed: 21 additions & 18 deletions

File tree

.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_linux.yml

Lines changed: 4 additions & 4 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

.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
@@ -40,7 +40,7 @@ license-key = "MIT"
4040
package = "tox_minversions"
4141

4242
[tool.mypy]
43-
python_version = "3.7"
43+
python_version = "3.8"
4444
namespace_packages = true
4545
check_untyped_defs = true
4646
warn_unused_ignores = true

tox.ini

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

3232
[testenv]
3333
setenv =
@@ -52,7 +52,7 @@ commands =
5252
check-wheel-contents dist/
5353

5454
[testenv:lint]
55-
basepython = python3.7
55+
basepython = python3.8
5656
changedir = {toxinidir}
5757
ignore_errors = True
5858
skip_install = True
@@ -82,33 +82,33 @@ deps =
8282
commands = python3 -m flake8_rst_docstrings_sphinx tox_minversions tests --allow-toolbox {posargs}
8383

8484
[testenv:perflint]
85-
basepython = python3.7
85+
basepython = python3.8
8686
changedir = {toxinidir}
8787
ignore_errors = True
8888
skip_install = True
8989
deps = perflint
9090
commands = python3 -m perflint tox_minversions {posargs}
9191

9292
[testenv:mypy]
93-
basepython = python3.7
93+
basepython = python3.8
9494
ignore_errors = True
9595
changedir = {toxinidir}
9696
deps =
97-
mypy==0.942
97+
mypy==0.971
9898
-r{toxinidir}/tests/requirements.txt
9999
types-first
100100
commands = mypy tox_minversions tests {posargs}
101101

102102
[testenv:pyup]
103-
basepython = python3.7
103+
basepython = python3.8
104104
skip_install = True
105105
ignore_errors = True
106106
changedir = {toxinidir}
107107
deps = pyupgrade-directories
108108
commands = pyup_dirs tox_minversions tests --py36-plus --recursive
109109

110110
[testenv:coverage]
111-
basepython = python3.7
111+
basepython = python3.8
112112
skip_install = True
113113
ignore_errors = True
114114
whitelist_externals = /bin/bash

0 commit comments

Comments
 (0)