8000 Merge pull request #744 from omgjlk/fix-flakes · pythonthings/github3.py@6dcfd1d · GitHub
[go: up one dir, main page]

Skip to content

Commit 6dcfd1d

Browse files
authored
Merge pull request sigmavirus24#744 from omgjlk/fix-flakes
Fix flake8 issues
2 parents 99108e4 + 0a2010c commit 6dcfd1d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.
22
#coverage==3.5.2
33
mock==1.0.1
4-
pytest>=2.3.5
4+
pytest>=2.3.5,<3.3.0
55
wheel==0.21.0
66
betamax>=0.5.0
77
betamax_matchers>=0.2.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
'pyasn1'
2424
]
2525

26-
kwargs['tests_require'] = ['betamax >=0.2.0', 'pytest',
26+
kwargs['tests_require'] = ['betamax >=0.2.0', 'pytest <3.3.0',
2727
'betamax-matchers>=0.1.0']
2828
if sys.version_info < (3, 0):
2929
kwargs['tests_require'].append('unittest2 ==0.5.1')

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pip_pre = False
88
deps =
99
requests{env:REQUESTS_VERSION:>=2.0}
1010
mock==1.0.1
11-
pytest>=2.3.5
11+
pytest>=2.3.5,<3.3.0
1212
betamax>=0.5.1
1313
betamax_matchers>=0.3.0
1414
pypy,py27: unittest2

0 commit comments

Comments
 (0)
0