setup.py: Don't pin the patch versions.

This closes: #51.
This commit is contained in:
Damir Jelić 2020-05-21 12:38:48 +02:00
parent 90eed20bef
commit d9a4b91d70

View file

@ -18,25 +18,25 @@ setup(
license="Apache License, Version 2.0", license="Apache License, Version 2.0",
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
"attrs <= 19.3.0", "attrs <= 19.3",
"aiohttp <= 3.6.2", "aiohttp <= 3.6",
"appdirs <= 1.4.3", "appdirs <= 1.4",
"click <= 7.1.1", "click <= 7.1",
"keyring <= 21.2.0", "keyring <= 21.2",
"logbook <= 1.5.3", "logbook <= 1.5",
"peewee <= 3.13.3", "peewee <= 3.13",
"janus <= 0.5.0", "janus <= 0.5",
"cachetools >= 3.0.0" "cachetools >= 3.0"
"prompt_toolkit>2<4", "prompt_toolkit>2<4",
"typing;python_version<'3.5'", "typing;python_version<'3.5'",
"matrix-nio[e2e] >= 0.8.0" "matrix-nio[e2e] <= 0.12"
], ],
extras_require={ extras_require={
"ui": [ "ui": [
"dbus-python <= 1.2.16", "dbus-python <= 1.2",
"PyGObject <= 3.36.0", "PyGObject <= 3.36",
"pydbus <= 0.6.0", "pydbus <= 0.6",
"notify2 <= 0.3.1", "notify2 <= 0.3",
] ]
}, },
entry_points={ entry_points={