diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-07-22 10:18:00 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-07-22 10:18:00 +0300 |
commit | e340879d3cb00495dee9d298df7a6df655ad3d34 (patch) | |
tree | 253655ed4ca6bf5df327dc87b5466ae467778eca /setup.py | |
parent | 896d00fbf22f5701f811bb4cea28b01cbb618ee1 (diff) | |
download | mediagoblin-e340879d3cb00495dee9d298df7a6df655ad3d34.tar.lz mediagoblin-e340879d3cb00495dee9d298df7a6df655ad3d34.tar.xz mediagoblin-e340879d3cb00495dee9d298df7a6df655ad3d34.zip |
Pin mock 1.0.1 in Python 2 for now.
mock recently dropped Python 2.6 support and then
re-introduced it in its latest release (however,
it's a bit unstable right now).
I think at this point, we can be more cautious
and just use mock==1.0.1.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ if PY2: # # use pbr, and currently it breaks things, presumably till # # their next release. # pyversion_install_requires.append('pbr==0.5.22') - pyversion_install_requires.append('mock') # mock is in the stdlib for 3.3+ + pyversion_install_requires.append('mock==1.0.1') # mock is in the stdlib for 3.3+ # PyPI version (1.4.2) does not have proper Python 3 support pyversion_install_requires.append('ExifRead') pyversion_install_requires.append('PasteScript') |