Skip to content

Commit 218fa44

Browse files
Updated files with 'repo_helper'.
1 parent 0063d3c commit 218fa44

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-22.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2022']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ permissions:
1818

1919
jobs:
2020
tests:
21-
name: "windows-2019 / Python ${{ matrix.config.python-version }}"
22-
runs-on: "windows-2019"
21+
name: "windows-2022 / Python ${{ matrix.config.python-version }}"
22+
runs-on: "windows-2022"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
2525
USING_COVERAGE: '3.7,3.8,3.9'

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ repos:
6262
- id: rst-inline-touching-normal
6363

6464
- repo: https://github.com/asottile/pyupgrade
65-
rev: v2.12.0
65+
rev: v3.3.0
6666
hooks:
6767
- id: pyupgrade
6868
args:
69-
- --py36-plus
69+
- --py37-plus
7070
- --keep-runtime-typing
7171

7272
- repo: https://github.com/Lucas-C/pre-commit-hooks

doc-source/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
default-values>=0.6.0
2+
docutils<0.22
23
domdf-sphinx-theme>=0.3.0
34
extras-require>=0.5.0
45
html-section>=0.3.0
6+
roman>=4.0
57
seed-intersphinx-mapping>=1.2.2
68
sphinx<3.4.0,>=3.0.3
79
sphinx-copybutton>=0.2.12

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,12 @@ deps =
9898
flake8-sphinx-links>=0.0.4
9999
flake8-strftime>=0.1.1
100100
flake8-typing-imports>=1.10.0
101+
git+https://github.com/domdfcoding/restructuredtext-lint.git@fix-deprecations
101102
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
102103
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
103104
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
104105
git+https://github.com/python-formate/flake8-missing-annotations.git
105-
pydocstyle>=6.0.0
106+
git+https://github.com/domdfcoding/pydocstyle.git@stub-functions
106107
pygments>=2.7.1
107108
importlib_metadata<4.5.0; python_version<'3.8'
108109
commands = python3 -m flake8_rst_docstrings_sphinx si_unit_pandas tests --allow-toolbox {posargs}
@@ -120,7 +121,7 @@ basepython = python3.7
120121
ignore_errors = True
121122
changedir = {toxinidir}
122123
deps =
123-
mypy==0.971
124+
mypy==1.17.1
124125
-r{toxinidir}/tests/requirements.txt
125126
-r{toxinidir}/stubs.txt
126127
commands = mypy si_unit_pandas tests {posargs}

0 commit comments

Comments
 (0)