From 965b3c428a0cc5e238a29be35b0490e43e6a9547 Mon Sep 17 00:00:00 2001 From: Dominik George Date: Fri, 23 Oct 2020 16:01:07 +0200 Subject: [PATCH 1/4] Add pingcheck plugin --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 82cd574..e1b3ae1 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Matrix room: [#maubot:maunium.net](https://matrix.to/#/#maubot:maunium.net) * [altalias](https://github.com/maubot/altalias) - A bot that lets users publish alternate aliases in rooms. * [satwcomic](https://github.com/maubot/satwcomic) - A bot to view SatWComics. * [songwhip](https://github.com/maubot/songwhip) - A bot to post Songwhip links. +* [pingcheck](https://edugit.org/nik/maubot-pingcheck) - A bot to ping the echo bot and send rtt to Icinga passive check Open a pull request or join the Matrix room linked above to get your plugin listed here From f2a2c0f2bfe1c16838f2b074b2604a1c5a679ae7 Mon Sep 17 00:00:00 2001 From: William Kray Date: Tue, 15 Dec 2020 15:04:51 -0800 Subject: [PATCH 2/4] include invitebot --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 82cd574..22218e8 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Matrix room: [#maubot:maunium.net](https://matrix.to/#/#maubot:maunium.net) * [altalias](https://github.com/maubot/altalias) - A bot that lets users publish alternate aliases in rooms. * [satwcomic](https://github.com/maubot/satwcomic) - A bot to view SatWComics. * [songwhip](https://github.com/maubot/songwhip) - A bot to post Songwhip links. +* [invite](https://github.com/williamkray/maubot-invite) - A bot to generate invitation tokens from [matrix-registration](https://github.com/ZerataX/matrix-registration) Open a pull request or join the Matrix room linked above to get your plugin listed here From f4d85bae2b4a1a8aa4f01958c612d00acd50093e Mon Sep 17 00:00:00 2001 From: Gerrit Gogel Date: Tue, 29 Dec 2020 11:28:59 +0100 Subject: [PATCH 3/4] add wolframalpha bot to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 22218e8..cf5f26b 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ Matrix room: [#maubot:maunium.net](https://matrix.to/#/#maubot:maunium.net) * [satwcomic](https://github.com/maubot/satwcomic) - A bot to view SatWComics. * [songwhip](https://github.com/maubot/songwhip) - A bot to post Songwhip links. * [invite](https://github.com/williamkray/maubot-invite) - A bot to generate invitation tokens from [matrix-registration](https://github.com/ZerataX/matrix-registration) +* [wolframalpha](https://github.com/ggogel/WolframAlphaMaubot) - A bot that allows requesting information from [WolframAlpha](https://www.wolframalpha.com/). Open a pull request or join the Matrix room linked above to get your plugin listed here From cfa69a89ce8a767c816ec70aee0bf538e023b988 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sat, 12 Dec 2020 14:06:09 +0200 Subject: [PATCH 4/4] Update dependencies and setup.py classifiers --- requirements.txt | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 048e661..97f2f97 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -mautrix==0.8.0.beta10 +mautrix>=0.8,<0.9 aiohttp>=3,<3.7 yarl<1.6 SQLAlchemy>=1,<2 diff --git a/setup.py b/setup.py index ba760e3..5bb3d08 100644 --- a/setup.py +++ b/setup.py @@ -39,9 +39,10 @@ setuptools.setup( install_requires=install_requires, extras_require=extras_require, + python_requires="~=3.7", classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 3 - Beta", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Topic :: Communications :: Chat", "Framework :: AsyncIO",