aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-12-06 09:24:41 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-12-06 09:56:40 +0300
commitfb545bcd943c9662eea8291f65eec416cc97e36f (patch)
tree893a2c42aa695955cb62df14039834c4f67e0855 /contrib/python
parentf2e1357f5a38ce869bcafe54922bbd8650e568eb (diff)
downloadydb-fb545bcd943c9662eea8291f65eec416cc97e36f.tar.gz
Update contrib/python/setuptools/py3 to 69.0.2
Diffstat (limited to 'contrib/python')
-rw-r--r--contrib/python/setuptools/py3/.dist-info/METADATA2
-rw-r--r--contrib/python/setuptools/py3/setuptools/dep_util.py14
-rw-r--r--contrib/python/setuptools/py3/ya.make2
3 files changed, 10 insertions, 8 deletions
diff --git a/contrib/python/setuptools/py3/.dist-info/METADATA b/contrib/python/setuptools/py3/.dist-info/METADATA
index 042bd6651c..ebe368510a 100644
--- a/contrib/python/setuptools/py3/.dist-info/METADATA
+++ b/contrib/python/setuptools/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: setuptools
-Version: 69.0.0
+Version: 69.0.2
Summary: Easily download, build, install, upgrade, and uninstall Python packages
Home-page: https://github.com/pypa/setuptools
Author: Python Packaging Authority
diff --git a/contrib/python/setuptools/py3/setuptools/dep_util.py b/contrib/python/setuptools/py3/setuptools/dep_util.py
index e30cd41b49..998ffa206e 100644
--- a/contrib/python/setuptools/py3/setuptools/dep_util.py
+++ b/contrib/python/setuptools/py3/setuptools/dep_util.py
@@ -1,14 +1,16 @@
-import warnings
-
from ._distutils import _modified
+from .warnings import SetuptoolsDeprecationWarning
def __getattr__(name):
- if name not in ['newer_pairwise_group']:
+ if name not in ['newer_group', 'newer_pairwise_group']:
raise AttributeError(name)
- warnings.warn(
+ SetuptoolsDeprecationWarning.emit(
"dep_util is Deprecated. Use functions from setuptools.modified instead.",
- DeprecationWarning,
- stacklevel=2,
+ "Please use `setuptools.modified` instead of `setuptools.dep_util`.",
+ see_url="https://github.com/pypa/setuptools/pull/4069",
+ due_date=(2024, 5, 21),
+ # Warning added in v69.0.0 on 2023/11/20,
+ # See https://github.com/pypa/setuptools/discussions/4128
)
return getattr(_modified, name)
diff --git a/contrib/python/setuptools/py3/ya.make b/contrib/python/setuptools/py3/ya.make
index fcc340f215..87de186610 100644
--- a/contrib/python/setuptools/py3/ya.make
+++ b/contrib/python/setuptools/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(69.0.0)
+VERSION(69.0.2)
LICENSE(MIT)