Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"httpx>=0.28.1",
"pre-commit>=3.7.1",
"pytest>=8.2.2",
"respx>=0.21.1",
"mypy>=1.15.0",
"pydantic>=2.11.7",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"respx>=0.22.0",
"mypy>=1.19.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.21",
"mkdocs-material>=9.7.1",
"mkdocs-swagger-ui-tag>=0.7.2",
"beautifulsoup4>=4.14.2",
"beautifulsoup4>=4.14.3",
]


Expand Down
23 changes: 7 additions & 16 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# This file was autogenerated by uv via the following command:
# uv pip compile pyproject.toml -o requirements.txt
annotated-types==0.7.0
# via pydantic
anyio==4.9.0
# via httpx
babel==2.17.0
# via mkdocs-material
backrefs==5.9
# via mkdocs-material
beautifulsoup4==4.14.2
beautifulsoup4==4.14.3
# via
# blocket-api (pyproject.toml)
# mkdocs-swagger-ui-tag
Expand Down Expand Up @@ -52,6 +50,8 @@ jinja2==3.1.6
# via
# mkdocs
# mkdocs-material
librt==0.7.7
# via mypy
markdown==3.9
# via
# mkdocs
Expand All @@ -71,13 +71,13 @@ mkdocs==1.6.1
# mkdocs-material
mkdocs-get-deps==0.2.0
# via mkdocs
mkdocs-material==9.6.21
mkdocs-material==9.7.1
# via blocket-api (pyproject.toml)
mkdocs-material-extensions==1.3.1
# via mkdocs-material
mkdocs-swagger-ui-tag==0.7.2
# via blocket-api (pyproject.toml)
mypy==1.16.1
mypy==1.19.1
# via blocket-api (pyproject.toml)
mypy-extensions==1.1.0
# via mypy
Expand All @@ -99,19 +99,15 @@ platformdirs==4.3.8
# virtualenv
pluggy==1.6.0
# via pytest
pre-commit==4.2.0
# via blocket-api (pyproject.toml)
pydantic==2.12.0
pre-commit==4.5.1
# via blocket-api (pyproject.toml)
pydantic-core==2.41.1
# via pydantic
pygments==2.19.2
# via
# mkdocs-material
# pytest
pymdown-extensions==10.16.1
# via mkdocs-material
pytest==8.4.1
pytest==9.0.2
# via blocket-api (pyproject.toml)
python-dateutil==2.9.0.post0
# via ghp-import
Expand All @@ -138,11 +134,6 @@ typing-extensions==4.14.1
# via
# beautifulsoup4
# mypy
# pydantic
# pydantic-core
# typing-inspection
typing-inspection==0.4.2
# via pydantic
urllib3==2.5.0
# via requests
virtualenv==20.31.2
Expand Down
2 changes: 1 addition & 1 deletion scripts/check_all_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_all_exports(init_file: Path) -> set[str]:
if isinstance(target, ast.Name) and target.id == "__all__":
if isinstance(node.value, ast.List):
return {
elt.value
elt.value # type: ignore[misc]
for elt in node.value.elts
if isinstance(elt, ast.Constant)
}
Expand Down
Loading