Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: 730f69ecf248
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 96c277d2f551
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 24, 2019

  1. python38: 3.8.0b3 -> 3.8.0rc1

    (cherry picked from commit 1b8f8a6)
    FRidh committed Oct 24, 2019
    Copy the full SHA
    89e9ef1 View commit details
    Browse the repository at this point in the history
  2. python38: 3.8.0rc1 -> 3.8.0

    (cherry picked from commit 911b053)
    FRidh committed Oct 24, 2019
    Copy the full SHA
    854222b View commit details
    Browse the repository at this point in the history
  3. python38: fix build on macOS

    Python 3.8 fails to build on macOS for two reasons:
    
    * python-3.x-distutils-C++.patch fails to apply cleanly.
    * An #include for <util.h> is missing, causing a build failure:
    
        ./Modules/posixmodule.c:6586:9: error: implicit declaration of function 'openpty' is invalid in C99
            if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
                ^
    
    Use the correct version of python-3.x-distutils-C++.patch, and add a
    patch to #include <util.h>.
    
    (cherry picked from commit 81d1594)
    strager authored and FRidh committed Oct 24, 2019
    Copy the full SHA
    96c277d View commit details
    Browse the repository at this point in the history