-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
feat: Python Support #2009
feat: Python Support #2009
Conversation
a7424bf
to
9e51344
Compare
Built everything and installed it into a virtual environment, then ensured everything was importable by running: import pkgutil
import importlib
import aws_cdk
for pkg in pkgutil.walk_packages(aws_cdk.__path__, "aws_cdk."):
print(f"Importing {pkg.name}")
importlib.import_module(pkg.name) That does not ensure it's functioning, but it is at least importable. |
Don't forget to update |
7fc09fc
to
f53c289
Compare
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.
That looks good to me 👍🏻
Approved conditional of name changes |
Fixes #539
Pull Request Checklist
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license.