File tree Expand file tree Collapse file tree 4 files changed +19
-16
lines changed
Expand file tree Collapse file tree 4 files changed +19
-16
lines changed Original file line number Diff line number Diff line change @@ -27,21 +27,23 @@ jobs:
2727 steps :
2828 - name : Checkout
2929 uses : actions/checkout@v4
30+ - uses : actions/setup-python@v5
31+ with :
32+ python-version : " 3.10"
3033 - name : Install
3134 run : |
32- pip3 install -r requirements.dev.txt
33- pip3 install .
35+ pip3 install .[dev]
3436 - name : Run tests
3537 run : python3 -m pytest
3638 wintest :
3739 runs-on : windows-latest
3840 steps :
3941 - name : Checkout
4042 uses : actions/checkout@v4
43+ - uses : actions/setup-python@v5
4144 - name : Install
4245 run : |
43- pip3 install -r requirements.dev.txt
44- pip3 install .
46+ pip3 install .[dev]
4547 - name : Run tests
4648 run : python3 -m pytest
4749 mactest :
5254 - uses : actions/setup-python@v5
5355 - name : Install
5456 run : |
55- pip install -r requirements.dev.txt
56- pip install .
57+ pip install .[dev]
5758 - name : Run tests
5859 run : python -m pytest
5960 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 11[build-system ]
22requires = [
33 " scikit-build-core" ,
4- " Cython"
4+ " Cython" ,
5+ " setuptools>=61.2" ,
56]
67build-backend = " scikit_build_core.build"
78
@@ -30,6 +31,16 @@ classifiers = [
3031 " Topic :: Multimedia :: Sound/Audio :: Speech" ,
3132]
3233
34+ [project .optional-dependencies ]
35+ dev = [
36+ " pytest" ,
37+ " numpy" ,
38+ " pre-commit" ,
39+ " black==24.3.0" ,
40+ " isort" ,
41+ " mypy==0.991" ,
42+ ]
43+
3344[project .urls ]
3445Homepage = " https://github.com/ReadAlongs/SoundSwallower"
3546Documentation = " https://soundswallower.readthedocs.io/"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments