diff options
author | Unrud <unrud@outlook.com> | 2020-05-19 07:25:21 +0200 |
---|---|---|
committer | Unrud <unrud@outlook.com> | 2020-05-19 07:25:21 +0200 |
commit | c4925ae7db6704ca440a6bf3bc3195e0262d7722 (patch) | |
tree | cb01b9862588ff7530bbadb9f5c72dbf8e17577c /setup.py | |
parent | Add .gitignore (diff) | |
download | radicaleinfcloud-c4925ae7db6704ca440a6bf3bc3195e0262d7722.tar.gz radicaleinfcloud-c4925ae7db6704ca440a6bf3bc3195e0262d7722.tar.bz2 radicaleinfcloud-c4925ae7db6704ca440a6bf3bc3195e0262d7722.zip |
Update for Radicale 3.0.x
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ import os from setuptools import setup -VERSION = "2.0.0" +VERSION = "3.0.0" os.chdir("radicale_infcloud") web_data = sum(([os.path.join(root, f) for f in files @@ -23,4 +23,4 @@ setup( platforms="Any", packages=["radicale_infcloud"], package_data={"radicale_infcloud": web_data}, - install_requires=["radicale>=2.1.0"]) + install_requires=["radicale>=3.0.0"]) |