-
Notifications
You must be signed in to change notification settings - Fork 126
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
Add support for 'pip install adios2' #3949
Closed
scottwittenburg
wants to merge
8
commits into
ornladios:master
from
scottwittenburg:add-pip-packaging
Closed
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8d32bed
Start working on support for 'pip install adios2'
scottwittenburg d30e2dc
Fix install locations and rpaths for pip installs
scottwittenburg 9ffd7e4
add packaging workflow, remove some cmake messages
scottwittenburg a0a2f35
Try to detect python package version dynamically
scottwittenburg f748acb
Update project metadata, and test publishing from gha
scottwittenburg 036226e
try to get more info about trusted publish failure
scottwittenburg f213f2c
Try different repository url key
scottwittenburg ff8fd81
try a separate environment for testpypi
scottwittenburg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[build-system] | ||
requires = ["scikit-build-core", "numpy"] | ||
build-backend = "scikit_build_core.build" | ||
|
||
[project] | ||
name = "adios2_scottwittenburg" | ||
version = "2.9.2" | ||
authors = [ | ||
{ name="Chuck Atkins", email="[email protected]" }, | ||
{ name="Greg S. Eisenhauer", email="[email protected]" }, | ||
{ name="William F. Godoy", email="[email protected]" }, | ||
{ name="Junmin Gu", email="[email protected]" }, | ||
{ name="Norbert Podhorszki", email="[email protected]" }, | ||
{ name="Ruonan (Jason) Wang", email="[email protected]" }, | ||
] | ||
description = "The Adaptable Input Output System version 2" | ||
readme = "ReadMe.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: C++", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/ornladios/adios2" | ||
Issues = "https://github.com/ornladios/adios2/issues" | ||
|
||
[tool.scikit-build] | ||
wheel.packages = ["adios2"] | ||
build-dir = "/data/scott/Documents/adios2/pip_build" | ||
|
||
[tool.scikit-build.cmake.define] | ||
ADIOS2_USE_Python = "ON" | ||
ADIOS2_USE_Fortran = "OFF" | ||
ADIOS2_USE_MPI = "OFF" | ||
ADIOS2_USE_HDF5 = "OFF" | ||
ADIOS2_USE_HDF5_VOL = "OFF" | ||
ADIOS2_USE_BZip2 = "OFF" | ||
ADIOS2_USE_Blosc = "OFF" | ||
ADIOS2_USE_DataMan = "OFF" | ||
ADIOS2_USE_SZ = "OFF" | ||
ADIOS2_USE_ZeroMQ = "OFF" | ||
ADIOS2_USE_ZFP = "OFF" | ||
ADIOS2_PIP_INSTALL = "ON" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vicentebolea This is the hack I was referring to in chat yesterday. It's obviously not the right answer, I just added it to prove to myself that this
INSTALL_RPATH
was the problem with my localpip install .
.