Skip to content

Commit

Permalink
dependency on async-timeout
Browse files Browse the repository at this point in the history
- fixed typo
- bumped Python dependency from 3.8 to 3.11
- addresses issue #161 adding depency to async-timeout
  • Loading branch information
8go committed May 2, 2024
1 parent e7fa938 commit cbc8cf4
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.6.0
7.6.1
Binary file removed dist/matrix-commander-7.6.0.tar.gz
Binary file not shown.
Binary file removed dist/matrix_commander-7.6.0-py3-none-any.whl
Binary file not shown.
Binary file added dist/matrix_commander-7.6.1-py3-none-any.whl
Binary file not shown.
Binary file added dist/matrix_commander-7.6.1.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions matrix_commander/matrix_commander.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@
HAVE_OPENID = False

# version number
VERSION = "2023-10-16"
VERSIONNR = "7.6.0"
VERSION = "2024-05-02"
VERSIONNR = "7.6.1"
# matrix-commander; for backwards compitability replace _ with -
PROG_WITHOUT_EXT = os.path.splitext(os.path.basename(__file__))[0].replace(
"_", "-"
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ aiohttp
aiofiles>=0.6.0
argparse
asyncio
async-timeout # see Issue 161
datetime
emoji
markdown
Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# https://setuptools.pypa.io/en/latest/userguide/
name = matrix-commander
version = 7.6.0
version = 7.6.1
author = 8go
description = A simple command-line Matrix client
long_description = file: PyPi-Instructions.md, README.md
Expand All @@ -14,9 +14,6 @@ project_urls =
Bug Tracker = https://github.com/8go/matrix-commander/issues
repository = https://github.com/8go/matrix-commander
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Expand All @@ -37,6 +34,7 @@ install_requires =
aiofiles>=0.6.0
argparse
asyncio
async-timeout # see Issue 161
datetime
emoji
markdown
Expand Down

0 comments on commit cbc8cf4

Please sign in to comment.