Skip to content

Commit

Permalink
explicitly add auto package to pyproject.toml so it isn't excluded
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Nov 3, 2023
1 parent 7e4d019 commit 0376173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
python -m pip install --upgrade pip
- name: Install task package
run: |
pip install -e ".[test]"
pip install ".[test]"
python -c "import pydra.tasks.freesurfer as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
- name: Test with pytest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ source = "vcs"
version-file = "pydra/tasks/freesurfer/_version.py"

[tool.hatch.build.targets.wheel]
packages = ["pydra"]
packages = ["pydra", "pydra.tasks.freesurfer.auto"]
include-only = ["pydra/tasks/freesurfer"]

[tool.black]
Expand Down

0 comments on commit 0376173

Please sign in to comment.