15
0
forked from pool/python-attrs

- update to 21.2.0:

* We had to revert the recursive feature for ``attr.evolve()`` because it
    broke some use-cases -- sorry!
  * Python 3.4 is now blocked using packaging metadata because ``attrs`` can't
    be imported on it anymore.
  * The long-awaited, much-talked-about, little-delivered ``import attrs`` is
    finally upon us!
  * The *cmp* argument to ``attr.s()`` and `attr.ib()` has been **undeprecated**
    It will continue to be supported as syntactic sugar to set *eq* and *order* in one go.
  * Further smaller changes, see included Changelog.md

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-attrs?expand=0&rev=33
This commit is contained in:
2021-05-27 16:42:45 +00:00
committed by Git OBS Bridge
parent 0253d15125
commit aabff92aa5
4 changed files with 20 additions and 6 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu May 27 16:40:29 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 21.2.0:
* We had to revert the recursive feature for ``attr.evolve()`` because it
broke some use-cases -- sorry!
* Python 3.4 is now blocked using packaging metadata because ``attrs`` can't
be imported on it anymore.
* The long-awaited, much-talked-about, little-delivered ``import attrs`` is
finally upon us!
* The *cmp* argument to ``attr.s()`` and `attr.ib()` has been **undeprecated**
It will continue to be supported as syntactic sugar to set *eq* and *order* in one go.
* Further smaller changes, see included Changelog.md
-------------------------------------------------------------------
Thu Nov 26 09:19:26 UTC 2020 - Dirk Mueller <dmueller@suse.com>