Skip to content

Commit ea04963

Browse files
authored
Merge pull request #1250 from jakob-keller/no-extras
Use `awscli` and `boto3` extras only if required
2 parents 095edc8 + 34ea4f2 commit ea04963

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python -m pip install -U pip pip-tools
7474
pip-compile --all-extras pyproject.toml requirements-dev.in
7575
pip-sync
76-
pip install -e ".[awscli,boto3]"
76+
pip install -e .
7777
- name: Run pre-commit hooks
7878
run: |
7979
make pre-commit

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ After that, please install libraries required for development::
2525
$ pip install pip-tools
2626
$ pip-compile --all-extras pyproject.toml requirements-dev.in
2727
$ pip-sync
28-
$ pip install -e ".[awscli,boto3]"
28+
$ pip install -e .
2929

3030
Install pre-commit hooks::
3131

0 commit comments

Comments
 (0)