Skip to content
Snippets Groups Projects
Commit 7685f562 authored by John Wiggins's avatar John Wiggins
Browse files

Oops. Python 2.6 doesn't have set literals

parent cf1c36f8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ import sys
 
from setuptools import setup
 
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
needs_pytest = set('pytest', 'test', 'ptr').intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
 
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment