From 2c9e38278b82de65543f6ce3eb71a071438b5191 Mon Sep 17 00:00:00 2001 From: Dmitry Afanasyev Date: Sat, 11 Jan 2025 02:50:12 +0300 Subject: [PATCH] fix ci/cd --- .github/workflows/poetry-test.yml | 4 ++-- poetry/pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/poetry-test.yml b/.github/workflows/poetry-test.yml index 4b31da3..473609c 100644 --- a/.github/workflows/poetry-test.yml +++ b/.github/workflows/poetry-test.yml @@ -24,13 +24,13 @@ jobs: id: setup-python uses: actions/setup-python@v4 with: - python-version: '3.12.4' + python-version: '3.13.1' #---------------------------------------------- # ----- install & configure poetry ----- #---------------------------------------------- - name: Install poetry env: # Keep in sync with `POETRY_VERSION` in `Dockerfile` - POETRY_VERSION: "1.8.3" + POETRY_VERSION: "2.0.0" run: | curl -sSL "https://install.python-poetry.org" | python - # Adding `poetry` to `$PATH`: diff --git a/poetry/pyproject.toml b/poetry/pyproject.toml index 880b463..cb2accd 100644 --- a/poetry/pyproject.toml +++ b/poetry/pyproject.toml @@ -5,7 +5,7 @@ description = "poetry requiremts creation" authors = ["Dmitry Afanasyev "] [tool.poetry.dependencies] -Python="^3.12" +Python="^3.13" aiohttp = "^3.9" loguru = "^0.7" requests = "^2.31" @@ -23,5 +23,5 @@ coverage = "^7.3" safety = "^2" [build-system] -requires = ["poetry-core>=1.8.3"] +requires = ["poetry-core>=2.0.0"] build-backend = "poetry.core.masonry.api"