Skip to content

Commit

Permalink
build: always install cli deps
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Dec 4, 2023
1 parent f3e1ad7 commit ebb5f1c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
pip install hatch[cli]
hatch env create
- name: Lint and typecheck
run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
shell: bash
run: |
python -m pip install --upgrade pip
pip install hatch
pip install hatch[cli]
- name: Build and publish on PyPI
env:
HATCH_INDEX_USER: ${{ secrets.HATCH_INDEX_USER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
pip install hatch[cli]
hatch env create
- name: Build
run: hatch run mknodes build
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ The latest released version is available at the [Python package index](https://p
``` py
pip install jinjarope
```
With CLI:

``` py
pip install jinjarope[cli]
```


## Quick guide
Expand Down

0 comments on commit ebb5f1c

Please sign in to comment.