diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2bfc232..ddcc4b52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | diff --git a/setup.py b/setup.py index ba92a20b..c44d1593 100755 --- a/setup.py +++ b/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',