Changeset 210:cb2ffe41c24d
- Timestamp:
- Oct 3, 2016, 9:06:18 AM (6 years ago)
- Branch:
- default
- rebase_source:
- 94b4b315b9cd5d6b8796c024e44df87a5aaaf019
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
r187 r210 2 2 3 3 python: 4 - 2.65 4 - 2.7 5 - 3.3 6 - 3.5 6 7 - pypy 7 8 … … 10 11 - PYFLAKES_NODOCTEST=1 11 12 matrix: 12 - TWISTED=Twisted==12.3 13 - TWISTED=svn+svn://svn.twistedmatrix.com/svn/Twisted/trunk 13 - TWISTED=Twisted==15.5 14 - TWISTED=Twisted==16.4 15 - TWISTED=https://github.com/twisted/twisted/archive/trunk.zip 16 17 matrix: 18 exclude: 19 - python: 3.3 20 env: TWISTED=Twisted==15.5 21 - python: 3.5 22 env: TWISTED=Twisted==15.5 14 23 15 24 install: -
setup.py
r179 r210 4 4 # See LICENSE for details. 5 5 6 import sys 6 7 from setuptools import setup 7 8 … … 28 29 egg_info.write_toplevel_names = _hacked_write_toplevel_names 29 30 31 if sys.version_info < (3, 0): 32 requiredTwisted = "15.5.0" 33 else: 34 requiredTwisted = "16.4.0" 35 30 36 setup(name='wokkel', 31 version=' 0.7.1',37 version='16.0.0', 32 38 description='Twisted Jabber support library', 33 39 author='Ralph Meijer', … … 45 51 zip_safe=False, 46 52 install_requires=[ 47 'Twisted >= 10.0.0',53 'Twisted >= %s' % requiredTwisted, 48 54 'python-dateutil', 49 55 ],
Note: See TracChangeset
for help on using the changeset viewer.