14
0

Accepting request 702945 from home:jjolly:branches:devel:languages:python

- Update to 1.9
  + Substantially faster normalisation (and therefore instantiation)
    in Py3.5+.
  + // (floordiv) now follows the expected rounding behaviour when used
    with floats (by converting to float first), and is much faster for
    integer operations.
  + Fix return type of divmod(), where the first item should be an integer.
  + Further speed up mod and divmod operations.
- Update to 1.8
  + Faster mod and divmod calculation.
- Update to 1.7
  + Faster normalisation and fraction string parsing.
  + Add support for Python 3.7.
  + Built using Cython 0.29.
- Changed %check to use %pytest_arch

OBS-URL: https://build.opensuse.org/request/show/702945
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-quicktions?expand=0&rev=5
This commit is contained in:
Tomáš Chvátal
2019-05-14 18:56:45 +00:00
committed by Git OBS Bridge
parent 3597de1543
commit 0ff2f21b8b
4 changed files with 30 additions and 12 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Tue May 14 18:27:23 UTC 2019 - John Jolly <jjolly@suse.com>
- Update to 1.9
+ Substantially faster normalisation (and therefore instantiation)
in Py3.5+.
+ // (floordiv) now follows the expected rounding behaviour when used
with floats (by converting to float first), and is much faster for
integer operations.
+ Fix return type of divmod(), where the first item should be an integer.
+ Further speed up mod and divmod operations.
- Update to 1.8
+ Faster mod and divmod calculation.
- Update to 1.7
+ Faster normalisation and fraction string parsing.
+ Add support for Python 3.7.
+ Built using Cython 0.29.
- Changed %check to use %pytest_arch
-------------------------------------------------------------------
Fri Jun 15 20:40:25 UTC 2018 - toddrme2178@gmail.com