From 5f75d9e8f129ec1e82b470cbc831158faf188fe3 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Sun, 10 Apr 2022 22:15:32 -0400 Subject: [PATCH] [+] Extend support for Python 3.7 3.8 --- hypy_utils/__init__.py | 5 ++++- hypy_utils/__main__.py | 2 ++ setup.py | 2 ++ 3 files changed, 8 insertions(+), 1 deletion(-) 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", ],