Skip to content

Commit

Permalink
Merge pull request #615 from bollwyvl/unpin-jedi
Browse files Browse the repository at this point in the history
Unpin jedi
  • Loading branch information
kevin-bates committed Feb 18, 2021
2 parents 0842796 + ef8ece1 commit 959fa6e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,16 @@ def run(self):
],
python_requires = '>=3.5',
extras_require = {
'test': ['jedi<=0.17.2', 'ipykernel', 'ipython', 'mock', 'pytest', 'pytest-asyncio', 'async_generator', 'pytest-timeout'],
'test': [
'async_generator',
'ipykernel',
'ipython',
'jedi<0.18; python_version<="3.6"',
'mock',
'pytest-asyncio',
'pytest-timeout',
'pytest',
],
'doc': open('docs/requirements.txt').read().splitlines(),
},
cmdclass = {
Expand Down

0 comments on commit 959fa6e

Please sign in to comment.