From 87a21a40bb7b3e40d6adf04c41c6e441025f2488 Mon Sep 17 00:00:00 2001 From: Jessica Smith <12jessicasmith34@gmail.com> Date: Mon, 23 Dec 2024 15:25:13 -0600 Subject: [PATCH] fix(pyproject.toml): update aiohttp dependency to allow versions >=3.8.4 to ensure compatibility with newer versions chore(pyproject.toml): remove unused pytest-loguru dependency to clean up project dependencies --- poetry.lock | 53 ++------------------------------------------------ pyproject.toml | 3 +-- 2 files changed, 3 insertions(+), 53 deletions(-) diff --git a/poetry.lock b/poetry.lock index fa86ca6..1a59c3d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. [[package]] name = "aiohappyeyeballs" @@ -1326,24 +1326,6 @@ enabler = ["pytest-enabler (>=2.2)"] test = ["pyfakefs", "pytest (>=6,!=8.1.*)"] type = ["pygobject-stubs", "pytest-mypy", "shtab", "types-pywin32"] -[[package]] -name = "loguru" -version = "0.7.2" -description = "Python logging made (stupidly) simple" -optional = false -python-versions = ">=3.5" -files = [ - {file = "loguru-0.7.2-py3-none-any.whl", hash = "sha256:003d71e3d3ed35f0f8984898359d65b79e5b21943f78af86aa5491210429b8eb"}, - {file = "loguru-0.7.2.tar.gz", hash = "sha256:e671a53522515f34fd406340ee968cb9ecafbc4b36c679da03c18fd8d0bd51ac"}, -] - -[package.dependencies] -colorama = {version = ">=0.3.4", markers = "sys_platform == \"win32\""} -win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""} - -[package.extras] -dev = ["Sphinx (==7.2.5)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptiongroup (==1.1.3)", "freezegun (==1.1.0)", "freezegun (==1.2.2)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v1.4.1)", "mypy (==v1.5.1)", "pre-commit (==3.4.0)", "pytest (==6.1.2)", "pytest (==7.4.0)", "pytest-cov (==2.12.1)", "pytest-cov (==4.1.0)", "pytest-mypy-plugins (==1.9.3)", "pytest-mypy-plugins (==3.0.0)", "sphinx-autobuild (==2021.3.14)", "sphinx-rtd-theme (==1.3.0)", "tox (==3.27.1)", "tox (==4.11.0)"] - [[package]] name = "markdown" version = "3.7" @@ -2366,23 +2348,6 @@ pytest = ">=4.6" [package.extras] testing = ["fields", "hunter", "process-tests", "pytest-xdist", "virtualenv"] -[[package]] -name = "pytest-loguru" -version = "0.4.0" -description = "Pytest Loguru" -optional = false -python-versions = ">=3.8" -files = [ - {file = "pytest_loguru-0.4.0-py3-none-any.whl", hash = "sha256:3cc7b9c6b22cb158209ccbabf0d678dacd3f3c7497d6f46f1c338c13bee1ac77"}, - {file = "pytest_loguru-0.4.0.tar.gz", hash = "sha256:0d9e4e72ae9bfd92f774c666e7353766af11b0b78edd59c290e89be116050f03"}, -] - -[package.dependencies] -loguru = "*" - -[package.extras] -test = ["pytest", "pytest-cov"] - [[package]] name = "python-dateutil" version = "2.9.0.post0" @@ -2990,20 +2955,6 @@ files = [ {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, ] -[[package]] -name = "win32-setctime" -version = "1.1.0" -description = "A small Python utility to set file creation time on Windows" -optional = false -python-versions = ">=3.5" -files = [ - {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, - {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, -] - -[package.extras] -dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] - [[package]] name = "yarl" version = "1.11.1" @@ -3131,4 +3082,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "0be2467afb5dafa076cb1815bd601f01355fa9eaee71a49b429ff8a5c3b63719" +content-hash = "8b6f2b464cf49a81e650d2a8ed51b714394e82cd9e5554d17ce411e7341c07d1" diff --git a/pyproject.toml b/pyproject.toml index 2db0fc5..cf997c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.10" -aiohttp = "3.10.*" +aiohttp = ">=3.8.4" humanize = "^4.9.0" inflection = "0.5.*" pint = "0.24.*" @@ -40,7 +40,6 @@ pre-commit = "3.7.1" pytest = "8.2.2" pytest-asyncio = "0.23.7" pytest-cov = "5.0.0" -pytest-loguru = "0.4.0" tox = "4.15.1" twine = "5.1.1"