Skip to content
Open
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
40 changes: 20 additions & 20 deletions packages/python-sdk/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pytest = "^9.0.3"
python-dotenv = "^1.0.0"
pytest-dotenv = "^0.5.2"
pytest-xdist = "^3.6.1"
ruff = "^0.15.0"
ruff = "^0.16.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Pin Ruff's lint rules before bumping to 0.16

In the PR lint workflow I checked, .github/workflows/lint.yml installs these dev dependencies and then pnpm run lint runs poetry run ruff check . for packages/python-sdk; because this config has no explicit tool.ruff.lint.select, Ruff 0.16 applies its expanded default rule set (the v0.16 migration notes and default rules include I001). The current package already violates I001 in e2b_desktop/main.py, example.py, and tests, so installing this bump makes the existing lint job fail unless the new violations are fixed or the previous defaults are pinned.

Useful? React with 👍 / 👎.


[build-system]
requires = ["poetry-core"]
Expand Down
40 changes: 20 additions & 20 deletions template/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ e2b = "^2.20.3"

[tool.poetry.group.dev.dependencies]
dotenv = "^0.9.9"
ruff = "^0.15.0"
ruff = "^0.16.0"
Loading