Skip to content

Commit 81e5a4b

Browse files
committed
Relax dependency version constraints. Drop Python 3.3 support. Fixes #100.
1 parent 2013639 commit 81e5a4b

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ cache: pip
33

44
python:
55
- 2.7
6-
- 3.3
76
- 3.4
87
- 3.5
98
- 3.6
@@ -16,10 +15,10 @@ matrix:
1615
python: 2.7
1716
os: osx
1817
- language: generic
19-
python: 3.3
18+
python: 3.5
2019
os: osx
2120
- language: generic
22-
python: 3.5
21+
python: 3.6
2322
os: osx
2423
allow_failures:
2524
- python: pypy3

setup.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@
1212
description='Python XML Signature library',
1313
long_description=open('README.rst').read(),
1414
install_requires=[
15-
'lxml >= 3.5.0, < 4',
16-
'defusedxml >= 0.4.1, < 0.6',
17-
'eight >= 0.3.0, < 0.5',
18-
'cryptography >= 1.8, < 2.1',
15+
'lxml >= 3.5.0, < 5',
16+
'defusedxml >= 0.4.1, < 1',
17+
'eight >= 0.3.0, < 1',
18+
'cryptography >= 1.8, < 3',
1919
'asn1crypto >= 0.21.0',
2020
'pyOpenSSL >= 0.15.1, < 18',
2121
'certifi >= 2015.11.20.1'
2222
],
2323
extras_require={
24-
':python_version == "2.7"': ['enum34 >= 1.0.4'],
25-
':python_version == "3.3"': ['enum34 >= 1.0.4']
24+
':python_version == "2.7"': ['enum34 >= 1.0.4']
2625
},
2726
packages=find_packages(exclude=['test']),
2827
platforms=['MacOS X', 'Posix'],
@@ -37,7 +36,6 @@
3736
'Operating System :: POSIX',
3837
'Programming Language :: Python',
3938
'Programming Language :: Python :: 2.7',
40-
'Programming Language :: Python :: 3.3',
4139
'Programming Language :: Python :: 3.4',
4240
'Programming Language :: Python :: 3.5',
4341
'Topic :: Software Development :: Libraries :: Python Modules'

0 commit comments

Comments
 (0)