From c29012d979a1870a7fad336de149556e24e686f4 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 15 Sep 2026 11:36:03 +0500 Subject: [PATCH] conda/clean-old-versions: bump `anaconda-client` 1.14.0 fixes the use of deprecated `pgk_resources` warning (https://github.com/anaconda/anaconda-client/releases/tag/1.14.0). Though bumping to the latest version. Warning: ``` /home/runner/micromamba/envs/test-env/lib/python3.11/site-packages/binstar_client/__init__.py:15: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. ``` --- conda/clean-old-versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/clean-old-versions.py b/conda/clean-old-versions.py index b6fd3d1493..eb2abd3a95 100644 --- a/conda/clean-old-versions.py +++ b/conda/clean-old-versions.py @@ -1,7 +1,7 @@ # /// script # requires-python = ">=3.11" # dependencies = [ -# "anaconda-client==1.12.3", +# "anaconda-client==1.15.0", # ] # ///