From 2e8d24a2f21c8b752344ba61222b88238aac901f Mon Sep 17 00:00:00 2001 From: Chris Wilcox Date: Sat, 22 Apr 2023 18:30:43 -0700 Subject: [PATCH] Release 2023.04.23 --- nox/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nox/_version.py b/nox/_version.py index 811e57bc..10b42c6e 100644 --- a/nox/_version.py +++ b/nox/_version.py @@ -37,7 +37,7 @@ class InvalidVersionSpecifier(Exception): def get_nox_version() -> str: """Return the version of the installed Nox package.""" - return metadata.version("nox") # type: ignore[no-untyped-call, no-any-return] + return metadata.version("nox") def _parse_string_constant(node: ast.AST) -> str | None: # pragma: no cover