aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/setuptools/py3
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-03-10 19:22:41 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-03-10 19:31:09 +0300
commit13a34e8a2fe1c3498a9a3e1d56202bb29eb5d17b (patch)
treef188fb0f394d6b20e68951e88cf555610dad8cf1 /contrib/python/setuptools/py3
parente0439374e8770430b5a391cea94769059544e2a2 (diff)
downloadydb-13a34e8a2fe1c3498a9a3e1d56202bb29eb5d17b.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/python/setuptools/py3')
-rw-r--r--contrib/python/setuptools/py3/.dist-info/METADATA5
-rw-r--r--contrib/python/setuptools/py3/setuptools/build_meta.py11
-rw-r--r--contrib/python/setuptools/py3/ya.make2
3 files changed, 13 insertions, 5 deletions
diff --git a/contrib/python/setuptools/py3/.dist-info/METADATA b/contrib/python/setuptools/py3/.dist-info/METADATA
index 6abcbef24b..237cc66f13 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.1.0
+Version: 69.1.1
Summary: Easily download, build, install, upgrade, and uninstall Python packages
Home-page: https://github.com/pypa/setuptools
Author: Python Packaging Authority
@@ -43,6 +43,7 @@ Requires-Dist: flake8-2020 ; extra == 'testing'
Requires-Dist: virtualenv >=13.0.0 ; extra == 'testing'
Requires-Dist: wheel ; extra == 'testing'
Requires-Dist: pip >=19.1 ; extra == 'testing'
+Requires-Dist: packaging >=23.2 ; extra == 'testing'
Requires-Dist: jaraco.envs >=2.2 ; extra == 'testing'
Requires-Dist: pytest-xdist ; extra == 'testing'
Requires-Dist: jaraco.path >=3.2.0 ; extra == 'testing'
@@ -63,7 +64,7 @@ Requires-Dist: jaraco.path >=3.2.0 ; extra == 'testing-integration'
Requires-Dist: jaraco.envs >=2.2 ; extra == 'testing-integration'
Requires-Dist: build[virtualenv] >=1.0.3 ; extra == 'testing-integration'
Requires-Dist: filelock >=3.4.0 ; extra == 'testing-integration'
-Requires-Dist: packaging >=23.1 ; extra == 'testing-integration'
+Requires-Dist: packaging >=23.2 ; extra == 'testing-integration'
Requires-Dist: pytest-cov ; (platform_python_implementation != "PyPy") and extra == 'testing'
Requires-Dist: pytest-mypy >=0.9.1 ; (platform_python_implementation != "PyPy") and extra == 'testing'
Requires-Dist: jaraco.develop >=7.21 ; (python_version >= "3.9" and sys_platform != "cygwin") and extra == 'testing'
diff --git a/contrib/python/setuptools/py3/setuptools/build_meta.py b/contrib/python/setuptools/py3/setuptools/build_meta.py
index 0a0abfdae0..2decd2d214 100644
--- a/contrib/python/setuptools/py3/setuptools/build_meta.py
+++ b/contrib/python/setuptools/py3/setuptools/build_meta.py
@@ -369,7 +369,12 @@ class _BuildMetaBackend(_ConfigSettingsTranslator):
return self._bubble_up_info_directory(metadata_directory, ".dist-info")
def _build_with_temp_dir(
- self, setup_command, result_extension, result_directory, config_settings
+ self,
+ setup_command,
+ result_extension,
+ result_directory,
+ config_settings,
+ arbitrary_args=(),
):
result_directory = os.path.abspath(result_directory)
@@ -384,6 +389,7 @@ class _BuildMetaBackend(_ConfigSettingsTranslator):
*setup_command,
"--dist-dir",
tmp_dist_dir,
+ *arbitrary_args,
]
with no_install_setup_requires():
self.run_setup()
@@ -402,10 +408,11 @@ class _BuildMetaBackend(_ConfigSettingsTranslator):
):
with suppress_known_deprecation():
return self._build_with_temp_dir(
- ['bdist_wheel', *self._arbitrary_args(config_settings)],
+ ['bdist_wheel'],
'.whl',
wheel_directory,
config_settings,
+ self._arbitrary_args(config_settings),
)
def build_sdist(self, sdist_directory, config_settings=None):
diff --git a/contrib/python/setuptools/py3/ya.make b/contrib/python/setuptools/py3/ya.make
index 564d268875..4210fba192 100644
--- a/contrib/python/setuptools/py3/ya.make
+++ b/contrib/python/setuptools/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(69.1.0)
+VERSION(69.1.1)
LICENSE(MIT)