From 107181fae27293c014f8750e0c83a1c78fdd45de Mon Sep 17 00:00:00 2001 From: Alexander Myasoedov Date: Fri, 29 Nov 2024 23:57:13 +0200 Subject: [PATCH] feat(Deprecate py310): --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 1 - pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5288bb..2566d09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,10 +20,10 @@ jobs: - uses: actions/checkout@v3 - name: Install poetry run: pipx install poetry==$POETRY_VERSION - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.11" cache: "poetry" - name: Build project for distribution run: poetry build --format sdist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed56c72..2504afc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,6 @@ jobs: strategy: matrix: python-version: - - "3.10" - "3.11" - "3.12" steps: diff --git a/pyproject.toml b/pyproject.toml index 9bbc252..6abf0c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ packages = [{ include = "agentic_security", from = "." }] agentic_security = "agentic_security.__main__:entrypoint" [tool.poetry.dependencies] -python = "^3.10" +python = "^3.11" fastapi = "^0.115.2" uvicorn = "^0.32.0" fire = "0.7.0"