15
0
forked from pool/python-attrs

- update to 22.2.0:

* Python 3.5 is not supported anymore.
  * Python 3.6 is now deprecated and support will be removed in the next
    release.
  * `attrs.field()` now supports an *alias* option for explicit `__init__`
    argument names.
  * `attrs.NOTHING` is now an enum value, making it possible to use with
    e.g. `typing.Literal`.
  * Added missing re-import of `attr.AttrsInstance` to the `attrs`
    namespace.
  * Fix slight performance regression in classes with custom `__setattr__`
    and speedup even more.
  * Class-creation performance improvements by switching performance-
    sensitive templating operations to f-strings.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-attrs?expand=0&rev=40
This commit is contained in:
2023-01-02 19:24:09 +00:00
committed by Git OBS Bridge
parent 3d12fae104
commit 07655b9764
4 changed files with 24 additions and 6 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Fri Dec 23 11:38:48 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 22.2.0:
* Python 3.5 is not supported anymore.
* Python 3.6 is now deprecated and support will be removed in the next
release.
* `attrs.field()` now supports an *alias* option for explicit `__init__`
argument names.
* `attrs.NOTHING` is now an enum value, making it possible to use with
e.g. `typing.Literal`.
* Added missing re-import of `attr.AttrsInstance` to the `attrs`
namespace.
* Fix slight performance regression in classes with custom `__setattr__`
and speedup even more.
* Class-creation performance improvements by switching performance-
sensitive templating operations to f-strings.
-------------------------------------------------------------------
Tue Sep 20 10:55:27 UTC 2022 - pgajdos@suse.com