diff --git a/disspy/__init__.py b/disspy/__init__.py index a7cb758..7a75404 100644 --- a/disspy/__init__.py +++ b/disspy/__init__.py @@ -92,7 +92,7 @@ def _all_generator(alls: list) -> tuple: # Info about package -__version__ = "0.6.3.1.1" +__version__ = "0.7" __pkgname__ = "disspy" __description__ = "Dispy - package for creating bots in discord written in Python" __github__ = "https://github.com/itttgg/dispy" diff --git a/setup.py b/setup.py index 9703394..a40fa3f 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ colorama""".replace(' ', '').split("\n") -__version__ = "0.6.3.1.1" +__version__ = "0.7" setup( name="disspy", @@ -47,7 +47,10 @@ url="https://github.com/itttgg/dispy", packages=['disspy'], classifiers = [ - "Programming Language :: Python :: 3" + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], zip_safe=False, python_requires=">=3.8",