Revisions of python-zstandard

Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1135664 from Eric Schirra's avatar Eric Schirra (ecsos) (revision 22)
- Add %{?sle15_python_module_pythons}
- Update to version 0.22.0
  * Official support for CPython 3.12
  * ZstdDecompressor.decompressobj() now accepts a read_across_frames
    boolean named argument to control whether to transparently read across
    multiple zstd frames. It still defaults to False to preserve existing
    behavior
- Update to version 0.21.0
  * Support zstd 1.5.5
buildservice-autocommit accepted request 1067413 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 21)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1066986 from Martin Liška's avatar Martin Liška (marxin) (revision 20)
- Update to version 0.20.0
  * This will likely be the last release officially supporting Python 3.6.
    Python 3.6 is end of life as of 2021-12-23.
  * Bundled zstd library upgraded from 1.5.2 to 1.5.4.
  * Use of the deprecated ZSTD_copyDCtx() was removed from the C and
    Rust backends.
buildservice-autocommit accepted request 1066418 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 19)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1066378 from Martin Liška's avatar Martin Liška (marxin) (revision 18)
- Enable --system-zstd so that we depend of a system shared library
  of zstd.
- Add feature-detection.patch as feature detection test does not support
  --system-zstd (gh#indygreg/python-zstandard#191).
buildservice-autocommit accepted request 1040446 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 17)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1040403 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 16)
-  Fixed spec file to include exceptiongroup
buildservice-autocommit accepted request 1036966 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 15)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1036857 from Mia Herkt's avatar Mia Herkt (mia) (revision 14)
- Update to 0.19.0
Bug fixes
  * The C backend implementation of
    ZstdDecompressionObj.decompress() could have raised an
    assertion in cases where the function was called multiple times
    on an instance. In non-debug builds, calls to this method could
    have leaked memory.
Changes
  * PyPy 3.6 support dropped; Pypy 3.8 and 3.9 support added.
  * Anaconda 3.6 support dropped.
  * Official support for Python 3.11. This did not require
    meaningful code changes and previous release(s) likely worked
    with 3.11 without any changes. CFFI's build system now respects
    distutils's compiler.preprocessor if it is set.
    gh#indygreg/python-zstandard#179
  * The internal logic of ZstdDecompressionObj.decompress() was
    refactored. This may have fixed unconfirmed issues where
    unused_data was set prematurely. The new logic will also avoid
    an extra call to ZSTD_decompressStream() in some scenarios,
    possibly improving performance.
  * ZstdDecompressor.decompress() how has a read_across_frames
    keyword argument. It defaults to False. True is not yet
    implemented and will raise an exception if used. The new
    argument will default to True in a future release and is
    provided now so callers can start passing
    read_across_frames=False to preserve the existing functionality
    during a future upgrade.
  * ZstdDecompressor.decompress() now has an allow_extra_data
    keyword argument to control whether an exception is raised if
    input contains extra data. It defaults to True, preserving
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 950571 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 13)
- Correctly test the installed solib
- Skip python2 on SLE/Leap: no longer supported
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 950048 from Sarah Kriesch's avatar Sarah Kriesch (AdaLovelace) (revision 12)
- update to 0.17.0
- Fixed tests for s390x
buildservice-autocommit accepted request 822029 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 11)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 822028 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 10)
- update to 0.14.0
  * This will likely be the final version supporting Python 2.7. Future
    releases will likely only work on Python 3.5+. See #109 for more
    context.
  * There is a significant possibility that future versions will use
    Rust - instead of C - for compiled code. See #110 for more context.
  * Some internal fields of C structs are now explicitly initialized.
    (Possible fix for #105.)
  * The ``make_cffi.py`` script used to build the CFFI bindings now
    calls ``distutils.sysconfig.customize_compiler()`` so compiler
    customizations (such as honoring the ``CC`` environment variable)
    are performed. Patch by @Arfrever. (#103)
  * The ``make_cffi.py`` script now sets ``LC_ALL=C`` when invoking
    the preprocessor in an attempt to normalize output to ASCII. (#95)
buildservice-autocommit accepted request 782875 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 9)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 782874 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 8)
- version update to 0.13.0
  * ``pytest-xdist`` ``pytest`` extension is now installed so tests can be
    run in parallel.
  * CI now builds ``manylinux2010`` and ``manylinux2014`` binary wheels
    instead of a mix of ``manylinux2010`` and ``manylinux1``.
  * Official support for Python 3.8 has been added.
  * Bundled zstandard library upgraded from 1.4.3 to 1.4.4.
  * Python code has been reformatted with black.
buildservice-autocommit accepted request 732155 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 7)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 6)
- Update to 0.12.0:
  * Fix ZstdDecompressor.__init__ on 64-bit big-endian systems (#91).
  * Fix memory leak in ZstdDecompressionReader.seek() (#82).
  * CI transitioned to Azure Pipelines (from AppVeyor and Travis CI).
  * Switched to pytest for running tests (from nose).
buildservice-autocommit accepted request 705256 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 5)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 4)
- Update to 0.11.1:
  * Fix memory leak in ``ZstdDecompressionReader.seek()`` (#82).
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 701351 from Todd R's avatar Todd R (TheBlackCat) (revision 3)
initialized devel package after accepting 701351
Displaying revisions 1 - 20 of 22
openSUSE Build Service is sponsored by