From b21f7044ebd818b88b582d383cf242249c81d45e Mon Sep 17 00:00:00 2001 From: profitroll Date: Tue, 13 Jun 2023 10:55:44 +0200 Subject: [PATCH] Bump Python version to >=3.8 and version to 0.8 --- libbot/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libbot/__init__.py b/libbot/__init__.py index 8aaf3f5..5dd60cc 100644 --- a/libbot/__init__.py +++ b/libbot/__init__.py @@ -1,5 +1,5 @@ __name__ = "libbot" -__version__ = "0.7" +__version__ = "0.8" __license__ = "GPL3" __author__ = "Profitroll" diff --git a/pyproject.toml b/pyproject.toml index 1a21f8b..0f879f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta" [project] name = "libbot" -version = "0.7" +version = "0.8" authors = [{ name = "Profitroll" }] description = "Universal bot library with functions needed for basic Discord/Telegram bot development." readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" license = { text = "GPL3" } classifiers = [ "Development Status :: 3 - Alpha",