Skip to content

Commit 5116a62

Browse files
committed
fix(spelling): PYTHON_VERSIONS
1 parent 8d82f29 commit 5116a62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
nox.needs_version = ">=2022.1.7"
66
nox.options.sessions = ["lint", "tests", "tests_packaging"]
77

8-
PYTHON_VERISONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8"]
8+
PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8"]
99

1010
if os.environ.get("CI", None):
1111
nox.options.error_on_missing_interpreters = True
@@ -20,7 +20,7 @@ def lint(session: nox.Session) -> None:
2020
session.run("pre-commit", "run", "-a")
2121

2222

23-
@nox.session(python=PYTHON_VERISONS)
23+
@nox.session(python=PYTHON_VERSIONS)
2424
def tests(session: nox.Session) -> None:
2525
"""
2626
Run the tests (requires a compiler).

0 commit comments

Comments
 (0)