diff --git a/hypy_utils/__init__.py b/hypy_utils/__init__.py index ed2519a..3191493 100644 --- a/hypy_utils/__init__.py +++ b/hypy_utils/__init__.py @@ -1,4 +1,7 @@ -__version__ = "1.0.5" +from __future__ import annotations + + +__version__ = "1.0.6" import dataclasses import hashlib diff --git a/hypy_utils/__main__.py b/hypy_utils/__main__.py index cc7a79e..b6651b4 100644 --- a/hypy_utils/__main__.py +++ b/hypy_utils/__main__.py @@ -1,3 +1,5 @@ +from __future__ import annotations + def main(): print('🐱') diff --git a/setup.py b/setup.py index ebedb83..187f344 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,8 @@ setup( classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", ],