Skip to content

Commit

Permalink
Bump version check in pkg_resources
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Oct 30, 2024
1 parent 3e3d16d commit 1e2016a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg_resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

import sys

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

import _imp
import collections
Expand Down

0 comments on commit 1e2016a

Please sign in to comment.