From 32b85e3fe468fa7e3330a1a80198d8ce2901497e Mon Sep 17 00:00:00 2001 From: Pavel Mackarichev Date: Tue, 14 Feb 2023 12:16:43 +0300 Subject: [PATCH] build: bump poetry version --- Dockerfile | 2 +- poetry.lock | 69 +------------------------------------------------- pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 71 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13fa4da..dc8d3a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9-slim-bullseye as base ENV POETRY_HOME=/etc/poetry \ - POETRY_VERSION=1.2.1 + POETRY_VERSION=1.3.1 ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" FROM base AS build diff --git a/poetry.lock b/poetry.lock index 1ce162c..9003a1b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -330,21 +330,6 @@ files = [ {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] -[[package]] -name = "exceptiongroup" -version = "1.1.0" -description = "Backport of PEP 654 (exception groups)" -category = "dev" -optional = false -python-versions = ">=3.7" -files = [ - {file = "exceptiongroup-1.1.0-py3-none-any.whl", hash = "sha256:327cbda3da756e2de031a3107b81ab7b3770a602c4d16ca618298c526f4bec1e"}, - {file = "exceptiongroup-1.1.0.tar.gz", hash = "sha256:bcb67d800a4497e1b404c2dd44fca47d3b7a5e5433dbab67f96c1a685cdfdf23"}, -] - -[package.extras] -test = ["pytest (>=6)"] - [[package]] name = "flatdict" version = "4.0.1" @@ -496,18 +481,6 @@ docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker perf = ["ipython"] testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] -[[package]] -name = "iniconfig" -version = "1.1.1" -description = "iniconfig: brain-dead simple config-ini parsing" -category = "dev" -optional = false -python-versions = "*" -files = [ - {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, - {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, -] - [[package]] name = "isort" version = "5.12.0" @@ -816,22 +789,6 @@ files = [ docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"] test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] -[[package]] -name = "pluggy" -version = "1.0.0" -description = "plugin and hook calling mechanisms for python" -category = "dev" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, -] - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - [[package]] name = "pyaml-env" version = "1.2.1" @@ -964,30 +921,6 @@ files = [ {file = "pyhumps-3.0.2.tar.gz", hash = "sha256:042b4b6eec6c1f862f8310c0eebbae19293e9edab8cafb030ff78c890ef1aa34"}, ] -[[package]] -name = "pytest" -version = "7.2.1" -description = "pytest: simple powerful testing with Python" -category = "dev" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pytest-7.2.1-py3-none-any.whl", hash = "sha256:c7c6ca206e93355074ae32f7403e8ea12163b1163c976fee7d4d84027c162be5"}, - {file = "pytest-7.2.1.tar.gz", hash = "sha256:d45e0952f3727241918b8fd0f376f5ff6b301cc0777c6f9a556935c92d8a7d42"}, -] - -[package.dependencies] -attrs = ">=19.2.0" -colorama = {version = "*", markers = "sys_platform == \"win32\""} -exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} -iniconfig = "*" -packaging = "*" -pluggy = ">=0.12,<2.0" -tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} - -[package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] - [[package]] name = "python-dateutil" version = "2.8.2" @@ -1407,4 +1340,4 @@ testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools" [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "a827b69e6e4f3b3e5c530638c2cddb1c1eada3a868dc0baff642df191636771e" +content-hash = "686768c1c56f358bfe055ddf848a09ebee3af051bdd8e358b938073a7d1b9464" diff --git a/pyproject.toml b/pyproject.toml index 8951673..d47758f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,6 @@ lark-parser = "^0.12.0" [tool.poetry.group.dev.dependencies] black = "^23.1.0" isort = "^5.12.0" -pytest = "^7.2.1" [tool.black] target-version = ['py39'] @@ -32,7 +31,7 @@ preview = true [tool.poetry.dev-dependencies] -pytest = "^6.2.5" +pytest = "^7.2.1" [build-system] requires = ["poetry-core>=1.0.0"]