File tree Expand file tree Collapse file tree 4 files changed +13
-15
lines changed
Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Original file line number Diff line number Diff line change 2929 uses : actions/checkout@v4
3030 - name : Install
3131 run : |
32- pip3 install -r requirements.dev.txt
33- pip3 install .
32+ pip3 install .[dev]
3433 - name : Run tests
3534 run : python3 -m pytest
3635 wintest :
4039 uses : actions/checkout@v4
4140 - name : Install
4241 run : |
43- pip3 install -r requirements.dev.txt
44- pip3 install .
42+ pip3 install .[dev]
4543 - name : Run tests
4644 run : python3 -m pytest
4745 mactest :
5250 - uses : actions/setup-python@v5
5351 - name : Install
5452 run : |
55- pip install -r requirements.dev.txt
56- pip install .
53+ pip install .[dev]
5754 - name : Run tests
5855 run : python -m pytest
5956 nodetest :
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ include LICENSE
33include README.md
44include TODO.md
55include config.h.in
6- include requirements.dev.txt
76include docs/Makefile
87include docs/gen_config.py
98include docs/make.bat
Original file line number Diff line number Diff line change @@ -30,6 +30,16 @@ classifiers = [
3030 " Topic :: Multimedia :: Sound/Audio :: Speech" ,
3131]
3232
33+ [project .optional-dependencies ]
34+ dev = [
35+ " pytest" ,
36+ " numpy" ,
37+ " pre-commit" ,
38+ " black==24.3.0" ,
39+ " isort" ,
40+ " mypy==0.991" ,
41+ ]
42+
3343[project .urls ]
3444Homepage = " https://github.com/ReadAlongs/SoundSwallower"
3545Documentation = " https://soundswallower.readthedocs.io/"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments