From 4a591cee8ad3b8c212f5e16408249227ab7d4095 Mon Sep 17 00:00:00 2001 From: Jahongir Qurbonov <109198731+Jahongir-Qurbonov@users.noreply.github.com> Date: Sat, 19 Oct 2024 18:55:33 +0500 Subject: [PATCH] Bump required Python version (#4491) --- .gitignore | 1 + client/pyproject.toml | 2 +- generator/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 62bd6e89..930ca05c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ __pycache__/ .pytest_cache/ .mypy_cache/ .ruff_cache/ +.venv/ dist/ dist-doc/ build/ diff --git a/client/pyproject.toml b/client/pyproject.toml index a61df2e3..edee4903 100644 --- a/client/pyproject.toml +++ b/client/pyproject.toml @@ -7,7 +7,7 @@ authors = [ ] readme = "README.md" license = {file = "LICENSE"} -requires-python = ">=3.8" +requires-python = ">=3.9" keywords = ["telegram", "chat", "messaging", "mtproto", "telethon"] classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/generator/pyproject.toml b/generator/pyproject.toml index ec85efaa..4c564b9f 100644 --- a/generator/pyproject.toml +++ b/generator/pyproject.toml @@ -7,7 +7,7 @@ authors = [ ] readme = "README.md" license = {file = "LICENSE"} -requires-python = ">=3.8" +requires-python = ">=3.9" keywords = ["telegram", "parser", "codegen", "telethon"] classifiers = [ "Development Status :: 5 - Production/Stable",