File python-attrs.changes of Package python-attrs
435
1
-------------------------------------------------------------------
2
Thu May 14 06:45:13 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
3
4
- Do not restrict us to new setuptools, we generate stuff
5
even with the older variants
6
7
-------------------------------------------------------------------
8
Mon Oct 21 08:44:11 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
9
10
- update to 19.3.0
11
* Fixed auto_attribs usage when default values cannot be compared directly
12
with ==, such as numpy arrays.
13
14
-------------------------------------------------------------------
15
Fri Oct 4 02:34:32 UTC 2019 - Arun Persaud <arun@gmx.de>
16
17
- update to version 19.2.0:
18
* Backward-incompatible Changes
19
+ Removed deprecated "Attribute" attribute "convert" per scheduled
20
removal on 2019/1. This planned deprecation is tracked in issue
21
`#307 <https://github.com/python-attrs/attrs/issues/307>`_.
22
`#504 <https://github.com/python-attrs/attrs/issues/504>`_
23
+ "__lt__", "__le__", "__gt__", and "__ge__" do not consider
24
subclasses comparable anymore. This has been deprecated since
25
18.2.0 and was raising a "DeprecationWarning" for over a year.
26
`#570 <https://github.com/python-attrs/attrs/issues/570>`_
27
* Deprecations
28
+ The "cmp" argument to "attr.s()" and "attr.ib()" is now
29
deprecated. Please use "eq" to add equality methods ("__eq__"
30
and "__ne__") and "order" to add ordering methods ("__lt__",
31
"__le__", "__gt__", and "__ge__") instead – just like with
32
`dataclasses
33
<https://docs.python.org/3/library/dataclasses.html>`_. Both
34
are effectively "True" by default but it's enough to set
35
"eq=False" to disable both at once. Passing "eq=False,
36
order=True" explicitly will raise a "ValueError" though. Since
37
this is arguably a deeper backward-compatibility break, it will
38
have an extended deprecation period until 2021-06-01. After
39
that day, the "cmp" argument will be removed. "attr.Attribute"
40
also isn't orderable anymore. `#574
41
<https://github.com/python-attrs/attrs/issues/574>`_
42
* Changes
43
+ Updated "attr.validators.__all__" to include new validators
44
added in `#425`_. `#517
45
<https://github.com/python-attrs/attrs/issues/517>`_
46
+ Slotted classes now use a pure Python mechanism to rewrite the
47
"__class__" cell when rebuilding the class, so "super()" works
48
even on environments where "ctypes" is not installed. `#522
49
<https://github.com/python-attrs/attrs/issues/522>`_
50
+ When collecting attributes using "@attr.s(auto_attribs=True)",
51
attributes with a default of "None" are now deleted too. `#523
52
<https://github.com/python-attrs/attrs/issues/523>`_, `#556
53
<https://github.com/python-attrs/attrs/issues/556>`_
54
+ Fixed "attr.validators.deep_iterable()" and
55
"attr.validators.deep_mapping()" type stubs. `#533
56
<https://github.com/python-attrs/attrs/issues/533>`_
57
+ "attr.validators.is_callable()" validator now raises an
58
exception "attr.exceptions.NotCallableError", a subclass of
59
"TypeError", informing the received value. `#536
60
<https://github.com/python-attrs/attrs/issues/536>`_
61
+ "@attr.s(auto_exc=True)" now generates classes that are hashable
62
by ID, as the documentation always claimed it would. `#543
63
<https://github.com/python-attrs/attrs/issues/543>`_, `#563
64
<https://github.com/python-attrs/attrs/issues/563>`_
65
+ Added "attr.validators.matches_re()" that checks string
66
attributes whether they match a regular expression. `#552
67
<https://github.com/python-attrs/attrs/issues/552>`_
68
+ Keyword-only attributes ("kw_only=True") and attributes that are
69
excluded from the "attrs"'s "__init__" ("init=False") now can
70
appear before mandatory attributes. `#559
71
<https://github.com/python-attrs/attrs/issues/559>`_
72
+ The fake filename for generated methods is now more stable. It
73
won't change when you restart the process. `#560
74
<https://github.com/python-attrs/attrs/issues/560>`_
75
+ The value passed to "@attr.ib(repr=…)" can now be either a
76
boolean (as before) or a callable. That callable must return a
77
string and is then used for formatting the attribute by the
78
generated "__repr__()" method. `#568
79
<https://github.com/python-attrs/attrs/issues/568>`_
80
+ Added "attr.__version_info__" that can be used to reliably check
81
the version of "attrs" and write forward- and
82
backward-compatible code. Please check out the `section on
83
deprecated APIs
84
<http://www.attrs.org/en/stable/api.html#deprecated-apis>`_ on
85
how to use it. `#580
86
<https://github.com/python-attrs/attrs/issues/580>`_
87
88
-------------------------------------------------------------------
89
Mon Aug 12 11:20:18 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
90
91
- Switch to multibuild to enable tests
92
93
-------------------------------------------------------------------
94
Mon Mar 4 20:07:57 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
95
96
- update to 19.1.0
97
* Fixed a bug where deserialized objects with cache_hash=True could have
98
incorrect hash code values
99
* Add is_callable, deep_iterable, and deep_mapping validators.
100
* Fixed stub files to prevent errors raised by mypy's
101
disallow_any_generics = True option.
102
* Attributes with init=False now can follow after kw_only=True attributes.
103
* attrs now has first class support for defining exception classes.
104
* Clarified documentation for hashing to warn that hashable objects should
105
be deeply immutable
106
107
-------------------------------------------------------------------
108
Thu Dec 6 10:06:08 UTC 2018 - Tomáš Chvátal <tchvatal@suse.com>
109
110
- Fix fdupes call
111
112
-------------------------------------------------------------------
113
Sat Sep 1 18:34:11 UTC 2018 - arun@gmx.de
114
115
- specfile:
116
- removed devel from noarch package
117
- be more specific in %files section
118
119
- update to version 18.2.0:
120
* Deprecations
121
+ Comparing subclasses using "<", ">", "<=", and ">=" is now
122
deprecated. The docs always claimed that instances are only
123
compared if the types are identical, so this is a first step to
124
conform to the docs. Equality operators ("==" and "!=") were
125
always strict in this regard. issue 394
126
* Changes
127
+ "attrs" now ships its own PEP 484 type hints. Together with
128
mypy's "attrs" plugin, you've got all you need for writing
129
statically typed code in both Python 2 and 3! At that occasion,
130
we've also added `narrative docs` about type annotations in
131
"attrs". issue #238
132
+ Added *kw_only* arguments to "attr.ib" and "attr.s", and a
133
corresponding *kw_only* attribute to "attr.Attribute". This
134
change makes it possible to have a generated "__init__" with
135
keyword-only arguments on Python 3, relaxing the required
136
ordering of default and non-default valued attributes. issues #281, #411
137
+ The test suite now runs with "hypothesis.HealthCheck.too_slow"
138
disabled to prevent CI breakage on slower computers. issues
139
#364, #396
140
+ "attr.validators.in_()" now raises a "ValueError" with a useful
141
message even if the options are a string and the value is not a
142
string. issue #383
143
+ "attr.asdict()" now properly handles deeply nested lists and
144
dictionaries. issue #395
145
+ Added "attr.converters.default_if_none()" that allows to replace
146
"None" values in attributes. For example
147
"attr.ib(converter=default_if_none(""))" replaces "None" by
148
empty strings. issues #400, #414
149
+ Fixed a reference leak where the original class would remain
150
live after being replaced when "slots=True" is set. isue #407
151
+ Slotted classes can now be made weakly referenceable by passing
152
"@attr.s(weakref_slot=True)". issue #420
153
+ Added *cache_hash* option to "@attr.s" which causes the hash
154
code to be computed once and stored on the object. issue #425
155
+ Attributes can be named "property" and "itemgetter" now. issue
156
#430
157
+ It is now possible to override a base class' class variable
158
using only class annotations. issue #431
159
160
-------------------------------------------------------------------
161
Sun May 6 05:40:54 UTC 2018 - arun@gmx.de
162
163
- update to version 18.1.0:
164
* "x=X(); x.cycle = x; repr(x)" will no longer raise a
165
"RecursionError", and will instead show as "X(x=...)".
166
* "attr.ib(factory=f)" is now syntactic sugar for the common case of
167
"attr.ib(default=attr.Factory(f))".
168
* Added "attr.field_dict()" to return an ordered dictionary of
169
"attrs" attributes for a class, whose keys are the attribute
170
names.
171
* The order of attributes that are passed into "attr.make_class()"
172
or the "these" argument of "@attr.s()" is now retained if the
173
dictionary is ordered (i.e. "dict" on Python 3.6 and later,
174
"collections.OrderedDict" otherwise).
175
* Before, the order was always determined by the order in which the
176
attributes have been defined which may not be desirable when
177
creating classes programatically.
178
* In slotted classes, "__getstate__" and "__setstate__" now ignore
179
the "__weakref__" attribute.
180
* Setting the cell type is now completely best effort. This fixes
181
"attrs" on Jython. We cannot make any guarantees regarding Jython
182
though, because our test suite cannot run due to dependency
183
incompatabilities.
184
* If "attr.s" is passed a *these* argument, it will not attempt to
185
remove attributes with the same name from the class body anymore.
186
* The hash of "attr.NOTHING" is now vegan and faster on 32bit Python
187
builds.
188
* The overhead of instantiating frozen dict classes is virtually
189
eliminated.
190
* Generated "__init__" methods now have an "__annotations__"
191
attribute derived from the types of the fields.
192
* We have restructured the documentation a bit to account for
193
"attrs"' growth in scope. Instead of putting everything into the
194
`examples <http://www.attrs.org/en/stable/examples.html>`_ page,
195
we have started to extract narrative chapters.
196
197
-------------------------------------------------------------------
198
Wed Jan 3 23:08:32 UTC 2018 - arun@gmx.de
199
200
- specfile:
201
* update copyright year
202
203
- update to version 17.4.0:
204
* Backward-incompatible Changes
205
+ The traversal of MROs when using multiple inheritance was
206
backward:
207
If you defined a class "C" that subclasses "A" and "B" like
208
"C(A, B)", "attrs" would have collected the attributes from "B"
209
*before* those of "A".
210
This is now fixed and means that in classes that employ multiple
211
inheritance, the output of "__repr__" and the order of
212
positional arguments in "__init__" changes.
213
Due to the nature of this bug, a proper deprecation cycle was
214
unfortunately impossible.
215
Generally speaking, it's advisable to prefer "kwargs"-based
216
initialization anyways – *especially* if you employ multiple
217
inheritance and diamond-shaped hierarchies.
218
+ The "__repr__" set by "attrs" no longer produces an
219
"AttributeError" when the instance is missing some of the
220
specified attributes (either through deleting or after using
221
"init=False" on some attributes).
222
This can break code that relied on "repr(attr_cls_instance)"
223
raising "AttributeError" to check if any attr-specified members
224
were unset.
225
If you were using this, you can implement a custom method for
226
checking this::
227
228
def has_unset_members(self):
229
for field in attr.fields(type(self)):
230
try:
231
getattr(self, field.name)
232
except AttributeError:
233
return True
234
return False
235
* Deprecations
236
+ The "attr.ib(convert=callable)" option is now deprecated in
237
favor of "attr.ib(converter=callable)".
238
This is done to achieve consistency with other noun-based
239
arguments like *validator*. *convert* will keep working until
240
at least January 2019 while raising a "DeprecationWarning".
241
242
* Changes
243
+ Generated "__hash__" methods now hash the class type along with
244
the attribute values. Until now the hashes of two classes with
245
the same values were identical which was a bug.
246
The generated method is also *much* faster now.
247
+ "attr.ib"’s "metadata" argument now defaults to a unique empty
248
"dict" instance instead of sharing a common empty "dict" for
249
all. The singleton empty "dict" is still enforced.
250
+ "ctypes" is optional now however if it's missing, a bare
251
"super()" will not work in slots classes. This should only
252
happen in special environments like Google App Engine.
253
+ The attribute redefinition feature introduced in 17.3.0 now
254
takes into account if an attribute is redefined via multiple
255
inheritance. In that case, the definition that is closer to the
256
base of the class hierarchy wins.
257
+ Subclasses of "auto_attribs=True" can be empty now.
258
+ Equality tests are *much* faster now.
259
+ All generated methods now have correct "__module__", "__name__",
260
and (on Python 3) "__qualname__" attributes.
261
262
-------------------------------------------------------------------
263
Thu Dec 21 16:10:47 UTC 2017 - jmatejek@suse.com
264
265
- add test requirements, run tests conditionally
266
(not BuildRequiring pytest fixes bsc#1073845)
267
268
-------------------------------------------------------------------
269
Thu Nov 9 18:50:46 UTC 2017 - arun@gmx.de
270
271
- update to version 17.3.0:
272
* Backward-incompatible Changes
273
+ Attributes are not defined on the class body anymore. This
274
means that if you define a class "C" with an attribute "x", the
275
class will *not* have an attribute "x" for introspection
276
anymore. Instead of "C.x", use "attr.fields(C).x" or look at
277
"C.__attrs_attrs__". The old behavior has been deprecated since
278
version 16.1. (`#253
279
<https://github.com/python-attrs/attrs/issues/253>`_)
280
* Changes
281
+ "super()" and "__class__" now work on Python 3 when
282
"slots=True". (`#102
283
<https://github.com/python-attrs/attrs/issues/102>`_, `#226
284
<https://github.com/python-attrs/attrs/issues/226>`_, `#269
285
<https://github.com/python-attrs/attrs/issues/269>`_, `#270
286
<https://github.com/python-attrs/attrs/issues/270>`_, `#272
287
<https://github.com/python-attrs/attrs/issues/272>`_)- Added
288
"type" argument to "attr.ib()" and corresponding "type"
289
attribute to "attr.Attribute". This change paves the way for
290
automatic type checking and serialization (though as of this
291
release "attrs" does not make use of it). In Python 3.6 or
292
higher, the value of "attr.Attribute.type" can alternately be
293
set using variable type annotations (see `PEP 526
294
<https://www.python.org/dev/peps/pep-0526/>`_). (`#151
295
<https://github.com/python-attrs/attrs/issues/151>`_, `#214
296
<https://github.com/python-attrs/attrs/issues/214>`_, `#215
297
<https://github.com/python-attrs/attrs/issues/215>`_, `#239
298
<https://github.com/python-attrs/attrs/issues/239>`_)
299
+ The combination of "str=True" and "slots=True" now works on
300
Python 2. (`#198
301
<https://github.com/python-attrs/attrs/issues/198>`_)
302
+ "attr.Factory" is hashable again. (`#204
303
<https://github.com/python-attrs/attrs/issues/204>`_)
304
+ Subclasses now can overwrite attribute definitions of their
305
superclass. That means that you can -- for example -- change
306
the default value for an attribute by redefining it. (`#221
307
<https://github.com/python-attrs/attrs/issues/221>`_, `#229
308
<https://github.com/python-attrs/attrs/issues/229>`_)
309
+ Added new option "auto_attribs" to "@attr.s" that allows to
310
collect annotated fields without setting them to "attr.ib()".
311
Setting a field to an "attr.ib()" is still possible to supply
312
options like validators. Setting it to any other value is
313
treated like it was passed as "attr.ib(default=value)" --
314
passing an instance of "attr.Factory" also works as expected.
315
(`#262 <https://github.com/python-attrs/attrs/issues/262>`_,
316
`#277 <https://github.com/python-attrs/attrs/issues/277>`_)
317
+ Instances of classes created using "attr.make_class()" can now
318
be pickled. (`#282
319
<https://github.com/python-attrs/attrs/issues/282>`_)
320
321
-------------------------------------------------------------------
322
Tue Jul 4 05:04:08 UTC 2017 - tbechtold@suse.com
323
324
- update to 17.2.0:
325
- Validators are hashable again.
326
- ``attrs`` will set the ``__hash__()`` method to ``None`` by default now.
327
The way hashes were handled before was in conflict with `Python's
328
specification
329
This *may* break some software although this breakage is most likely just
330
surfacing of latent bugs.
331
You can always make ``attrs`` create the ``__hash__()`` method using
332
``@attr.s(hash=True)``. See `#136`_ for the rationale of this change.
333
- Correspondingly, ``attr.ib``'s ``hash`` argument is ``None`` by default too
334
and mirrors the ``cmp`` argument as it should.
335
- ``attr.assoc()`` is now deprecated in favor of ``attr.evolve()`` and will
336
stop working in 2018.
337
- Fix default hashing behavior.
338
Now *hash* mirrors the value of *cmp* and classes are unhashable by default.
339
- Added ``attr.evolve()`` that, given an instance of an ``attrs`` class and
340
field changes as keyword arguments, will instantiate a copy of the given
341
instance with the changes applied.
342
- ``FrozenInstanceError`` is now raised when trying to delete an attribute
343
from a frozen class.
344
- Frozen-ness of classes is now inherited.
345
- ``__attrs_post_init__()`` is now run if validation is disabled.
346
- Added ``attr.validators.in_(options)`` that, given the allowed `options`,
347
checks whether the attribute value is in it.
348
This can be used to check constants, enums, mappings, etc.
349
- Added ``attr.validators.and_()`` that composes multiple validators into one.
350
- For convenience, the ``validator`` argument of ``@attr.s`` now can take a
351
``list`` of validators that are wrapped using ``and_()``.
352
- Accordingly, ``attr.validators.optional()`` now can take a ``list`` of
353
validators too.
354
- Validators can now be defined conveniently inline by using the attribute as
355
a decorator.
356
- ``attr.Factory()`` now has a ``takes_self`` argument that makes the
357
initializer to pass the partially initialized instance into the factory.
358
In other words you can define attribute defaults based on other attributes.
359
- Default factories can now also be defined inline using decorators.
360
They are *always* passed the partially initialized instance.
361
- Conversion can now be made optional using ``attr.converters.optional()``.
362
- ``attr.make_class()`` now accepts the keyword argument ``bases`` which
363
allows for subclassing.
364
- Metaclasses are now preserved with ``slots=True``.
365
- Attributes now can have user-defined metadata which greatly improves
366
``attrs``'s extensibility.
367
- Allow for a ``__attrs_post_init__()`` method that -- if defined -- will get
368
called at the end of the ``attrs``-generated ``__init__()`` method.
369
- Added ``@attr.s(str=True)`` that will optionally create a ``__str__()``
370
method that is identical to ``__repr__()``.
371
- ``__name__`` is not overwritten with ``__qualname__`` for
372
``attr.s(slots=True)`` classes anymore.
373
- Added ``attr.astuple()`` that -- similarly to ``attr.asdict()`` --
374
returns the instance as a tuple.
375
- Converts now work with frozen classes.
376
- Instantiation of ``attrs`` classes with converters is now significantly
377
faster.
378
- Pickling now works with ``__slots__`` classes.
379
- ``attr.assoc()`` now works with ``__slots__`` classes.
380
- The tuple returned by ``attr.fields()`` now also allows to access the
381
``Attribute`` instances by name.
382
- All instances where function arguments were called ``cl`` have been changed
383
to the more Pythonic ``cls``.
384
- Accessing ``Attribute`` instances on class objects is now deprecated and
385
will stop working in 2017.
386
- The serious business aliases ``attr.attributes`` and ``attr.attr`` have been
387
deprecated in favor of ``attr.attrs`` and ``attr.attrib`` which are much
388
more consistent and frankly obvious in hindsight.
389
- ``attr.asdict()``\ 's ``dict_factory`` arguments is now propagated on
390
recursion.
391
- ``attr.asdict()``, ``attr.has()`` and ``attr.fields()`` are significantly
392
faster.
393
- Add ``attr.attrs`` and ``attr.attrib`` as a more consistent aliases for
394
``attr.s`` and ``attr.ib``.
395
- Add ``frozen`` option to ``attr.s`` that will make instances best-effort
396
immutable.
397
- ``attr.asdict()`` now takes ``retain_collection_types`` as an argument.
398
399
-------------------------------------------------------------------
400
Sat Jul 1 14:53:33 UTC 2017 - okurz@suse.com
401
402
- Convert to singlespec
403
404
-------------------------------------------------------------------
405
Tue Jul 5 17:20:56 UTC 2016 - hpj@urpla.net
406
407
- update to 16.0.0
408
Backward-incompatible changes:
409
* Python 3.3 and 2.6 aren’t supported anymore. They may work by chance but
410
any effort to keep them working has ceased.
411
The last Python 2.6 release was on October 29, 2013 and isn’t supported by
412
the CPython core team anymore. Major Python packages like Django and Twisted
413
dropped Python 2.6 a while ago already.
414
Python 3.3 never had a significant user base and wasn’t part of any
415
distribution’s LTS release.
416
Changes:
417
* __slots__ have arrived! Classes now can automatically be slots-style (and
418
save your precious memory) just by passing slots=True. #35
419
* Allow the case of initializing attributes that are set to init=False. This
420
allows for clean initializer parameter lists while being able to initialize
421
attributes to default values. #32
422
* attr.asdict can now produce arbitrary mappings instead of Python dicts when
423
provided with a dict_factory argument. #40 Multiple performance improvements.
424
425
-------------------------------------------------------------------
426
Thu Jun 2 07:58:54 UTC 2016 - tbechtold@suse.com
427
428
- fix Source url
429
430
-------------------------------------------------------------------
431
Thu Jun 2 07:10:13 UTC 2016 - jacobwinski@gmail.com
432
433
- Initial version
434
435