python-zulip-api: Upgrade versions (0.3.2 -> 0.3.3).
We now have "universal" wheel distributions. Universal wheels support both Python 2 and Python 3.
This commit is contained in:
parent
ad1ff0c7bf
commit
6e798f317f
|
@ -42,7 +42,7 @@ import logging
|
||||||
import six
|
import six
|
||||||
from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, Text, Tuple, Union
|
from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, Text, Tuple, Union
|
||||||
|
|
||||||
__version__ = "0.3.2"
|
__version__ = "0.3.3"
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ generate_manifest.main()
|
||||||
# We should be installable with either setuptools or distutils.
|
# We should be installable with either setuptools or distutils.
|
||||||
package_info = dict(
|
package_info = dict(
|
||||||
name='zulip_bots',
|
name='zulip_bots',
|
||||||
version='0.3.2',
|
version='0.3.3',
|
||||||
description='Zulip\'s Bot framework',
|
description='Zulip\'s Bot framework',
|
||||||
author='Zulip Open Source Project',
|
author='Zulip Open Source Project',
|
||||||
author_email='zulip-devel@googlegroups.com',
|
author_email='zulip-devel@googlegroups.com',
|
||||||
|
@ -35,7 +35,7 @@ package_info = dict(
|
||||||
|
|
||||||
setuptools_info = dict(
|
setuptools_info = dict(
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'zulip>=0.3.1',
|
'zulip>=0.3.3',
|
||||||
'mock>=2.0.0',
|
'mock>=2.0.0',
|
||||||
'html2text', # for bots/define
|
'html2text', # for bots/define
|
||||||
],
|
],
|
||||||
|
@ -65,7 +65,7 @@ except ImportError:
|
||||||
print("{name} is not installed.".format(name=module_name), file=sys.stderr)
|
print("{name} is not installed.".format(name=module_name), file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
check_dependency_manually('zulip', '0.3.1')
|
check_dependency_manually('zulip', '0.3.3')
|
||||||
check_dependency_manually('mock', '2.0.0')
|
check_dependency_manually('mock', '2.0.0')
|
||||||
check_dependency_manually('html2text')
|
check_dependency_manually('html2text')
|
||||||
check_dependency_manually('PyDictionary')
|
check_dependency_manually('PyDictionary')
|
||||||
|
|
|
@ -8,7 +8,7 @@ import sys
|
||||||
# We should be installable with either setuptools or distutils.
|
# We should be installable with either setuptools or distutils.
|
||||||
package_info = dict(
|
package_info = dict(
|
||||||
name='zulip_botserver',
|
name='zulip_botserver',
|
||||||
version='0.3.2',
|
version='0.3.3',
|
||||||
description='Zulip\'s Flask server for running bots',
|
description='Zulip\'s Flask server for running bots',
|
||||||
author='Zulip Open Source Project',
|
author='Zulip Open Source Project',
|
||||||
author_email='zulip-devel@googlegroups.com',
|
author_email='zulip-devel@googlegroups.com',
|
||||||
|
@ -30,8 +30,8 @@ package_info = dict(
|
||||||
|
|
||||||
setuptools_info = dict(
|
setuptools_info = dict(
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'zulip>=0.3.1',
|
'zulip>=0.3.3',
|
||||||
'zulip_bots>=0.3.1',
|
'zulip_bots>=0.3.3',
|
||||||
'flask>=0.12.2',
|
'flask>=0.12.2',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
@ -60,8 +60,8 @@ except ImportError:
|
||||||
print("{name} is not installed.".format(name=module_name), file=sys.stderr)
|
print("{name} is not installed.".format(name=module_name), file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
check_dependency_manually('zulip', '0.3.1')
|
check_dependency_manually('zulip', '0.3.3')
|
||||||
check_dependency_manually('zulip_bots', '0.3.1')
|
check_dependency_manually('zulip_bots', '0.3.3')
|
||||||
check_dependency_manually('flask', '0.12.2')
|
check_dependency_manually('flask', '0.12.2')
|
||||||
|
|
||||||
package_info['packages'] = ['zulip_botserver']
|
package_info['packages'] = ['zulip_botserver']
|
||||||
|
|
Loading…
Reference in a new issue