- Update to 1.19
* Support for Python 2.7 as well as 3.7 and earlier has been removed.
* Generally use ``.as_integer_ratio()`` in the constructor if available.
* Add a classmethod ``.from_number()`` that requires a number argument,
not a string.
* Mixed calculations with other ``Rational`` classes could return the
wrong type.
* In mixed calculations with ``complex``, the Fraction is now converted
to ``float`` instead of ``complex`` to avoid certain corner cases in
complex calculation.
* Using ``complex`` numbers in division shows better tracebacks.
* Subclass instantiations and calculations could fail in some cases.
OBS-URL: https://build.opensuse.org/request/show/1239854
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-quicktions?expand=0&rev=27
- 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