Skip to content

Commit

Permalink
Add extra to doc and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Aug 28, 2023
1 parent a957ad6 commit 03261ff
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
python -m pip install -U build
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: Build a binary wheel and a source tarball
run: >-
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
python -m pip install -U -r requirements/packaging.txt
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: Generates Executable
run: python -O ./builder/pyinstaller_build_macos.py
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
python -m pip install -U -r requirements/packaging.txt
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: Generates Executable
run: python -O ./builder/pyinstaller_build_ubuntu.py
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
python -m pip install -U -r requirements/packaging.txt
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: Generates MS Version Info
run: python .\builder\version_info_templater.py
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
python -m pip install -U -r requirements.txt
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: Génère les exemples de sortie
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
python -m pip install -U -r requirements/testing.txt
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: Unit tests
run: pytest
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
python -m pip install -U -r requirements.txt
- name: Install project as a package
run: python -m pip install -e .
run: python -m pip install -e .[all]

- name: CLI - Echoing version
run: geotribu --version
Expand Down
4 changes: 2 additions & 2 deletions docs/development/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ source .venv/bin/activate
python -m pip install -U pip setuptools wheel
# installation des dépendances de base
python -m pip install -U -r requirements.txt
# installation du projet en mode développement
python -m pip install -e .
# installation du projet en mode développement avec toutes les dépendances fonctionnelles
python -m pip install -e .[all,dev,doc,test]
```
2 changes: 1 addition & 1 deletion docs/usage/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ MacOS version is not tested and is just here to encourage beta-testing and feedb
### Installer

```sh
pip install --user --upgrade geotribu
pip install --upgrade geotribu
```

L'outil est désormais disponible en ligne de commande. Voir les [exemples](/usage/examples).
Expand Down

0 comments on commit 03261ff

Please sign in to comment.