From 57e840574b5ca4d870fa145a46ac0b39ebf057b0 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 7 Dec 2023 08:27:34 +0100 Subject: [PATCH] [conda] Update python >= 3.10 --- conda/meta.yaml | 4 ++-- src/idiap_devtools/profile.py | 4 ++-- src/idiap_devtools/scripts/env.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index ca214bc..fe2828f 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -21,10 +21,10 @@ build: requirements: host: - - python >=3.9 + - python >=3.10 - pip run: - - python >=3.9 + - python >=3.10 - pip # conda/mamba ecosystem dependencies - conda diff --git a/src/idiap_devtools/profile.py b/src/idiap_devtools/profile.py index d076273..8edfffc 100644 --- a/src/idiap_devtools/profile.py +++ b/src/idiap_devtools/profile.py @@ -130,8 +130,8 @@ class Profile: Arguments: - python: The python version in the format "X.Y" (e.g. "3.9" or - "3.10") + python: The python version in the format "X.Y" (e.g. "3.11" or + "3.12") private: Set to ``True`` if we should use private channels/indexes to lookup dependencies. Should be ``False`` otherwise diff --git a/src/idiap_devtools/scripts/env.py b/src/idiap_devtools/scripts/env.py index 07d9a48..d0d55dc 100644 --- a/src/idiap_devtools/scripts/env.py +++ b/src/idiap_devtools/scripts/env.py @@ -284,7 +284,7 @@ Examples: .. code:: sh $ conda activate base - (base) devtool env -vv --python=3.9 --output=whatever-i-like.yaml . + (base) devtool env -vv --python=3.12 --output=whatever-i-like.yaml . 3. To develop multiple packages you checked out, just add the meta package files of all packages you wish to consider, then pip-install the packages -- GitLab