From 4bdb9f03549f901210dba39c1d72fc4502a4b55d Mon Sep 17 00:00:00 2001 From: Axel Theorell Date: Fri, 5 Jan 2024 13:34:48 +0100 Subject: [PATCH] restricting python support to 3.10-11 --- .github/workflows/ci.yaml | 2 +- README.md | 2 +- pyproject.toml | 2 +- tox.ini | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ae1e0829c7..6521a530ef 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.10', '3.11'] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 4ce86fd87d..72c647b10f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ For **development**: - `poetry install` - `poetry shell` to activate the virtual environment -We actively support Python 3.10 - 3.11. +We actively support Python 3.10 - 3.11. The last version to support python 3.8 - 3.9 was [0.2.6](https://pypi.org/project/gpt-engineer/0.2.6/). ### Setup API Key diff --git a/pyproject.toml b/pyproject.toml index 970e1e4473..987aadf5a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.dependencies] -python = ">=3.8.1,<3.12" # updated for llama-index dependency +python = ">=3.10,<3.12" # updated for llama-index dependency openai = "0.28" termcolor = "2.3.0" typer = ">=0.3.2" diff --git a/tox.ini b/tox.ini index 9918b1f909..a00a8ddb68 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38, py39, py310, py311, +envlist = py310, py311, isolated_build = True [testenv]