From d41e3904b9ba9b154e0a885ff7e13be33dc3860e Mon Sep 17 00:00:00 2001 From: Badiboy Date: Fri, 15 Nov 2024 18:26:39 +0300 Subject: [PATCH] Version bump and python upgrade --- .github/workflows/setup_python.yml | 2 +- .travis.yml | 2 +- README.md | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 6 +++--- telebot/version.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/setup_python.yml b/.github/workflows/setup_python.yml index 670251511..603515ddc 100644 --- a/.github/workflows/setup_python.yml +++ b/.github/workflows/setup_python.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10'] + python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10'] name: ${{ matrix.python-version }} and tests steps: - uses: actions/checkout@v2 diff --git a/.travis.yml b/.travis.yml index 1fe9399d6..cc0a0c62e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ language: python python: - - "3.8" - "3.9" - "3.10" - "3.11" - "3.12" + - "3.13" - "pypy3" install: "pip install -r requirements.txt" script: diff --git a/README.md b/README.md index 43676d2d1..97d55930d 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ ## Getting started -This API is tested with Python 3.8-3.12 and Pypy 3. +This API is tested with Python 3.9-3.13 and Pypy 3. There are two ways to install the library: * Installation using pip (a Python package manager): diff --git a/docs/source/conf.py b/docs/source/conf.py index 87d25810f..b45dfb263 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ copyright = f'2022-{datetime.now().year}, {author}' # The full version, including alpha/beta/rc tags -release = '4.23.0' +release = '4.24.0' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 07f2ce727..610ced195 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,21 +4,21 @@ build-backend = "hatchling.build" [project] name = "pyTelegramBotAPI" -version = "4.23.0" +version = "4.24.0" description = "Python Telegram bot api." authors = [{name = "eternnoir", email = "eternnoir@gmail.com"}] license = {text = "GPL2"} readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" keywords = ["telegram", "bot", "api", "tools"] classifiers = [ "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Environment :: Console", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)" ] diff --git a/telebot/version.py b/telebot/version.py index bf02d6515..bde2003e4 100644 --- a/telebot/version.py +++ b/telebot/version.py @@ -1,3 +1,3 @@ # Versions should comply with PEP440. # This line is parsed in setup.py: -__version__ = '4.23.0' +__version__ = '4.24.0'