mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 06:24:27 +08:00
Remove the requirements file and require latest parso
This commit is contained in:
@@ -6,7 +6,6 @@ include .coveragerc
|
|||||||
include sith.py
|
include sith.py
|
||||||
include conftest.py
|
include conftest.py
|
||||||
include pytest.ini
|
include pytest.ini
|
||||||
include requirements.txt
|
|
||||||
recursive-include jedi/third_party *.pyi
|
recursive-include jedi/third_party *.pyi
|
||||||
include jedi/third_party/typeshed/LICENSE
|
include jedi/third_party/typeshed/LICENSE
|
||||||
include jedi/third_party/django-stubs/LICENSE.txt
|
include jedi/third_party/django-stubs/LICENSE.txt
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
parso>=0.7.0,<0.8.0
|
|
||||||
4
setup.py
4
setup.py
@@ -12,8 +12,6 @@ __AUTHOR_EMAIL__ = 'davidhalter88@gmail.com'
|
|||||||
version = get_module_constant("jedi", "__version__")
|
version = get_module_constant("jedi", "__version__")
|
||||||
|
|
||||||
readme = open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read()
|
readme = open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read()
|
||||||
with open('requirements.txt') as f:
|
|
||||||
install_requires = f.read().splitlines()
|
|
||||||
|
|
||||||
assert os.path.isfile("jedi/third_party/typeshed/LICENSE"), \
|
assert os.path.isfile("jedi/third_party/typeshed/LICENSE"), \
|
||||||
"Please download the typeshed submodule first (Hint: git submodule update --init)"
|
"Please download the typeshed submodule first (Hint: git submodule update --init)"
|
||||||
@@ -34,7 +32,7 @@ setup(name='jedi',
|
|||||||
long_description=readme,
|
long_description=readme,
|
||||||
packages=find_packages(exclude=['test', 'test.*']),
|
packages=find_packages(exclude=['test', 'test.*']),
|
||||||
python_requires='>=3.6',
|
python_requires='>=3.6',
|
||||||
install_requires=install_requires,
|
install_requires=['parso>=0.8.0,<0.9.0'],
|
||||||
extras_require={
|
extras_require={
|
||||||
'testing': [
|
'testing': [
|
||||||
'pytest<6.0.0',
|
'pytest<6.0.0',
|
||||||
|
|||||||
Reference in New Issue
Block a user