Skip to content
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

fix(python): change Python namespace to aws_cdk #13489

Merged
merged 2 commits into from
Mar 9, 2021

Commits on Mar 9, 2021

  1. fix(python): change Python namespace to aws_cdk

    The current Python namespace in v2 for the monopackage is `aws_cdk_lib`, which
    means people need to update a lot of imports their source code.
    
    `aws_cdk` is the namespace used by the v1 packages, which means people who have
    already written code against v1 have less updating to do.
    
    Unfortunately there will still be SOME updating, as some classes *used* to be in
    `aws_cdk.core` but are now in `aws_cdk` directly.
    
    Tested that the `aws_cdk_lib` package that vends `aws_cdk/__init__.py` can
    still be installed without problems alongside `aws_cdk.cx_api` which vends
    `aws_cdk/cx_api/__init__.py`, and others.
    rix0rrr committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    359534f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e0746d View commit details
    Browse the repository at this point in the history