15
0

- update to 4.4.3:

* Remove zope.interface.
  * Fix an issue where auto_reload is enabled and a file is
    loaded from a package that wasn't zip-compressed.
  * Drop support for Python 3.7.
  * Fix names of dependencies for importlib_resources and
    importlib_metadata.
  * Local variable scope is now iterable,
    completing dict interface.
  * Minor optimizations to rendering logic.
  * Implicit translation now provides the translation context,
    domain, and target language to the translation function (if
    applicable). Previously, the target language was provided,
    but this did not respect a change via i18n:target.
  * Replace pkg_resources with newer and faster
    importlib.resources and importlib.metadata. Just importing
    pkg_resources becomes slower and slower the more packages are
    installed.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Chameleon?expand=0&rev=45
This commit is contained in:
2024-01-10 16:31:03 +00:00
committed by Git OBS Bridge
parent dbba8aaccf
commit 5ca6c74935
4 changed files with 30 additions and 5 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Wed Jan 10 16:27:29 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 4.4.3:
* Remove zope.interface.
* Fix an issue where auto_reload is enabled and a file is
loaded from a package that wasn't zip-compressed.
* Drop support for Python 3.7.
* Fix names of dependencies for importlib_resources and
importlib_metadata.
* Local variable scope is now iterable,
completing dict interface.
* Minor optimizations to rendering logic.
* Implicit translation now provides the translation context,
domain, and target language to the translation function (if
applicable). Previously, the target language was provided,
but this did not respect a change via i18n:target.
* Replace pkg_resources with newer and faster
importlib.resources and importlib.metadata. Just importing
pkg_resources becomes slower and slower the more packages are
installed.
-------------------------------------------------------------------
Mon Oct 2 07:19:53 UTC 2023 - Dirk Müller <dmueller@suse.com>