Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
and Fix Build
  • Loading branch information
SpEcHiDe committed Apr 24, 2024
1 parent 5529637 commit afd7551
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pyrotgfork"
dynamic = ["version"]
description = "Fork of Pyrogram. Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots"
authors = [{ name = "SpEcHIDe", email = "[email protected]" }]
dependencies = ["pyaes==1.6.1", "pysocks==1.7.1"]
dependencies = ["pyaes<=1.6.1", "pysocks<=1.7.1"]
readme = "README.md"
license = "LGPL-3.0-or-later"
requires-python = ">=3.7"
Expand Down Expand Up @@ -79,23 +79,23 @@ packages = ["pyrogram"]

[project.optional-dependencies]
dev = [
"keyring==25.1.0",
"hatch==1.7.0",
"pytest==7.4.3",
"pytest-asyncio==0.21.1",
"pytest-cov==4.1.0",
"twine==4.0.2"
"keyring<=25.1.0",
"hatch<=1.7.0",
"pytest<=7.4.3",
"pytest-asyncio<=0.21.1",
"pytest-cov<=4.1.0",
"twine<=4.0.2"
]

docs = [
"Sphinx==7.2.6",
"furo==2023.9.10",
"sphinx-autobuild==2021.3.14",
"sphinx-copybutton==0.5.2",
"pygments==2.17.2"
"Sphinx<=7.2.6",
"furo<=2023.9.10",
"sphinx-autobuild<=2021.3.14",
"sphinx-copybutton<=0.5.2",
"pygments<=2.17.2"
]

fast = [
"TgCrypto==1.2.5",
"uvloop>=0.19.0"
"uvloop>0.18.0,<=0.19.0"
]
2 changes: 1 addition & 1 deletion pyrogram/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.

__version__ = "2.1.24"
__version__ = "2.1.25"
__license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
__copyright__ = "Copyright (C) 2017-present Dan <https://github.com/delivrance>"

Expand Down
1 change: 1 addition & 0 deletions pyrogram/types/user_and_chats/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ def __init__(
linked_chat: "types.Chat" = None,
send_as_chat: "types.Chat" = None,
personal_chat: "types.Chat" = None,
personal_chat_message: "types.Message" = None,
available_reactions: Optional["types.ChatReactions"] = None,
accent_color: "types.ChatColor" = None,
profile_color: "types.ChatColor" = None,
Expand Down

0 comments on commit afd7551

Please sign in to comment.