Skip to content

Commit 442b937

Browse files
committed
Bump version check in pkg_resources
1 parent 7a298d9 commit 442b937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg_resources/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
import sys
2323

24-
if sys.version_info < (3, 8): # noqa: UP036 # Check for unsupported versions
25-
raise RuntimeError("Python 3.8 or later is required")
24+
if sys.version_info < (3, 9): # noqa: UP036 # Check for unsupported versions
25+
raise RuntimeError("Python 3.9 or later is required")
2626

2727
import _imp
2828
import collections

0 commit comments

Comments
 (0)