From 63f55c13efc7e9a8d4155bd856d7bf12c10b8fb5 Mon Sep 17 00:00:00 2001 From: ThibaultLSDC Date: Fri, 20 Dec 2024 18:10:18 +0100 Subject: [PATCH] limiting to python 3.11 and above --- .github/workflows/unit_tests.yml | 4 ++-- README.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 3342ba54..03371570 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -25,8 +25,8 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 - with: - python-version: '3.10' + with: # python at least 3.11 + python-version: '3.11' cache: 'pip' # caching pip dependencies - name: Install AgentLab diff --git a/README.md b/README.md index 7abeb65c..0c0ff0c5 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,8 @@ AgentLab Features: ## 🛠️ Setup AgentLab +AgentLab requires python 3.11 or higher. + ```bash pip install agentlab ```