Skip to content

Commit d60de24

Browse files
committed
feat(Nox): Updated pydantic and graphene versions
1 parent f068c27 commit d60de24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
@session
66
@parametrize(
77
"pydantic",
8-
("1.9", "1.10", "1.7", "1.8"),
8+
("2.0", "2.1", "2.2", "2.3", "2.4"),
99
)
10-
@parametrize("graphene", ("2.1.9", "3"))
10+
@parametrize("graphene", ("2.1.8", "2.1.9", "3.0", "3.1", "3.2", "3.3"))
1111
def tests(session, pydantic, graphene):
1212
if sys.version_info > (3, 10) and pydantic in ("1.7", "1.8"):
1313
return session.skip()
14-
if sys.version_info > (3, 10) and graphene != "3":
14+
if sys.version_info > (3, 10) and graphene <= "3":
1515
# Graphene 2.x doesn't support Python 3.11
1616
return session.skip()
1717
session.install(f"pydantic=={pydantic}")

0 commit comments

Comments
 (0)