setup.py: Pin our versions.

This commit is contained in:
Damir Jelić 2020-04-24 11:53:41 +02:00
parent e74a0b92ee
commit 497ca67d3d

View file

@ -18,14 +18,14 @@ setup(
license="Apache License, Version 2.0", license="Apache License, Version 2.0",
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
"attrs", "attrs <= 19.3.0",
"aiohttp", "aiohttp <= 3.6.2",
"appdirs", "appdirs <= 1.4.3",
"click", "click <= 7.1.1",
"keyring", "keyring <= 21.2.0",
"logbook", "logbook <= 1.5.3",
"peewee", "peewee <= 3.1.13",
"janus", "janus <= 0.4.0",
"cachetools >= 3.0.0" "cachetools >= 3.0.0"
"prompt_toolkit>2<4", "prompt_toolkit>2<4",
"typing;python_version<'3.5'", "typing;python_version<'3.5'",
@ -33,10 +33,10 @@ setup(
], ],
extras_require={ extras_require={
"ui": [ "ui": [
"dbus-python", "dbus-python <= 1.2.16",
"PyGObject", "PyGObject <= 3.36.0",
"pydbus", "pydbus <= 0.6.0",
"notify2", "notify2 <= 0.3.1",
] ]
}, },
entry_points={ entry_points={