Skip to content

Commit 0ebf5a4

Browse files
authoredAug 16, 2023
Lint: Update outdated package dependencies & reformat files (python#3291)
* Update `sphinx-lint` package dependency version number → 0.6.8 This new release includes the changes from https://github.com/sphinx-contrib/sphinx-lint/pull/56/files, which should address python#3028. For details about `sphinx-lint` release 0.6.8, see https://github.com/sphinx-contrib/sphinx-lint/releases/tag/v0.6.8. * Update other outdated dependencies Run the following: ``` python -m pip install pre-commit pre-commit autoupdate pre-commit run --all-files ```
1 parent 6adff45 commit 0ebf5a4

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed
 

‎.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343
name: "Check YAML"
4444

4545
- repo: https://github.com/psf/black
46-
rev: 22.12.0
46+
rev: 23.7.0
4747
hooks:
4848
- id: black
4949
name: "Format with Black"
@@ -61,13 +61,13 @@ repos:
6161
files: 'pep_sphinx_extensions/tests/.*'
6262

6363
- repo: https://github.com/tox-dev/tox-ini-fmt
64-
rev: 0.6.1
64+
rev: 1.3.1
6565
hooks:
6666
- id: tox-ini-fmt
6767
name: "Format tox.ini"
6868

6969
- repo: https://github.com/sphinx-contrib/sphinx-lint
70-
rev: v0.6.7
70+
rev: v0.6.8
7171
hooks:
7272
- id: sphinx-lint
7373
name: "Sphinx lint"
@@ -92,7 +92,7 @@ repos:
9292

9393
# Manual codespell check
9494
- repo: https://github.com/codespell-project/codespell
95-
rev: v2.2.2
95+
rev: v2.2.5
9696
hooks:
9797
- id: codespell
9898
name: "Check for common misspellings in text files"

‎pep_sphinx_extensions/tests/pep_zero_generator/test_parser.py

-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ def test_parse_authors(test_input, expected):
8787

8888

8989
def test_parse_authors_invalid():
90-
9190
pep = parser.PEP(Path("pep-0008.txt"))
9291

9392
with pytest.raises(PEPError, match="no authors found"):

‎tox.ini

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[tox]
2-
envlist =
2+
requires =
3+
tox>=4.2
4+
env_list =
35
py{312, 311, 310, 39}
4-
skipsdist = true
6+
no_package = true
57

68
[testenv]
7-
passenv =
8-
FORCE_COLOR
99
deps =
1010
-rrequirements.txt
11+
pass_env =
12+
FORCE_COLOR
1113
commands =
1214
python -bb -X dev -W error -m pytest {posargs}

0 commit comments

Comments
 (0)
Please sign in to comment.