-
Notifications
You must be signed in to change notification settings - Fork 50
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
Migrate to pyproject.toml #379
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7eb62dd
Migrate to pyproject.toml, and convert the build to use py-build-cmake
nirosys c5c5590
Switch to pkgutil.extend_path (revisit PEP420, this may be unneeded),…
nirosys f143a42
Remove install.py; Update ion-c to latest (fixes sub-directory builds)
nirosys bff1587
Update benchmark-cli to use new python code path
nirosys 36eeb75
Add new pyproject.toml and CMakeLists
nirosys f70105d
Adjust IONC_BUILD_TESTS override
nirosys 41b60fe
Update main github actions workflow
nirosys a358f91
Install build module
nirosys f69ecf7
Lower pyparsing version to support 3.8
nirosys fd2ff2f
Further migration to pyproject.toml; move 3rd party configs into pypr…
nirosys d33a4a4
Update main workflow to include test dependencies when installing
nirosys 56cf105
Update extension to link against decNumber as a static lib
nirosys 480350e
Update extension name, changed to _ioncmodule and is now at the top-l…
nirosys eb51696
Fix version, it got lost in the rebase
nirosys 12427ad
Remove requirements files; add py-build-cmake cache to gitignore
nirosys 60ab03a
Add ionc_version method to return the version of Ion C used in the ex…
nirosys e6e16a2
Quick update pass for C Extension documentation
nirosys dddd696
Remove libm from linked libraries for windows build
nirosys 1d5923b
Update regression test to use pyproject for PR source (will need to b…
nirosys 2434835
Update package cache to only install dependencies, not our package
nirosys 49ca0eb
Update benchmark cli's path for PR content to account for updated layout
nirosys 070015a
Update virtualenv version to match HEAD's dependabot update
nirosys 0ce40af
Remove unneeded virtualenv install; expand wording on C ext use; remo…
nirosys 3fdf19b
Address actionlint issues
nirosys 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 |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
/amazon/ion/ion-c-build/ | ||
/temp_*.ion | ||
/temp_*.10n | ||
|
||
/.py-build-cmake_cache |
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,4 @@ | ||
cmake_minimum_required(VERSION 3.6 FATAL_ERROR) | ||
project(amazon) | ||
|
||
add_subdirectory(src) |
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
Oops, something went wrong.
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.
Should we just replace
run_cli
instead ofrun_cli_new
?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.
The new
run_cli_new
is temporary, to allow this PR to run the perf regression workflow. Since it pulls down the current HEAD which has the pre-PR layout, I need to run the benchmark CLI from that revision withrun_cli
.Once this PR is merged, then I can follow up with a PR to replace
run_cli
withrun_cli_new
, so that the perf regression workflow continues working using thesrc-python
layout for everything.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.
Makes sense.