Add a requirements.txt.

Also use it within setup.py. It doesn't seem possible to define dependencies for tox with install_requires.
This commit is contained in:
Dave Halter
2017-05-20 17:22:24 -04:00
parent fdff9396dd
commit c7984c0710
5 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,6 @@
from jedi._compatibility import u, is_py3
# -*- coding: utf-8 -*-
from jedi._compatibility import is_py3
from jedi import parser_utils
from parso.python import parse
from parso.python import tree
@@ -67,7 +69,7 @@ def test_hex_values_in_docstring():
if is_py3:
assert doc == '\xff'
else:
assert doc == u('<EFBFBD>')
assert doc == u'<EFBFBD>'
@pytest.mark.parametrize(