Skip to content

Commit

Permalink
squishy: bumped the version check in the squishy root package __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
lethalbit committed Feb 18, 2024
1 parent 33ccb9f commit 418ae16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions squishy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from sys import version_info

# Bounce out if python is too old
if version_info < (3, 9):
raise RuntimeError('Python version 3.9 or newer is required to use Squishy')
if version_info < (3, 10):
raise RuntimeError('Python version 3.10 or newer is required to use Squishy')

try:
from importlib import metadata
Expand Down

0 comments on commit 418ae16

Please sign in to comment.