Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: empty commit to trigger CI #69

Merged
merged 3 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,23 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install
run: |
pip3 install -r requirements.dev.txt
pip3 install .
pip3 install .[dev]
- name: Run tests
run: python3 -m pytest
wintest:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install
run: |
pip3 install -r requirements.dev.txt
pip3 install .
pip3 install .[dev]
- name: Run tests
run: python3 -m pytest
mactest:
Expand All @@ -52,8 +54,7 @@ jobs:
- uses: actions/setup-python@v5
- name: Install
run: |
pip install -r requirements.dev.txt
pip install .
pip install .[dev]
- name: Run tests
run: python -m pytest
nodetest:
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ include LICENSE
include README.md
include TODO.md
include config.h.in
include requirements.dev.txt
include docs/Makefile
include docs/gen_config.py
include docs/make.bat
Expand Down
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[build-system]
requires = [
"scikit-build-core",
"Cython"
"Cython",
"setuptools>=61.2",
]
build-backend = "scikit_build_core.build"

Expand Down Expand Up @@ -30,6 +31,16 @@ classifiers = [
"Topic :: Multimedia :: Sound/Audio :: Speech",
]

[project.optional-dependencies]
dev = [
"pytest",
"numpy",
"pre-commit",
"black==24.3.0",
"isort",
"mypy==0.991",
]

[project.urls]
Homepage = "https://github.com/ReadAlongs/SoundSwallower"
Documentation = "https://soundswallower.readthedocs.io/"
Expand Down
8 changes: 0 additions & 8 deletions requirements.dev.txt

This file was deleted.

Loading