Skip to content

Commit 5a88587

Browse files
Updated files with 'repo_helper'. (#56)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 096142c commit 5a88587

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: steps.changes.outputs.code == 'true'
3636
uses: "actions/setup-python@v2"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: steps.changes.outputs.code == 'true'
4141
uses: "actions/setup-python@v2"
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: 2 additions & 2 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-rc.1,pypy-3.6,pypy-3.7,pypy-3.8'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.2,pypy-3.6,pypy-3.7,pypy-3.8'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,7 +33,7 @@ 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.0-rc.2", 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}

.github/workflows/python_ci_linux.yml

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

2828
strategy:
2929
fail-fast: False
@@ -34,7 +34,7 @@ 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-rc.1", testenvs: "py311-dev,build", experimental: True}
37+
- {python-version: "3.11.0-rc.2", 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}

.github/workflows/python_ci_macos.yml

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

2727
strategy:
2828
fail-fast: False
@@ -33,7 +33,7 @@ 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.0-rc.2", 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

.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
@@ -127,7 +127,7 @@ autodoc_exclude_members = [
127127
]
128128

129129
[tool.mypy]
130-
python_version = "3.6"
130+
python_version = "3.8"
131131
namespace_packages = true
132132
check_untyped_defs = true
133133
warn_unused_ignores = true

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ requires =
3838
[envlists]
3939
test = py36, py37, py38, py39, py310, py311-dev, pypy36, pypy37, pypy38
4040
qa = mypy, lint
41-
cov = py36, coverage
41+
cov = py38, coverage
4242

4343
[testenv:docs]
4444
setenv = SHOW_TODOS = 1
@@ -61,7 +61,7 @@ commands =
6161
check-wheel-contents dist/
6262

6363
[testenv:lint]
64-
basepython = python3.6
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 seed_intersphinx_mapping tests --allow-toolbox {posargs}
9292

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

101101
[testenv:mypy]
102-
basepython = python3.6
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
-r{toxinidir}/stubs.txt
109109
commands = mypy seed_intersphinx_mapping tests {posargs}
110110

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

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

0 commit comments

Comments
 (0)