mirror of
https://github.com/davidhalter/jedi.git
synced 2026-04-24 22:32:56 +08:00
Merge testing and qa extras_require into dev
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -27,7 +27,7 @@ jobs:
|
||||
allow-prereleases: true
|
||||
|
||||
- name: Install dependencies
|
||||
run: 'pip install .[testing]'
|
||||
run: 'pip install .[dev]'
|
||||
|
||||
- name: Run tests
|
||||
run: python -m pytest
|
||||
@@ -43,7 +43,7 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install dependencies
|
||||
run: 'pip install .[qa]'
|
||||
run: 'pip install .[dev]'
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
@@ -60,7 +60,7 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install dependencies
|
||||
run: 'pip install .[testing] coverage'
|
||||
run: 'pip install .[dev] coverage'
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
|
||||
4
setup.py
4
setup.py
@@ -39,7 +39,7 @@ setup(name='jedi',
|
||||
# Python 3.13 grammars are added to parso in 0.8.4
|
||||
install_requires=['parso>=0.8.6,<0.9.0'],
|
||||
extras_require={
|
||||
'testing': [
|
||||
'dev': [
|
||||
'pytest<9.0.0',
|
||||
# docopt for sith doctests
|
||||
'docopt',
|
||||
@@ -48,8 +48,6 @@ setup(name='jedi',
|
||||
'Django',
|
||||
'attrs',
|
||||
'typing_extensions',
|
||||
],
|
||||
'qa': [
|
||||
# latest version on 2025-06-16
|
||||
'flake8==7.2.0',
|
||||
'zuban==0.6.2',
|
||||
|
||||
Reference in New Issue
Block a user