Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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. #37

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "Apache Software License 3.0"
Expand All @@ -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"
Expand Down