Compare commits

..

2 Commits
v0.7 ... v0.8

Author SHA1 Message Date
b21f7044eb Bump Python version to >=3.8 and version to 0.8 2023-06-13 10:55:44 +02:00
0cdd887e63 Dump ujson to ~=5.8.0 2023-06-13 11:53:56 +03:00
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
__name__ = "libbot"
__version__ = "0.7"
__version__ = "0.8"
__license__ = "GPL3"
__author__ = "Profitroll"

View File

@@ -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",
@@ -28,7 +28,7 @@ dependencies = ["aiofiles~=23.1.0"]
[project.optional-dependencies]
pycord = ["py-cord>=2.0.0"]
pyrogram = ["pyrogram>=2.0.0"]
speed = ["ujson==5.7.0"]
speed = ["ujson~=5.8.0"]
[project.urls]
Source = "https://git.end-play.xyz/profitroll/LibBotUniversal"