Skip to content

Commit

Permalink
test(nox): aiohttp extensions disabling on 3.12 no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Nov 18, 2023
1 parent 1793ecd commit 394c28c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""nox config for pytekukko."""

from typing import cast

import nox

nox.options.error_on_external_run = True
Expand All @@ -10,10 +8,6 @@
@nox.session(python=[f"{py}3.{x}" for py in ("", "pypy") for x in range(10, 13)])
def test(session: nox.Session) -> None:
"""Run tests."""
if int(cast(str, session.python).rpartition(".")[2]) >= 12: # noqa: PLR2004
session.env.update(
AIOHTTP_NO_EXTENSIONS="1",
)
session.install(".[examples]", "-r", "requirements/test-requirements.txt")

known_deprecations = [
Expand Down

0 comments on commit 394c28c

Please sign in to comment.