Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump python dependencies #924

Merged
merged 3 commits into from
Dec 3, 2024
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"jest": "cd packages/pyright-internal && jest",
"update-python-deps": "uv sync --upgrade",
"typecheck-python": "uv run --no-sync basedpyright",
"ruff-check": "uv run --no-sync ruff check --no-cache && uv run --no-sync ruff format --n--check --diff",
"ruff-fix": "uv run --no-sync ruff check --no-cache --fix && uv run --no-sync ruff format --fix",
"ruff-check": "uv run --no-sync ruff check --no-cache && uv run --no-sync ruff format --check --diff",
"ruff-fix": "uv run --no-sync ruff check --no-cache --fix && uv run --no-sync ruff format",
"pylint": "uv run --no-sync pylint basedpyright build pdm_build.py",
"test-python": "uv run --no-sync pytest tests",
"generate-docstubs": "uv run --no-sync build/generate_docstubs.py",
Expand Down
2 changes: 1 addition & 1 deletion pw.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[main]
requirements = ["uv==0.5.4"]
requirements = ["uv==0.5.5"]
hash = "45210da832f9626829457a65e9e7c4d0"
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ ignore = [
"C901", # max-complexity
"DOC402", # docstring-missing-yields
"DOC201", # docstring-missing-returns
"TC006", # runtime-cast-value (quoted types look disgusting)
]

[tool.ruff.lint.pycodestyle]
Expand Down
Loading
Loading