File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ before_install:
31
31
32
32
install :
33
33
# install all of the dependencies we need here
34
- - pip install nose
34
+ - pip install nose==1.*
35
35
- pip install pyxb==1.2.5
36
36
# can't change the pyxb version without changing the version in setup.py
37
37
# and regenerating the bindings in apicontractsv1.py
38
- - pip install lxml
39
- - pip install requests
38
+ - pip install lxml==4.*
39
+ - pip install requests==2.*
40
40
- if [[ "$TEST_SUITE" == "coverage" ]]; then pip install coveralls; fi
41
41
42
42
before_script :
Original file line number Diff line number Diff line change 63
63
# your project is installed. For an analysis of "install_requires" vs pip's
64
64
# requirements files see:
65
65
# https://packaging.python.org/en/latest/requirements.html
66
- install_requires = ['pyxb==1.2.5' , 'lxml' , 'requests' ],
66
+ install_requires = ['pyxb==1.2.5' , 'lxml==4.* ' , 'requests==2.* ' ],
67
67
#install_requires=['nose'],
68
68
#install_requires=['nosetests'],
69
69
#install_requires=['mock'],
70
70
#install_requires=['lxml'],
71
71
72
- tests_require = ['nose' , 'mock' ],
72
+ tests_require = ['nose==1.* ' , 'mock==2.* ' ],
73
73
# List additional groups of dependencies here (e.g. development
74
74
# dependencies). You can install these using the following syntax,
75
75
# for example:
You can’t perform that action at this time.
0 commit comments