Skip to content

Commit f7fb9c5

Browse files
authored
Merge pull request eternnoir#2546 from Badiboy/master
Bump version, python and pypy version
2 parents 1b949cc + 4d8536b commit f7fb9c5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10']
23+
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11']
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.9"
43
- "3.10"
54
- "3.11"
65
- "3.12"
76
- "3.13"
7+
- "3.14"
88
- "pypy3"
99
install: "pip install -r requirements.txt"
1010
script:

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.29.1'
25+
release = '4.30.0'
2626

2727

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

pyproject.toml

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

55
[project]
66
name = "pyTelegramBotAPI"
7-
version = "4.29.1"
7+
version = "4.30.0"
88
description = "Python Telegram bot API."
99
authors = [{name = "eternnoir", email = "eternnoir@gmail.com"}]
1010
license = {text = "GPL2"}
@@ -14,11 +14,11 @@ keywords = ["telegram", "bot", "api", "tools"]
1414
classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
2019
"Programming Language :: Python :: 3.12",
2120
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
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.29.1'
3+
__version__ = '4.30.0'

0 commit comments

Comments
 (0)