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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: astral-sh/setup-uv@v7

- name: Test package
run: uv run --with "clang<19" --extra test pytest --forked
run: uv run --with "clang<19" --group test pytest --forked

# Commented for now -- msys2 Clang (v15) and the clang Python package (v14) are incompatible
#
Expand All @@ -60,7 +60,7 @@ jobs:
# python-version: ${{ matrix.python-version }}
#
# - name: Install package
# run: python -m pip install .[test]
# run: python -m pip install -e. --group test
#
# - name: Install clang
# run: C:\msys64\usr\bin\pacman.exe -S clang64/mingw-w64-clang-x86_64-clang --noconfirm
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ classifiers = [
]
dynamic = ["version"]

[project.optional-dependencies]
[dependency-groups]
test = [
"pytest",
"pybind11",
"pytest-forked",
]
dev = [{ include-group = "test" }]

[project.scripts]
pybind11-mkdoc = "pybind11_mkdoc:main"
Expand Down