Skip to content

Commit

Permalink
Fix install Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelvallat committed Dec 20, 2024
1 parent 5a56bf3 commit d16a169
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ."[test]"
pip install ".[test]"
- name: Test with pytest
run: |
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ To build and install from source, clone this repository or download the source a

.. code-block:: shell
cd yasa
pip install ."[test]" # install the package
pip install --editable ."[test]" # or editable install
pip install ".[test]" # install the package
pip install --editable ".[test]" # or editable install
pytest # test the package
**What are the prerequisites for using YASA?**
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ To build and install from source, clone this repository or download the source a

.. code-block:: shell
cd yasa
pip install ."[test]" # install the package
pip install -e ."[test]" # or editable install
pip install ".[test]" # install the package
pip install -e ".[test]" # or editable install
pytest # test the package
**What are the prerequisites for using YASA?**
Expand Down

0 comments on commit d16a169

Please sign in to comment.