Skip to content

Commit 559ccd9

Browse files
authored
Update constraints. (#25)
1 parent 45d0322 commit 559ccd9

File tree

4 files changed

+42
-43
lines changed

4 files changed

+42
-43
lines changed

constraints/default.txt

Lines changed: 35 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,68 @@
1-
alabaster==0.7.12
2-
attrs==22.2.0
1+
alabaster==0.7.13
32
autodoc-pydantic==1.8.0
4-
Babel==2.11.0
5-
beautifulsoup4==4.11.1
6-
black==22.12.0
7-
bleach==5.0.1
8-
build==0.9.0
3+
Babel==2.12.1
4+
beautifulsoup4==4.12.2
5+
black==23.3.0
6+
bleach==6.0.0
7+
build==0.10.0
98
certifi==2022.12.7
10-
charset-normalizer==2.1.1
9+
charset-normalizer==3.1.0
1110
click==8.1.3
1211
colorama==0.4.6
1312
commonmark==0.9.1
14-
coverage==7.0.3
13+
coverage==7.2.3
1514
docutils==0.19
16-
exceptiongroup==1.1.0
17-
furo==2022.12.7
15+
furo==2023.3.27
1816
idna==3.4
1917
imagesize==1.4.1
20-
importlib-metadata==6.0.0
21-
iniconfig==1.1.1
22-
isort==5.11.4
18+
importlib-metadata==6.3.0
19+
iniconfig==2.0.0
20+
isort==5.12.0
2321
jaraco.classes==3.2.3
2422
Jinja2==3.1.2
2523
keyring==23.13.1
2624
livereload==2.6.3
27-
MarkupSafe==2.1.1
28-
more-itertools==9.0.0
29-
mypy==0.991
30-
mypy-extensions==0.4.3
31-
packaging==22.0
32-
pathspec==0.10.3
33-
pep517==0.13.0
34-
pkginfo==1.9.3
35-
platformdirs==2.6.2
25+
MarkupSafe==2.1.2
26+
more-itertools==9.1.0
27+
mypy==1.2.0
28+
mypy-extensions==1.0.0
29+
packaging==23.0
30+
pathspec==0.11.1
31+
pkginfo==1.9.6
32+
platformdirs==3.2.0
3633
pluggy==1.0.0
37-
pydantic==1.10.4
38-
Pygments==2.14.0
39-
pytest==7.2.0
34+
pydantic==1.10.7
35+
Pygments==2.15.0
36+
pyproject_hooks==1.0.0
37+
pytest==7.3.0
4038
pytest-cov==4.0.0
41-
pytz==2022.7
4239
readme-renderer==37.3
43-
requests==2.28.1
40+
requests==2.28.2
4441
requests-toolbelt==0.10.1
4542
rfc3986==2.0.0
4643
rich==12.6.0
47-
ruff==0.0.209
44+
ruff==0.0.261
4845
setuptools-scm==7.1.0
4946
shellingham==1.5.0.post1
5047
six==1.16.0
5148
snowballstemmer==2.2.0
52-
soupsieve==2.3.2.post1
53-
Sphinx==6.0.0
49+
soupsieve==2.4
50+
Sphinx==6.1.3
5451
sphinx-autobuild==2021.3.14
5552
sphinx-basic-ng==1.0.0b1
5653
sphinx-click==4.4.0
57-
sphinxcontrib-applehelp==1.0.2
54+
sphinxcontrib-applehelp==1.0.4
5855
sphinxcontrib-devhelp==1.0.2
59-
sphinxcontrib-htmlhelp==2.0.0
56+
sphinxcontrib-htmlhelp==2.0.1
6057
sphinxcontrib-jsmath==1.0.1
6158
sphinxcontrib-qthelp==1.0.3
6259
sphinxcontrib-serializinghtml==1.1.5
63-
toml-sort==0.22.1
64-
tomli==2.0.1
65-
tomlkit==0.11.6
60+
toml-sort==0.23.0
61+
tomlkit==0.11.7
6662
tornado==6.2
6763
twine==4.0.2
6864
typer==0.7.0
69-
typing_extensions==4.4.0
70-
urllib3==1.26.13
65+
typing_extensions==4.5.0
66+
urllib3==1.26.15
7167
webencodings==0.5.1
72-
zipp==3.11.0
68+
zipp==3.15.0

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,13 @@ extend-ignore = [
9191
"D413",
9292
]
9393
fix = true
94-
per-file-ignores = {"tests/*" = ["S101"]}
9594
select = ["ALL"]
9695
src = ["src"]
97-
target-version = "py38"
96+
97+
[tool.ruff.per-file-ignores]
98+
"docs/conf.py" = ["INP001"]
99+
"src/\\{\\{ module_name \\}\\}/__init__.py" = ["N999"]
100+
"tests/*" = ["S101"]
98101

99102
[tool.setuptools.dynamic]
100103
dependencies = {file = ["requirements.txt"]}

tests/cli_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def test_app() -> None:
1010
"""Tests for cli."""
1111
result = runner.invoke(app)
1212
assert result.exit_code == 0
13-
assert result.output == ""
13+
assert not result.output

tests/cli_test.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ def test_app() -> None:
1010
"""Tests for cli."""
1111
result = runner.invoke(app)
1212
assert result.exit_code == 0
13-
assert result.output == ""
13+
assert not result.output

0 commit comments

Comments
 (0)