Skip to content

Commit 2d1fa1c

Browse files
committed
Move optional dependencies from dev_requirements to pyproject.toml
1 parent f68aadd commit 2d1fa1c

21 files changed

+40
-213
lines changed

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install -r dev_requirements/requirements-formatting.txt
24+
pip install .[formatting]
2525
- name: ${{ matrix.tool }} Code Formatter
2626
run: |
2727
${{ matrix.tool }} . --check

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Install dependencies
5353
run: |
5454
python -m pip install --upgrade pip
55-
pip install -r dev_requirements/requirements-packaging.txt
55+
pip install .[test_packaging]
5656
- name: Build wheel and source distributions
5757
run: |
5858
python -m build

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
pip install tox
2525
- name: install pydantic if requested
2626
if: matrix.run_step == 'true'
27-
run: pip install -r dev_requirements/requirements-pydantic.txt
27+
run: pip install .[pydantic]
2828
- name: Run the Unit Tests via Tox
2929
run: |
3030
tox -e tests

dev_requirements/requirements-coverage.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

dev_requirements/requirements-coverage.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

dev_requirements/requirements-formatting.in

Lines changed: 0 additions & 3 deletions
This file was deleted.

dev_requirements/requirements-formatting.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

dev_requirements/requirements-linting.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

dev_requirements/requirements-linting.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

dev_requirements/requirements-packaging.in

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)