Skip to content

Commit

Permalink
squishy: big-renovation-wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lethalbit committed Nov 7, 2024
1 parent 269ee52 commit a72df48
Show file tree
Hide file tree
Showing 93 changed files with 4,150 additions and 4,875 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def doc_ver() -> str:
author_email = 'nya@catgirl.link',
description = 'SCSI Multitool and Torii HDL Library',
license = 'BSD-3-Clause',
python_requires = '~=3.10',
python_requires = '~=3.11',
zip_safe = True,
url = 'https://github.com/squishy-scsi/squishy',

Expand Down
10 changes: 4 additions & 6 deletions squishy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@
from sys import version_info

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

try:
from importlib import metadata
__version__ = metadata.version(__package__)
except ImportError:
__version__ = 'unknown' # :nocov:

__all__ = (
__all__ = ()

)

'''\
'''
╭─────────────────────────────────────╮
│ │
│ !!! WARNING !!! │
Expand Down
Loading

0 comments on commit a72df48

Please sign in to comment.