diff options
| author | Ofekmeister <ofekmeister@gmail.com> | 2016-08-20 13:29:16 -0400 |
|---|---|---|
| committer | Ofekmeister <ofekmeister@gmail.com> | 2016-08-20 13:29:16 -0400 |
| commit | 9e11ba01ef15138fc928f720967bb4899d8bde38 (patch) | |
| tree | efad3b70a7e4a8bd0d491eb1f94c588db9c5ee16 /CHANGES.rst | |
| parent | 853a9df48cc056a07e17511a2b65918af9605bbc (diff) | |
| parent | 06df852e7cda567b6f8ab6831486285f0e2989a4 (diff) | |
| download | python-setuptools-git-9e11ba01ef15138fc928f720967bb4899d8bde38.tar.gz | |
Merge remote-tracking branch 'refs/remotes/pypa/master'
Diffstat (limited to 'CHANGES.rst')
| -rw-r--r-- | CHANGES.rst | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index bffad4c5..cd203952 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,10 +2,28 @@ CHANGES ======= +v25.4.0 +------- + +* Add Extension(py_limited_api=True). When set to a truthy value, + that extension gets a filename apropriate for code using Py_LIMITED_API. + When used correctly this allows a single compiled extension to work on + all future versions of CPython 3. + The py_limited_api argument only controls the filename. To be + compatible with multiple versions of Python 3, the C extension + will also need to set -DPy_LIMITED_API=... and be modified to use + only the functions in the limited API. + v25.3.0 ------- -#731: Bump certifi. +* #739 Fix unquoted libpaths by fixing compatibility between `numpy.distutils` and `distutils._msvccompiler` for numpy < 1.11.2 (Fix issue #728, error also fixed in Numpy). + +* #731: Bump certifi. + +* Style updates. See #740, #741, #743, #744, #742, #747. + +* #735: include license file. v25.2.0 ------- @@ -16,20 +34,21 @@ v25.2.0 v25.1.6 ------- -* #725 +* #725: revert `library_dir_option` patch (Error is related to `numpy.distutils` and make errors on non Numpy users). v25.1.5 ------- * #720 -* #723 +* #723: Improve patch for `library_dir_option`. v25.1.4 ------- * #717 * #713 -* #707 via #715 +* #707: Fix Python 2 compatibility for MSVC by catching errors properly. +* #715: Fix unquoted libpaths by patching `library_dir_option`. v25.1.3 ------- |
