Skip to content

Commit 039a232

Browse files
authored
Merge pull request #2416 from Badiboy/master
Version bump and python upgrade
2 parents 9b0db41 + d41e390 commit 039a232

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/setup_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
23+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10']
2424
name: ${{ matrix.python-version }} and tests
2525
steps:
2626
- uses: actions/checkout@v2

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: python
22
python:
3-
- "3.8"
43
- "3.9"
54
- "3.10"
65
- "3.11"
76
- "3.12"
7+
- "3.13"
88
- "pypy3"
99
install: "pip install -r requirements.txt"
1010
script:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
## Getting started
7171

72-
This API is tested with Python 3.8-3.12 and Pypy 3.
72+
This API is tested with Python 3.9-3.13 and Pypy 3.
7373
There are two ways to install the library:
7474

7575
* Installation using pip (a Python package manager):

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
copyright = f'2022-{datetime.now().year}, {author}'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '4.23.0'
25+
release = '4.24.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pyTelegramBotAPI"
7-
version = "4.23.0"
7+
version = "4.24.0"
88
description = "Python Telegram bot api."
99
authors = [{name = "eternnoir", email = "eternnoir@gmail.com"}]
1010
license = {text = "GPL2"}
1111
readme = "README.md"
12-
requires-python = ">=3.8"
12+
requires-python = ">=3.9"
1313
keywords = ["telegram", "bot", "api", "tools"]
1414
classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.8",
1817
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2222
"Environment :: Console",
2323
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)"
2424
]

telebot/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Versions should comply with PEP440.
22
# This line is parsed in setup.py:
3-
__version__ = '4.23.0'
3+
__version__ = '4.24.0'

0 commit comments

Comments
 (0)