-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typo fix in optional dependency install and consolidate to bash synta…
…x rather than a mix of zsh sytnax.
- Loading branch information
1 parent
599cb5c
commit e92023b
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,15 +27,15 @@ install as an editable package:: | |
|
||
git clone [email protected]:jatkinson1000/archeryutils.git | ||
cd archeryutils | ||
pip install -e .[test,int,docs] | ||
pip install -e .[test,lint,docs] | ||
|
||
Testing | ||
~~~~~~~ | ||
|
||
To run tests on a development installation either install | ||
`pytest <https://docs.pytest.org/>`__ using pip, or install as an optional dependency:: | ||
|
||
pip install -e ".[test]" | ||
pip install -e .[test] | ||
|
||
and then run:: | ||
|
||
|
@@ -54,6 +54,8 @@ lint | |
|
||
For applying quality control to the code:: | ||
|
||
pip install -e .[lint] | ||
|
||
* ruff (0.7.3 or later) | ||
* mypy (1.0.0 or later) | ||
* coverage | ||
|
@@ -66,7 +68,7 @@ docs | |
|
||
For building documentation:: | ||
|
||
pip install -e ".[docs]" | ||
pip install -e .[docs] | ||
|
||
* sphinx | ||
* sphinx_rtd_theme | ||
|