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