[Numpy-svn] [numpy/numpy] f3b8ef: BUG: Use keyword arguments to initialize Extension...

GitHub noreply at github.com
Sat Aug 20 17:25:23 EDT 2016


  Branch: refs/heads/master
  Home:   https://github.com/numpy/numpy
  Commit: f3b8ef0dee845b92977e25cf530de2bdd8cced73
      https://github.com/numpy/numpy/commit/f3b8ef0dee845b92977e25cf530de2bdd8cced73
  Author: Charles Harris <charlesr.harris at gmail.com>
  Date:   2016-08-20 (Sat, 20 Aug 2016)

  Changed paths:
    M numpy/distutils/extension.py

  Log Message:
  -----------
  BUG: Use keyword arguments to initialize Extension base class.

Currently numpy.distutils.Extension class subclasses python's
distutils.extension.Extension class and initializes the base class with
a call that uses positional arguments rather than keyword arguments.
This causes problems with setuptools 25.4.0 where the Extension class
gets a new init function that expects keyword rather than positional
arguments. We should have been using keyword arguments all along and our
luck has run out, so use proper keywords

Closes #7951.


  Commit: 86960c27cfe48346944ce3c5861740d36040bde2
      https://github.com/numpy/numpy/commit/86960c27cfe48346944ce3c5861740d36040bde2
  Author: Ralf Gommers <ralf.gommers at gmail.com>
  Date:   2016-08-21 (Sun, 21 Aug 2016)

  Changed paths:
    M numpy/distutils/extension.py

  Log Message:
  -----------
  Merge pull request #7952 from charris/fix-for-setuptools_25_4

BUG: Use keyword arguments to initialize Extension base class.


Compare: https://github.com/numpy/numpy/compare/912e24a4ac2d...86960c27cfe4


More information about the Numpy-svn mailing list