From 8b77810d84792f8ab881e29403e7354a78af48c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 May 2026 10:04:22 +0000 Subject: [PATCH] Bump pytest from 8.3.5 to 9.0.3 in /projects/scrape_ONS Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.5 to 9.0.3. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.5...9.0.3) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- projects/scrape_ONS/poetry.lock | 34 ++++++++++++++++++++++-------- projects/scrape_ONS/pyproject.toml | 2 +- 2 files changed, 26 insertions(+), 10 deletions(-) diff --git a/projects/scrape_ONS/poetry.lock b/projects/scrape_ONS/poetry.lock index c296b4a..8d65a49 100644 --- a/projects/scrape_ONS/poetry.lock +++ b/projects/scrape_ONS/poetry.lock @@ -476,26 +476,42 @@ files = [ [package.dependencies] typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" +[[package]] +name = "pygments" +version = "2.20.0" +description = "Pygments is a syntax highlighting package written in Python." +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176"}, + {file = "pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f"}, +] + +[package.extras] +windows-terminal = ["colorama (>=0.4.6)"] + [[package]] name = "pytest" -version = "8.3.5" +version = "9.0.3" description = "pytest: simple powerful testing with Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" groups = ["main"] files = [ - {file = "pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820"}, - {file = "pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845"}, + {file = "pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9"}, + {file = "pytest-9.0.3.tar.gz", hash = "sha256:b86ada508af81d19edeb213c681b1d48246c1a91d304c6c81a427674c17eb91c"}, ] [package.dependencies] -colorama = {version = "*", markers = "sys_platform == \"win32\""} -iniconfig = "*" -packaging = "*" +colorama = {version = ">=0.4", markers = "sys_platform == \"win32\""} +iniconfig = ">=1.0.1" +packaging = ">=22" pluggy = ">=1.5,<2" +pygments = ">=2.7.2" [package.extras] -dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "requests", "setuptools", "xmlschema"] [[package]] name = "python-dateutil" @@ -640,4 +656,4 @@ zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""] [metadata] lock-version = "2.1" python-versions = "^3.12" -content-hash = "ce192ba498cdc1a60ced2813013cd6508b38a161296cde8c435fa00b4e732509" +content-hash = "d062a80c58d57dcbfd3c45d31cd7dddd2d51eb365173ce9cf1249299db4912ca" diff --git a/projects/scrape_ONS/pyproject.toml b/projects/scrape_ONS/pyproject.toml index c6d6999..2dac052 100644 --- a/projects/scrape_ONS/pyproject.toml +++ b/projects/scrape_ONS/pyproject.toml @@ -13,7 +13,7 @@ requests = "^2.32.4" pydantic = "^2.11.2" tqdm = "^4.67.1" pandas = "^2.2.3" -pytest = "^8.3.5" +pytest = ">=8.3.5,<10.0.0" [build-system]