Skip to content

Commit

Permalink
Add python_requires header
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed Mar 3, 2020
1 parent 8e5e344 commit 1dc077a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ def read(*parts):
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
],
python_requires=">=3.5",

# The following makes the plugin available to pytest
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion tests/test_live_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_a(live_server):
'example.com:%d' % live_server.port
''')

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

Expand Down

0 comments on commit 1dc077a

Please sign in to comment.