-
Notifications
You must be signed in to change notification settings - Fork 16
robotpy-build meson rewrite #252
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
base: next
Are you sure you want to change the base?
Conversation
1dbdd26
to
8e00162
Compare
dc04cfc
to
3f79005
Compare
- This is because the generator will need to know that a trampoline is potentially being generated only by parsing pyproject.toml/autogen yaml
- Switch to src layout - Docs not updated - internals not fully updated
44ac7de
to
3a91495
Compare
- Builds multiple projects that use things from each other
ac303be
to
c0d45b7
Compare
try: | ||
from distutils.util import get_platform as _get_platform | ||
except ImportError: | ||
from sysconfig import get_platform as _get_platform |
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.
Is there a reason to try distutils.util
first? Could we just always use sysconfig.get_platform
?
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.
I think their behavior is slightly different. Honestly, I'd like to get rid of this whole file anyways, I need to port robotpy-ctre and get mostrobotpy working in CI to see if it's possible first.
This is primarily for CI testing at the moment.
python_requires
#140