-
Couldn't load subscription status.
- Fork 16
Add Python bindings for libvillas #884
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
Open
al3xa23
wants to merge
29
commits into
master
Choose a base branch
from
python-wrapper
base: master
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.
Open
Changes from 3 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
40c9103
Build system for python-wrapper
7302be2
Added wrapper dependencies to Dockerfiles
3703c20
Python-Wrapper bindings
76ec913
Added Tests for the Python-Wrapper
24abdb7
node.cpp Bugfix
640e815
CMake Python-Wrapper test integration, build fix
862d498
Applied changes as per feedback.
c48be8f
Merge branch 'master' into python-wrapper
al3xa23 73ce98f
Fixed typo
168df21
Explicitly disallowed copy and assignment
e710de5
CMakeLists.txt fix
b1e9a2f
Removed unnecessary dockerfile dependencies
365f88b
Renamed wrapper -> binding, LLVM format
6806d24
Changes for pipeline test integration
c5026a2
Merge branch 'master' into python-wrapper
al3xa23 9216366
Binding test formatted with black
2d7628f
Format Python binding test with black-jupyter
07cffec
Align python-devel package for consistency
d9d12de
Moved clients/python-binding/ to python/binding/
a146ecb
python-binding unit test split, socket fixes
22714fe
unit tests: add test and enable test discovery
052f419
integration tests: added and enable test discovery
be2b770
python binding: add wrapper and binding tweaks
5b887a4
binding tests: add binding wrapper tests
279eb80
binding tests: CI fix and reformat
66e1f14
binding wrapper: CI/build fix, add binding stubs
f73fc67
binding stubs: add missing SPDX header
124a1f5
python binding: install and fix CI
f023f4d
Merge branch 'master' into python-wrapper
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
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.
Are you sure this is needed? I dont see the variables/targets defined by
find_packagebeing used in this file.Normally, such transitive dependencies should be defined using the
PUBLICkeyword in thetarget_link_library, so they propagate downstream.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.
It was not necessary.
The idea behind it was to have CMake find the path of the Python interpreter.
I wanted to ensure that the Python executable was properly found, but just calling with
pythonorpython3instead of${PYTHON_EXECUTABLE}does the trick as well.I ran into some permission issues during testing within in a local docker container and was worried that this could have caused the error, but it was an error during testing on my part.