chore(ci): upgrade ruff version (#13125)

This commit is contained in:
Aseem Bansal 2025-04-09 11:24:07 +05:30 committed by GitHub
parent ba9df6c4f1
commit 2a75a981ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -73,7 +73,7 @@ dev_requirements = {
*base_requirements,
*mypy_stubs,
"coverage>=5.1",
"ruff==0.9.7",
"ruff==0.11.4",
"mypy==1.10.1",
# pydantic 1.8.2 is incompatible with mypy 0.910.
# See https://github.com/samuelcolvin/pydantic/pull/3175#issuecomment-995382910.

View File

@ -54,7 +54,7 @@ base_dev_requirements = {
"dagster-snowflake >= 0.11.0",
"dagster-snowflake-pandas >= 0.11.0",
"coverage>=5.1",
"ruff==0.9.7",
"ruff==0.11.4",
"mypy>=1.4.0",
# pydantic 1.8.2 is incompatible with mypy 0.910.
# See https://github.com/samuelcolvin/pydantic/pull/3175#issuecomment-995382910.

View File

@ -59,7 +59,7 @@ base_dev_requirements = {
*base_requirements,
*mypy_stubs,
"coverage>=5.1",
"ruff==0.9.7",
"ruff==0.11.4",
"mypy>=1.4.0",
# pydantic 1.8.2 is incompatible with mypy 0.910.
# See https://github.com/samuelcolvin/pydantic/pull/3175#issuecomment-995382910.

View File

@ -56,7 +56,7 @@ dev_requirements = {
*base_requirements,
*mypy_stubs,
"coverage>=5.1",
"ruff==0.9.7",
"ruff==0.11.4",
"mypy>=1.4.0",
# pydantic 1.8.2 is incompatible with mypy 0.910.
# See https://github.com/samuelcolvin/pydantic/pull/3175#issuecomment-995382910.

View File

@ -604,7 +604,7 @@ debug_requirements = {
lint_requirements = {
# This is pinned only to avoid spurious errors in CI.
# We should make an effort to keep it up to date.
"ruff==0.9.7",
"ruff==0.11.4",
"mypy==1.10.1",
}