From 847a413a9f8d984073dd9c9d30eefc0a0342b361 Mon Sep 17 00:00:00 2001 From: mhsb Date: Wed, 3 Apr 2024 20:20:02 +0200 Subject: [PATCH] Pyproject updates (poetry upgrade, no more py37, increment version) (#73) --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed1d58b..95f17c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "discogs_alert" -version = "0.0.19" +version = "0.0.20" description = "Configurable, real-time alerts for your discogs wantlist" license = "MIT" authors = ["mhsb "] @@ -11,7 +11,7 @@ include = ["LICENSE"] readme = "README.md" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" beautifulsoup4 = "^4.11.2" click = "^8.1.3" dacite = "^1.8.0" @@ -22,7 +22,7 @@ psutil = "^5.9.7" requests = "^2.28.2" ruff = "^0.0.253" schedule = "^1.1.0" -selenium = "^4.14.2" +selenium = "^4.14.0" tox = [ {version = "^3", python = "<3.8"}, # because fake-useragent has a importlib-metadata constraint that conflicts {version = "^4.4.5", python = ">=3.8"} @@ -34,7 +34,7 @@ pytest = "^7.2.1" pytest-sugar = "^0.9.6" [build-system] -requires = ["poetry-core>=1.1.0"] +requires = ["poetry-core>=1.9.0"] build-backend = "poetry.core.masonry.api" [tool.poetry2conda]