Accepting request 319399 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/319399
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Cython?expand=0&rev=26
This commit is contained in:
2015-08-06 22:20:33 +00:00
committed by Git OBS Bridge
parent a765de68db
commit a8af0ede74
4 changed files with 119 additions and 30 deletions

View File

@@ -1,3 +1,97 @@
-------------------------------------------------------------------
Wed Jul 29 11:52:24 UTC 2015 - toddrme2178@gmail.com
- Remove unneeded numpy dependency to avoid dependency loop.
- create dummy alternative to avoid 13.1's post-build-check bug
- specfile:
* fixing update_alternatives
-------------------------------------------------------------------
Fri Jul 10 21:59:38 UTC 2015 - termim@gmail.com
- Update to 0.22.1:
Bugs fixed
* Crash when returning values on generator termination.
* In some cases, exceptions raised during internal isinstance()
checks were not propagated.
* Runtime reported file paths of source files (e.g for profiling
and tracing) are now relative to the build root directory instead
of the main source file.
* Tracing exception handling code could enter the trace function with an
active exception set.
* The internal generator function type was not shared across modules.
* Comparisons of (inferred) ctuples failed to compile.
* Closures inside of cdef functions returning ``void`` failed to compile.
* Using ``const`` C++ references in intermediate parts of longer
expressions could fail to compile.
* C++ exception declarations with mapping functions could fail to compile
when pre-declared in .pxd files.
* C++ compilation could fail with an ambiguity error in recent MacOS-X
Xcode versions.
* C compilation could fail in pypy3.
* Fixed a memory leak in the compiler when compiling multiple modules.
* When compiling multiple modules, external library dependencies could
leak into later compiler runs. Fix by Jeroen Demeyer. This fixes
ticket 845.
- removed patch fix-32bit.patch as applied upstream
-------------------------------------------------------------------
Wed Apr 22 14:05:18 UTC 2015 - mcihar@suse.cz
- Use Source URL from cython.org
-------------------------------------------------------------------
Wed Apr 22 11:52:03 UTC 2015 - mcihar@suse.cz
- Add python-numpy as BuildRequires to have more complete test coverage
-------------------------------------------------------------------
Wed Apr 22 11:01:47 UTC 2015 - mcihar@suse.cz
- Fix doctests in 32-bit environment (fix-32bit.patch)
-------------------------------------------------------------------
Wed Apr 22 09:10:30 UTC 2015 - mcihar@suse.cz
- Update to 0.22:
Features added
* C functions can coerce to Python functions, which allows passing them
around as callable objects.
* C arrays can be assigned by value and auto-coerce from Python iterables
and to Python lists (and tuples).
* Extern C functions can now be declared as cpdef to export them to
the module's Python namespace. Extern C functions in pxd files export
their values to their own module, iff it exists.
* Anonymous C tuple types can be declared as (ctype1, ctype2, ...).
* PEP 479: turn accidental StopIteration exceptions that exit generators
into a RuntimeError, activated with future import "generator_stop".
See http://legacy.python.org/dev/peps/pep-0479/
* Looping over ``reversed(range())`` is optimised in the same way as
``range()``. Patch by Favian Contreras.
Bugs fixed
* Mismatching 'except' declarations on signatures in .pxd and .pyx files failed
to produce a compile error.
* Failure to find any files for the path pattern(s) passed into ``cythonize()``
is now an error to more easily detect accidental typos.
* The ``logaddexp`` family of functions in ``numpy.math`` now has correct
declarations.
* In Py2.6/7 and Py3.2, simple Cython memory views could accidentally be
interpreted as non-contiguous by CPython, which could trigger a CPython
bug when copying data from them, thus leading to data corruption.
See CPython issues 12834 and 23349.
Other changes
* Preliminary support for defining the Cython language with a formal grammar.
To try parsing your files against this grammar, use the --formal_grammar directive.
Experimental.
* ``_`` is no longer considered a cacheable builtin as it could interfere with
gettext.
* Cythonize-computed metadata now cached in the generated C files.
-------------------------------------------------------------------
Thu Feb 5 11:35:45 UTC 2015 - hpj@urpla.net
- fix update-alternatives handling in a distribution backwards compatible way
-------------------------------------------------------------------
Fri Jan 9 15:20:31 UTC 2015 - dimstar@opensuse.org