File tree 3 files changed +13
-7
lines changed
3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Maintainer: Michal Krenek (Mikos) <m.krenek@gmail.com>
2
2
pkgname=hangupsbot
3
- pkgver=1.7.0
3
+ pkgver=1.7.1
4
4
pkgrel=1
5
5
pkgdesc=" Bot for Google Hangouts"
6
6
arch=(' any' )
Original file line number Diff line number Diff line change 1
- __version__ = "1.7.0 "
1
+ __version__ = "1.7.1 "
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
+ import sys
4
+
3
5
from setuptools import setup
4
6
from hangupsbot .version import __version__
5
7
8
+ install_requires = [
9
+ "hangups>=0.3.0" ,
10
+ "appdirs"
11
+ ]
12
+
13
+ if sys .version_info < (3 , 4 ):
14
+ install_requires .append ("asyncio" )
15
+
6
16
setup (
7
17
name = "HangupsBot" ,
8
18
version = __version__ ,
24
34
"hangupsbot=hangupsbot.__main__:main"
25
35
],
26
36
},
27
- install_requires = [
28
- "hangups>=0.3.0" ,
29
- "appdirs" ,
30
- "asyncio" # Only needed for backward compatibility with Python 3.3
31
- ],
37
+ install_requires = install_requires ,
32
38
classifiers = [
33
39
"Development Status :: 4 - Beta" ,
34
40
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments