From 9cf269b9fdcfd9662495038c87a59fad738aed97 Mon Sep 17 00:00:00 2001 From: Dmitry Afanasyev Date: Sat, 9 Mar 2024 02:58:31 +0300 Subject: [PATCH] fix build --- Dockerfile | 4 ++-- poetry/pyproject.toml | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6130a1..1d43c4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ENV PYTHONFAULTHANDLER=1 \ POETRY_NO_INTERACTION=1 \ POETRY_VIRTUALENVS_CREATE=false \ POETRY_CACHE_DIR='/var/cache/pypoetry' \ - PATH='"$PATH":/root/.poetry/bin' + PATH="$PATH:/root/.poetry/bin" RUN apt update \ && apt-get update \ @@ -31,7 +31,7 @@ RUN apt update \ nano \ && export TERM=xterm \ && pip install --upgrade pip \ - && pip install 'poetry=="$POETRY_VERSION"' \ + && pip install "poetry==$POETRY_VERSION" \ && poetry self add poetry-plugin-export \ # Cleaning cache: && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ diff --git a/poetry/pyproject.toml b/poetry/pyproject.toml index f0e1925..6145617 100644 --- a/poetry/pyproject.toml +++ b/poetry/pyproject.toml @@ -1,27 +1,27 @@ [tool.poetry] name = "main packages" -version = "1.0.2" +version = "1.1.2" description = "poetry requiremts creation" authors = ["Dmitry Afanasyev "] [tool.poetry.dependencies] -Python="^3.11" -aiohttp = "^3.8" +Python="^3.12" +aiohttp = "^3.9" loguru = "^0.7" requests = "^2.31" [tool.poetry.dev-dependencies] ipython = "^8.14" -black = "^23.7" -mypy = "^1.5" -flake8 = "^6.1" +black = "^24.2" +mypy = "^1.9" +flake8 = "^7.0" -pytest = "^7.4" +pytest = "^8.0" coverage = "^7.3" -safety = "^2.3" +safety = "^2" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.8.2"] build-backend = "poetry.core.masonry.api"