From 2c4b4b9cbb92f5066969f5eb16e81a050076f36c Mon Sep 17 00:00:00 2001 From: Glen Goulter Date: Thu, 20 Jul 2023 15:51:18 -0700 Subject: [PATCH] Allow uw-webdriver-recorder to install python >= 3.8 and < 4.0. The latest version of pytest might be needed, and needs this newer version. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 67ff9b0..32b7c60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "uw-webdriver-recorder" # This version string is typically managed by the CI workflow, # and is changed anytime `poetry version [new version]` is run. # Do not revert this manually. -version = "5.0.6" +version = "5.0.7" description = "A pytest plugin for recording screenshots of selenium interactions, with other convenient features too." authors = ["Tom Thorogood "] license = "Apache Software License 3.0" @@ -19,7 +19,7 @@ packages = [ "uw-webdriver-recorder" = "webdriver_recorder.plugin" [tool.poetry.dependencies] -python = ">=3.7,<3.11" +python = "^3.8" # allow us to go >=3.8 and < 4.0 pytest = ">=6.2.4" Jinja2 = "^3.0.1" selenium = "^4.1.0"