-
Notifications
You must be signed in to change notification settings - Fork 31
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
✨ ship shared C++ libraries with mqt-core Python package #662
Draft
burgholzer
wants to merge
10
commits into
main
Choose a base branch
from
shared-libs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
burgholzer
added
usability
Anything related to usability
feature
New feature or request
minor
Minor version update
Core
Anything related to the Core library and IR
c++
Anything related to C++ code
python
Anything related to Python code
packaging
Anything related to Python packaging
labels
Aug 6, 2024
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #662 +/- ##
=====================================
Coverage 92.1% 92.1%
=====================================
Files 125 127 +2
Lines 13757 13811 +54
Branches 2150 2150
=====================================
+ Hits 12671 12725 +54
Misses 1086 1086
|
burgholzer
force-pushed
the
shared-libs
branch
2 times, most recently
from
August 9, 2024 10:25
a932c19
to
5382514
Compare
4 tasks
burgholzer
force-pushed
the
shared-libs
branch
5 times, most recently
from
August 11, 2024 10:56
1e105c6
to
34c57c6
Compare
This was referenced Aug 13, 2024
burgholzer
added a commit
that referenced
this pull request
Aug 13, 2024
## Description This PR pulls out a couple of changes from #662 that can go into the library immediately, while that PR is still in draft. Mostly fixes a couple of linter/compiler warnings and improves the handling of Boost / boost_multiprecision. ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines.
burgholzer
force-pushed
the
shared-libs
branch
from
August 13, 2024 22:40
34c57c6
to
0f99bcb
Compare
burgholzer
force-pushed
the
shared-libs
branch
4 times, most recently
from
August 14, 2024 12:27
45e30ba
to
56f640f
Compare
burgholzer
force-pushed
the
shared-libs
branch
from
August 18, 2024 20:58
56f640f
to
ba6606a
Compare
burgholzer
force-pushed
the
shared-libs
branch
3 times, most recently
from
September 5, 2024 18:52
26df787
to
b15a4ac
Compare
burgholzer
added
major
Major version update
and removed
minor
Minor version update
labels
Sep 6, 2024
burgholzer
added a commit
that referenced
this pull request
Sep 28, 2024
## Description This PR updates the CD workflow so that anytime it runs on a push to `main`, it uploads the resulting package to Test PyPI. This allows to battle test the packages before official releases. This will be especially important in the context of #662. ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines.
burgholzer
force-pushed
the
shared-libs
branch
2 times, most recently
from
September 28, 2024 22:04
cc6f016
to
654e252
Compare
Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
🚨 ignore check-wheel-contents warnings Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
additionally ignore DLLs in wheels for delvewheel repair. Delvewheel cannot find these by default and would error if this was not set. Signed-off-by: Lukas Burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]> Signed-off-by: Lukas Burgholzer <[email protected]> Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
Signed-off-by: burgholzer <[email protected]>
burgholzer
force-pushed
the
shared-libs
branch
from
September 29, 2024 15:12
654e252
to
0450f25
Compare
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
This PR marks another try of getting the
mqt.core
Python package to also ship the complete MQT Core C++ library in a compact form so that the Python package can be used as the single source for the C++ and the Python side in top-level projectsSupersedes #538
Checklist: