]> git.pld-linux.org Git - packages/flake8.git/blob - flake8-mock.patch
Release 3 (by relup.sh)
[packages/flake8.git] / flake8-mock.patch
1 --- flake8-3.3.0/setup.py.orig  2017-02-06 20:38:21.000000000 +0100
2 +++ flake8-3.3.0/setup.py       2017-04-17 11:04:33.964940324 +0200
3 @@ -12,7 +12,9 @@
4  import flake8
5  
6  
7 -tests_require = ['mock >= 2.0.0', 'pytest']
8 +tests_require = ['pytest']
9 +if (sys.version_info.major, sys.version_info.minor) < (3, 3):
10 +    tests_require.append('mock >= 2.0.0')
11  
12  # NOTE(sigmavirus24): When updating these requirements, update them in
13  # setup.cfg as well.
This page took 0.065355 seconds and 3 git commands to generate.