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: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Copy LICENSE into package
run: cp LICENSE packages/${{ needs.determine-package.outputs.package }}/LICENSE
- name: Build package
run: pip install build && python -m build packages/${{ needs.determine-package.outputs.package }}
- uses: actions/upload-artifact@v4
Expand Down
1 change: 0 additions & 1 deletion packages/essimaging/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ name = "essimaging"
description = "Imaging data reduction for the European Spallation Source"
authors = [{ name = "Scipp contributors" }]
license = "BSD-3-Clause"
license-files = ["../../LICENSE"]
readme = "README.md"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The `"../../LICENSE" relative path confuses setuptools, so we can just copy over the LICENSE to bundle it with the wheels.

classifiers = [
"Intended Audience :: Science/Research",
Expand Down
1 change: 0 additions & 1 deletion packages/essreduce/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ name = "essreduce"
description = "Common data reduction tools for the ESS facility"
authors = [{ name = "Scipp contributors" }]
license = "BSD-3-Clause"
license-files = ["../../LICENSE"]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
Expand Down
Loading