| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python311-python-crfsuite | Distribution: openSUSE Tumbleweed |
| Version: 0.9.12 | Vendor: openSUSE |
| Release: 1.1 | Build date: Tue Jan 27 08:09:19 2026 |
| Group: Unspecified | Build host: reproducible |
| Size: 474060 | Source RPM: python-python-crfsuite-0.9.12-1.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://github.com/scrapinghub/python-crfsuite | |
| Summary: Python binding for CRFsuite | |
Python-crfsuite is a python binding to CRFsuite_.
MIT
* Tue Jan 27 2026 Dirk Müller <dmueller@suse.com>
- update to 0.9.12:
* Dropped support for Python 3.6, 3.7, 3.8, 3.9.
* Added support for Python 3.12, 3.13, 3.14.
* Python 3.11 Support
* Python 3.4 is no longer supported (it may work, but CI is
disabled)
* Python 3.8 support
* fixed installation issues on OS X (thanks @kvinwang)
* make it easier for distributions to have a reproducible build
(thanks @bmwiedemann)
* Python 3.7 support (thanks @fgregg, @danmacnaughtan and
@fuhrysteve).
* Python 3.3 support is dropped.
* new Tagger.open_inmemory method which allows to load tagger
data without having a file on-disk (thanks @lucywang000).
* license information is added to setup.py (thanks @nils-
werner).
* Python 3.6 wheels for Windows (thanks @fgregg).
* Packaging fix (thanks @fgregg).
* Fixed compatibility with Python 3.5+ on Windows (thanks
@fgregg);
* CRFSuite C++ library is updated to latest version, this fixes
several memory leaks and improves performance (thanks
@fgregg);
* extension is rebuilt with Cython 0.26.1.
* binary wheels for OS X and Linux (thanks @jeancochrane).
* Repository is moved to https://github.com/scrapinghub/python-
crfsuite;
* We're now providing Windows wheels for Python 2.7, 3.3. and
3.4.
* Python 2.6 support is dropped;
* CRFSuite C++ library is updated to a more recent commit;
* improved Windows support (thanks @fgregg);
* fixed building with gcc < 5.0.0 (thanks @kantan2015);
* extension is rebuilt with Cython 0.25.1; this improves PyPy
compatibility (but we're not quite there yet).
* docs: trainer.logparser example is added to the notebook
(thanks @samgalen).
* the wrapper is rebuilt with Cython 0.23.4;
* declared Python 3.5 compatibility;
* fixed an issue with feature names ending with white spaces.
* fix build on Windows. (thanks @fgregg)
* memory leak is fixed by updating the bundled CRFsuite C++
library;
* the wrapper is rebuilt with Cython 0.21.2.
* fix packaging issues with 0.8 release.
* :class:`~ItemSequence` wrapper is added;
* tox tests are fixed.
* More data formats for xseq: {"prefix": {feature_dict}} and
{"key": set(["key1",...])} feature dicts are now accepted by
:class:`pycrfsuite.Trainer` and :class:`pycrfsuite.Tagger`;
* feature separator changed from "=" to ":" (it looks better in
case of multi-level features);
* small doc and README fixes.
* Switch to setuptools;
* wheels are uploaded to pypi for faster installation.
* More data formats for xseq: {"key": "value"} and {"key":
bool_value} feature dicts are now accepted by
:class:`pycrfsuite.Trainer` and :class:`pycrfsuite.Tagger`.
* Exceptions in logging message handlers are now propagated and
raised. This allows, for example, to stop training earlier by
pressing Ctrl-C.
* It is now possible to customize :class:`pycrfsuite.Trainer`
logging more easily by overriding the following methods:
:meth:`pycrfsuite.Trainer.on_start`,
:meth:`pycrfsuite.Trainer.on_featgen_progress`,
:meth:`pycrfsuite.Trainer.on_featgen_end`,
:meth:`pycrfsuite.Trainer.on_prepared`,
:meth:`pycrfsuite.Trainer.on_prepare_error`,
:meth:`pycrfsuite.Trainer.on_iteration`,
:meth:`pycrfsuite.Trainer.on_optimization_end`
:meth:`pycrfsuite.Trainer.on_end`. The feature is implemented
by parsing CRFsuite log. There is
:class:`pycrfsuite.BaseTrainer` that is not doing this.
* :meth:`pycrfsuite.Tagger.info()` is fixed.
* (backwards-incompatible) training parameters are now passed
using params argument of :class:`pycrfsuite.Trainer`
constructor instead of **kwargs;
* (backwards-incompatible) logging support is dropped;
* verbose argument for :class:`pycrfsuite.Trainer` constructor;
* :meth:`pycrfsuite.Trainer.get_params` and
:meth:`pycrfsuite.Trainer.set_params` for getting/setting
multiple training parameters at once;
* string handling in Python 3.x is fixed by rebuilding the
wrapper with Cython 0.21dev;
* algorithm names are normalized to support names used by
crfsuite console utility and documented in crfsuite manual;
* type conversion for training parameters is fixed:
feature.minfreq now works, and boolean arguments become
boolean.
* Trainer.append_stringslists and Trainer.append_dicts methods
are replaced with a single :meth:`pycrfsuite.Trainer.append`
method;
* Tagger.set_stringlists and Tagger.set_dicts methods are
removed in favor of :meth:`pycrfsuite.Tagger.set` method;
* feature_format arguments in :class:`pycrfsuite.Tagger`
methods and constructor are dropped.
* :meth:`pycrfsuite.Tagger.dump()` and
:meth:`pycrfsuite.Tagger.info()` methods for model debugging;
* a memory leak in Trainer is fixed (trainer instances were
never garbage collected);
* documentation and testing improvements.
* Wed Jun 11 2025 Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
* Wed Feb 12 2025 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.9.11
* Cleaned up install
* Unicode allowed
* Compiling on additional platforms
- Add Cython to BuildRequires
- Adjust upstream source name in spec file
- Drop 159.patch, merged upstream
- Exclude C++ source and header files in %files section
* Wed Jun 12 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Cherry-pick upstream patch to fix build with GCC 14
* https://github.com/scrapinghub/python-crfsuite/pull/159.patch
* Tue Dec 26 2023 Dirk Müller <dmueller@suse.com>
- update to 0.9.10:
* Add support for python 3.12 and drop python 2.7 support
* Tue Feb 21 2023 Daniel Garcia <daniel.garcia@suse.com>
- Delete rebuild-extension.patch
- Update to 0.9.9
* Support for CPython 3.11
- 0.9.8
* Support for 3.10 added
* Mon Feb 21 2022 Steve Kowalik <steven.kowalik@suse.com>
- Add patch rebuild-extension.patch:
* Included sources now regenerated with a new version of Cython to
fix the build for Python 3.10.
* Fri Mar 20 2020 pgajdos@suse.com
- version update to 0.9.7
* Python 3.4 is no longer supported (it may work, but CI is disabled)
* Python 3.8 support
* fixed installation issues on OS X (thanks @kvinwang)
* make it easier for distributions to have a reproducible build
(thanks @bmwiedemann)
* Sat Feb 09 2019 John Vandenberg <jayvdb@gmail.com>
- Update to v0.9.6
+ Python 3.7 support
+ new Tagger.open_inmemory method which allows to load tagger
data without having a file on-disk
- Add %license
* Tue Nov 07 2017 toddrme2178@gmail.com
- initial version for v0.9.5
/usr/lib64/python3.11/site-packages/pycrfsuite /usr/lib64/python3.11/site-packages/pycrfsuite/__init__.py /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__ /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__/__init__.cpython-311.pyc /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__/_dumpparser.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__/_dumpparser.cpython-311.pyc /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__/_logparser.cpython-311.opt-1.pyc /usr/lib64/python3.11/site-packages/pycrfsuite/__pycache__/_logparser.cpython-311.pyc /usr/lib64/python3.11/site-packages/pycrfsuite/_dumpparser.py /usr/lib64/python3.11/site-packages/pycrfsuite/_logparser.py /usr/lib64/python3.11/site-packages/pycrfsuite/_pycrfsuite.cpython-311-aarch64-linux-gnu.so /usr/lib64/python3.11/site-packages/pycrfsuite/_pycrfsuite.pyx /usr/lib64/python3.11/site-packages/pycrfsuite/crfsuite_api.pxd /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/INSTALLER /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/METADATA /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/RECORD /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/REQUESTED /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/WHEEL /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/licenses /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/licenses/LICENSE.txt /usr/lib64/python3.11/site-packages/python_crfsuite-0.9.12.dist-info/top_level.txt /usr/share/doc/packages/python311-python-crfsuite /usr/share/doc/packages/python311-python-crfsuite/CHANGES.rst /usr/share/doc/packages/python311-python-crfsuite/README.rst /usr/share/licenses/python311-python-crfsuite /usr/share/licenses/python311-python-crfsuite/LICENSE.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Feb 9 11:32:33 2026