Skip to content

Commit 3601914

Browse files
committed
Bump required versions of mixbox, cybox
1 parent 84a89ab commit 3601914

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ def get_version():
2323
with open('README.rst') as f:
2424
readme = f.read()
2525

26+
install_requires = [
27+
'lxml>=2.2.3',
28+
'mixbox>=0.0.8',
29+
'cybox>=2.1.0.12.dev1,<2.1.1.0',
30+
]
31+
2632
extras_require = {
2733
'docs': [
2834
'Sphinx==1.3.1',
@@ -43,7 +49,7 @@ def get_version():
4349
long_description=readme,
4450
url="http://maec.mitre.org",
4551
packages=find_packages(),
46-
install_requires=['mixbox', 'lxml>=2.2.3', 'cybox>=2.1.0.12.dev0,<2.1.1.0'],
52+
install_requires=install_requires,
4753
extras_require=extras_require,
4854
classifiers=[
4955
"Programming Language :: Python",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ basepython=python2.6
1414
commands =
1515
nosetests maec
1616
deps =
17-
cybox>=2.1.0.12.dev0
17+
cybox>=2.1.0.12.dev1
1818
lxml==2.2.3
1919
python-dateutil==1.4.1
2020
nose

0 commit comments

Comments
 (0)