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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ repos:
rev: v2.3.1
hooks:
- id: mypy
additional_dependencies: ["openai>=1.0.0", "httpx>=0.27.0"]
additional_dependencies: ["openai>=3.7.0", "httpx2>=2.12.0", "x402>=2.21.0"]
args: [--strict, --config-file=pyproject.toml]
pass_filenames: false
entry: mypy src/x402_openai
entry: mypy src/qntx/openai

ci:
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ format:

# Run the mypy type checker.
typecheck:
uv run mypy src/x402_openai
uv run mypy src/qntx/openai

# Run pytest.
test:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ format: ## Run ruff formatter (auto-fix)
uv run ruff format .

typecheck: ## Run mypy type checker
uv run mypy src/x402_openai
uv run mypy src/qntx/openai

test: ## Run pytest
uv run pytest
Expand Down
Loading