fix ci/cd

This commit is contained in:
Dmitry Afanasyev 2025-01-11 02:50:12 +03:00
parent 25be406269
commit 2c9e38278b
2 changed files with 4 additions and 4 deletions

View File

@ -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`:

View File

@ -5,7 +5,7 @@ description = "poetry requiremts creation"
authors = ["Dmitry Afanasyev <Balshbox@gmail.com>"]
[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"