File tree 3 files changed +25
-0
lines changed
3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ v23.9.1
2
+ -------
3
+
4
+ * #593: Restore ``keyring.util.properties `` with deprecation warning for
5
+ backward compatibility.
6
+
1
7
v23.9.0
2
8
-------
3
9
Original file line number Diff line number Diff line change
1
+ """
2
+ Backward compat shim
3
+ """
4
+
5
+ import warnings
6
+
7
+ from .._compat import properties
8
+
9
+
10
+ NonDataProperty = properties .NonDataProperty
11
+ ClassProperty = properties .classproperty
12
+
13
+
14
+ warnings .warn (
15
+ "Properties from keyring.util are no longer supported. "
16
+ "Use jaraco.classes.properties instead." ,
17
+ DeprecationWarning ,
18
+ )
Original file line number Diff line number Diff line change @@ -17,3 +17,4 @@ filterwarnings=
17
17
ignore:Flake8Item is an Item subclass and should not be a collector:pytest.PytestWarning
18
18
19
19
ignore:OS_X module is deprecated
20
+ ignore:Properties from keyring.util
You can’t perform that action at this time.
0 commit comments