Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ v9.9.9 (unreleased)
- refactor: remove webtest dependency (#1769)
- feat: support editable installed entrypoint plugins (#1766)
- fix: XMPP backend referencing invalid method (#1768)
- fix: XMPP support on python 3.10 (#1771)


v6.2.1 (2026-06-06)
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def read(fname, encoding="ascii"):


if __name__ == "__main__":

VERSION = read_version()

args = set(sys.argv)
Expand Down Expand Up @@ -124,7 +123,12 @@ def read(fname, encoding="ascii"):
# held at 13.15: v20+ is fully async; backend would need a rewrite
"python-telegram-bot==13.15",
],
"XMPP": [
"XMPP:python_version < '3.11'": [
"slixmpp==1.12.0",
"pyasn1==0.6.3",
"pyasn1-modules==0.4.2",
],
"XMPP:python_version >= '3.11'": [
"slixmpp==1.15.0",
"pyasn1==0.6.3",
"pyasn1-modules==0.4.2",
Expand Down
Loading