Skip to content

Commit

Permalink
chore: update noxfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon committed Jan 31, 2025
1 parent 3057ea5 commit 845a978
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down Expand Up @@ -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/*")

Expand Down
2 changes: 1 addition & 1 deletion tests/system/test_asyncpg_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async def getconn(
password=password,
db=db,
ip_type="public", # can also be "private" or "psc",
**kwargs
**kwargs,
)
return conn

Expand Down

0 comments on commit 845a978

Please sign in to comment.