-
Notifications
You must be signed in to change notification settings - Fork 49
ci: skip musllinux and drop in-build wheel tests in release workflow #314
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
Changes from all commits
7bce3c3
4c57a3a
9f920a9
b30b96e
5d60e03
a11edef
1feb166
f2d236b
919a6d4
be47839
e7f8932
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ requires = ["meson-python>=0.18", "meson>=1.5"] | |
| build-backend = "mesonpy" | ||
|
|
||
| [project] | ||
| # Distribution name on PyPI and import package name. | ||
| name = "direct" | ||
| description = "DIRECT - Deep Image REConsTruction - is a deep learning framework for MRI reconstruction." | ||
|
Comment on lines
5
to
8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you clarify what change you want in this thread—update the PR title/description, or revert/split the packaging rename changes?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. apply suggestion |
||
| readme = "README.rst" | ||
|
|
@@ -25,7 +26,7 @@ classifiers = [ | |
| # Static so uv can read metadata without invoking the build backend (required | ||
| # because `direct` is built without isolation; see `[tool.uv]` below). Kept in | ||
| # sync with meson.build and direct/__init__.py by tests/version_test.py. | ||
| version = "2.1.0" | ||
| version = "2.1.1" | ||
| dependencies = [ | ||
| "numpy>=2.4,<3", | ||
| "h5py>=3.16", | ||
|
|
@@ -72,10 +73,11 @@ docs = [ | |
|
|
||
| [tool.uv] | ||
| default-groups = ["dev", "build"] | ||
| # Build `direct` against the already-synced `build` group instead of an isolated | ||
| # build environment. Without this, meson-python's editable install records the | ||
| # absolute path of the isolated build env's `ninja`, which uv later deletes, | ||
| # breaking `import direct` on the next run. | ||
| # Build `direct` against the already-synced `build` group instead of an | ||
| # isolated build environment. Without this, meson-python's editable install | ||
| # records the absolute path of the isolated build env's `ninja`, which uv later | ||
| # deletes, breaking `import direct` on the next run. Matches the distribution | ||
| # name in `[project] name`, not the import package. | ||
| no-build-isolation-package = ["direct"] | ||
|
|
||
| [tool.pytest.ini_options] | ||
|
|
@@ -91,9 +93,10 @@ direct = "direct.cli.cli:main" | |
| Homepage = "https://github.com/NKI-AI/direct" | ||
|
|
||
| [tool.meson-python] | ||
| # The C++ extensions target the CPython 3.12 stable ABI (abi3), so the wheels | ||
| # are tagged `abi3` and a single wheel per platform serves every supported | ||
| # interpreter. | ||
| # The C++ extensions target the CPython 3.12 stable ABI (abi3), so non-Windows | ||
| # wheels are tagged `abi3` and a single wheel per platform serves every | ||
| # supported interpreter. Windows builds override this in the release workflow | ||
| # and emit per-version wheels. | ||
| limited-api = true | ||
|
|
||
| [tool.meson-python.args] | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.