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

Merge from develop to master #289

Merged
merged 10 commits into from
Sep 29, 2021
Merged

Merge from develop to master #289

merged 10 commits into from
Sep 29, 2021

Commits on Aug 25, 2021

  1. fix: improve support for pep517 builds (#265)

    * A pep517 build can declare build dependencies. Pip will then
    know to install these dependencies before trying to build a wheel
    file.
    
    * When creating a build environment, it's only guaranteed to last
    for the duration of the build process. It's not accessible once
    a pip command finishes running.
    
    * When we try to retrieve the version of a package we run a "modified"
    form of "python setup.py egg_info".
    
    * The problem with this is that we're not using the build environment
    that has all the build dependencies installed (it's already gone),
    so if setup.py imports a module (e.g. cython) because it expects
    it to be there because it declared it as a build dependency
    the egg_info command will fail.
    
    * We don't check the RC or have a fallback case if we can't generate
    egg info.
    
    * We fail with an indecipherable IndexError.
    
    We now have a fallback where if we can't import/run the setup.py file,
    we assume the PKG-INFO file should be in the top level directory of the
    sdist so we check if it's there, and if so we use that file.
    sriram-mv authored Aug 25, 2021
    Configuration menu
    Copy the full SHA
    df4d474 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    262d02f View commit details
    Browse the repository at this point in the history
  3. fix(go version parts): remove alphabets from the version for validati…

    …on (#259)
    
    * fix(go version parts): remove alphabets from the version for validation
    
    - Go versions like 1.12rc1 or 1.16beta1 are supported.
    - Test added.
    
    * fix: use regex for go versions
    sriram-mv authored Aug 25, 2021
    Configuration menu
    Copy the full SHA
    880a9fd View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2021

  1. Configuration menu
    Copy the full SHA
    073e26e View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2021

  1. Configuration menu
    Copy the full SHA
    4180421 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2021

  1. feat: Allow Node.js projects to be built without requiring a package.…

    …json (#284)
    
    * Allow nodejs to build without requiring a manifest
    
    * Fix existing tests
    
    * Remove expected .package-lock
    
    * Define actions in the scope they're used
    mildaniel authored Sep 27, 2021
    Configuration menu
    Copy the full SHA
    bc95771 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2021

  1. feat: ARM support (#25) (#287)

    Co-authored-by: Mathieu Grandis <[email protected]>
    mndeveci and mgrandis authored Sep 29, 2021
    Configuration menu
    Copy the full SHA
    0bc7d65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    713de19 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2d905fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7095d98 View commit details
    Browse the repository at this point in the history