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

Support PyPy 3.8 #2206

Merged
merged 7 commits into from
Oct 23, 2021
Merged

Support PyPy 3.8 #2206

merged 7 commits into from
Oct 23, 2021

Commits on Oct 15, 2021

  1. Skip directories when symlinking libraries for PyPy3

    The PyPy3 logic creates symlinks for all files from the library
    directory existing alongside the PyPy executable.  This is meant
    to ensure that the bundled libraries to which PyPy is linked can also
    be found from inside the virtualenv.  However, this logic also symlinks
    all directories which is unnecessary and causes library directory
    collisions with the new install layout.  Change to logic to symlink
    non-directories only.
    
    A similar fix has been applied to the internal venv module in PyPy3.8:
    https://foss.heptapod.net/pypy/pypy/-/commit/713b2af9abd2b9453e12c60143e17431a1aefb33
    
    Fixes pypa#2182
    mgorny authored and mattip committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    8e3e6cc View commit details
    Browse the repository at this point in the history
  2. fix stdlib path

    mattip committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    d7ec926 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1f065f View commit details
    Browse the repository at this point in the history
  4. Extend CI for pypy versions

    Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
    gaborbernat authored and mattip committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    3f06b32 View commit details
    Browse the repository at this point in the history
  5. Use pypy-3.8-v7.3.6rc1

    mattip committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    8b217ab View commit details
    Browse the repository at this point in the history
  6. try pypy v7.3.6rc2

    mattip committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    0ac7db9 View commit details
    Browse the repository at this point in the history
  7. use pypy v7.3.6rc3

    mattip committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    5381955 View commit details
    Browse the repository at this point in the history