From 48995c7efd81cd0a961bb7f0b606cb4e0a3e6d5b Mon Sep 17 00:00:00 2001 From: Mycroft Kang Date: Mon, 29 Jan 2024 22:28:56 +0900 Subject: [PATCH] Downgrade pytest version to 7.4.4 --- poetry.lock | 20 ++++++++++---------- pyproject.toml | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/poetry.lock b/poetry.lock index ecbac0b8..d3ce2f70 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1934,13 +1934,13 @@ tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] [[package]] name = "pytest" -version = "8.0.0" +version = "7.4.4" description = "pytest: simple powerful testing with Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "pytest-8.0.0-py3-none-any.whl", hash = "sha256:50fb9cbe836c3f20f0dfa99c565201fb75dc54c8d76373cd1bde06b06657bdb6"}, - {file = "pytest-8.0.0.tar.gz", hash = "sha256:249b1b0864530ba251b7438274c4d251c58d868edaaec8762893ad4a0d71c36c"}, + {file = "pytest-7.4.4-py3-none-any.whl", hash = "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8"}, + {file = "pytest-7.4.4.tar.gz", hash = "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280"}, ] [package.dependencies] @@ -1948,7 +1948,7 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=1.3.0,<2.0" +pluggy = ">=0.12,<2.0" tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} [package.extras] @@ -1956,17 +1956,17 @@ testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "no [[package]] name = "pytest-asyncio" -version = "0.23.2" +version = "0.23.4" description = "Pytest support for asyncio" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-asyncio-0.23.2.tar.gz", hash = "sha256:c16052382554c7b22d48782ab3438d5b10f8cf7a4bdcae7f0f67f097d95beecc"}, - {file = "pytest_asyncio-0.23.2-py3-none-any.whl", hash = "sha256:ea9021364e32d58f0be43b91c6233fb8d2224ccef2398d6837559e587682808f"}, + {file = "pytest-asyncio-0.23.4.tar.gz", hash = "sha256:2143d9d9375bf372a73260e4114541485e84fca350b0b6b92674ca56ff5f7ea2"}, + {file = "pytest_asyncio-0.23.4-py3-none-any.whl", hash = "sha256:b0079dfac14b60cd1ce4691fbfb1748fe939db7d0234b5aba97197d10fbe0fef"}, ] [package.dependencies] -pytest = ">=7.0.0" +pytest = ">=7.0.0,<8" [package.extras] docs = ["sphinx (>=5.3)", "sphinx-rtd-theme (>=1.0)"] @@ -2745,4 +2745,4 @@ release = ["mulgyeol-telemetry"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.11" -content-hash = "d8a6196eac253615212cde5cf6bb851b720232aca798307b8a0adc9a788fae96" +content-hash = "f94d738e3eb0e0ef150ea0d2c0d63dff1729c7a0d5b4083d78b5344e8e1f0b7b" diff --git a/pyproject.toml b/pyproject.toml index 5bb057a3..35000497 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,8 +44,8 @@ debugpy = "^1.8.0" flake8 = "7.0.0" pre-commit = "2.17.0" pylint = "3.0.3" -pytest = "8.0.0" -pytest-asyncio = "0.23.2" +pytest = "7.4.4" +pytest-asyncio = "0.23.4" pytest-mock = "3.10.0" ipykernel = "^6.27.1" watchdog = "^3.0.0"