From 845a97835900d51501fa43c6918a8a6fa0cb2dbf Mon Sep 17 00:00:00 2001 From: jackwotherspoon Date: Fri, 31 Jan 2025 01:31:13 +0000 Subject: [PATCH] chore: update noxfile.py --- noxfile.py | 4 ++-- tests/system/test_asyncpg_connection.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index de1b9b81..e54fd398 100644 --- a/noxfile.py +++ b/noxfile.py @@ -23,7 +23,7 @@ BLACK_VERSION = "black==24.10.0" ISORT_VERSION = "isort==5.13.2" -LINT_PATHS = ["google", "tests", "noxfile.py", "setup.py"] +LINT_PATHS = ["google", "tests", "noxfile.py"] TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"] @@ -71,7 +71,7 @@ def lint(session): "--non-interactive", "--show-traceback", ) - # verify that setup.py is valid + # verify that pyproject.toml is valid session.run("python", "-m", "build", "--sdist") session.run("twine", "check", "--strict", "dist/*") diff --git a/tests/system/test_asyncpg_connection.py b/tests/system/test_asyncpg_connection.py index eec9662e..8de14d57 100644 --- a/tests/system/test_asyncpg_connection.py +++ b/tests/system/test_asyncpg_connection.py @@ -140,7 +140,7 @@ async def getconn( password=password, db=db, ip_type="public", # can also be "private" or "psc", - **kwargs + **kwargs, ) return conn