Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:

jobs:
Docs:
uses: tskit-dev/.github/.github/workflows/docs.yml@v13
uses: tskit-dev/.github/.github/workflows/docs.yml@v14
with:
pyproject-directory: python
additional-apt-packages: doxygen
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
Lint:
uses: tskit-dev/.github/.github/workflows/lint.yml@v12
uses: tskit-dev/.github/.github/workflows/lint.yml@v14
with:
pyproject-directory: python
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@ jobs:

packaging:
name: Python packaging
uses: tskit-dev/.github/.github/workflows/python-packaging.yml@v12
uses: tskit-dev/.github/.github/workflows/python-packaging.yml@v14
with:
pyproject-directory: python
cli-test-cmd: kastore --help

test-c:
name: C tests
uses: tskit-dev/.github/.github/workflows/c-tests.yml@v12
uses: tskit-dev/.github/.github/workflows/c-tests.yml@v14
with:
library-directory: c
secrets: inherit

test-python-c:
name: Python-C tests
uses: tskit-dev/.github/.github/workflows/python-c-tests.yml@v12
uses: tskit-dev/.github/.github/workflows/python-c-tests.yml@v14
with:
tests: python/tests/test_python_c.py
pyproject-directory: python
secrets: inherit

test:
name: Python
uses: tskit-dev/.github/.github/workflows/python-tests.yml@v12
uses: tskit-dev/.github/.github/workflows/python-tests.yml@v14
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
build-wheels:
if: "!startsWith(github.ref, 'refs/tags/C_')"
uses: tskit-dev/.github/.github/workflows/build-wheels.yml@v12
uses: tskit-dev/.github/.github/workflows/build-wheels.yml@v14
with:
pyproject-directory: python

Expand Down
6 changes: 3 additions & 3 deletions prek.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ hooks = [
id = "ruff-check",
name = "ruff check",
language = "system",
entry = "uv run --project=python --group=lint ruff check --fix --force-exclude",
entry = "uv run --project=python --only-group=lint ruff check --fix --force-exclude",
types = ["python"],
},
]
Expand All @@ -34,7 +34,7 @@ hooks = [
id = "ruff-format",
name = "ruff format",
language = "system",
entry = "uv run --project=python --group=lint ruff format --force-exclude",
entry = "uv run --project=python --only-group=lint ruff format --force-exclude",
types = ["python"],
verbose = true,
},
Expand All @@ -47,7 +47,7 @@ hooks = [
id = "clang-format",
name = "clang-format",
language = "system",
entry = "uv run --project=python --group=lint clang-format -i",
entry = "uv run --project=python --only-group=lint clang-format -i",
types = ["c"],
verbose = true,
},
Expand Down