Skip to content

Commit 597c8fc

Browse files
github-renovate-self-hostedrenovate-botarththebird
authored
chore(deps): update dependency ruff to v0.10.0 (#282)
Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com> Co-authored-by: Arthur Loiselle <arthur.loiselle@dialogue.co>
1 parent cd9d496 commit 597c8fc

3 files changed

Lines changed: 22 additions & 22 deletions

File tree

poetry.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ psycopg2 = { version = "2.9.10", extras = ["binary"] }
6262
pytest = "8.3.5"
6363
pytest-asyncio = "0.25.3"
6464
pytest-cov = "6.0.0"
65-
ruff = "0.9.10"
65+
ruff = "0.10.0"
6666
tox = "4.24.2"
6767

6868
[tool.poetry.extras]

tests/test_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,6 @@ def test_setup_with_async_default_sqlalchemy_url(async_sqlalchemy_url):
153153
def test_get_engine_keys(env_vars, expected_keys):
154154
from fastapi_sqla.base import _get_engine_keys
155155

156-
env_vars = {var: "test" for var in env_vars}
156+
env_vars = dict.fromkeys(env_vars, "test")
157157
with patch.dict("os.environ", values=env_vars, clear=True):
158158
assert _get_engine_keys() == expected_keys

0 commit comments

Comments
 (0)