Skip to content

Commit 1dc077a

Browse files
committed
Add python_requires header
1 parent 8e5e344 commit 1dc077a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ def read(*parts):
169169
'Topic :: Software Development :: Libraries :: Python Modules',
170170
'Topic :: Software Development :: Testing',
171171
],
172+
python_requires=">=3.5",
172173

173174
# The following makes the plugin available to pytest
174175
entry_points={

tests/test_live_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_a(live_server):
4242
'example.com:%d' % live_server.port
4343
''')
4444

45-
result = appdir.runpytest('-v', '-o=live_server_scope=function')
45+
result = appdir.runpytest('-v', '-o', 'live_server_scope=function')
4646
result.stdout.fnmatch_lines(['*PASSED*'])
4747
assert result.ret == 0
4848

0 commit comments

Comments
 (0)