Skip to content

Release v4.0.0 #298

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

Merged
merged 1 commit into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -

- name: Configure poetry
run: poetry config virtualenvs.in-project true

- name: Set up cache
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ hashFiles('**/poetry.lock') }}
restore-keys: venv-

- name: Install Dependencies
run: poetry install

- name: Publish
run: >-
poetry publish
Expand Down
15 changes: 15 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Release Notes
=============

4.0.0 (2022-09-15)
------------------

* Selenium 4 support

* Drop support for python 3.6

* Add support for python 3.9 and 3.10

* Relax dependency constraint for pytest-html pending new release

* Handle non W3C caps for browserstack

* Thanks to `@Ankit098 <https://github.com/Ankit098>`_ for the PR.

2.0.1 (2020-09-19)
------------------

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "pytest plugin for Selenium"
license = "MPL-2.0"
authors = [
"Dave Hunt <[email protected]>",
"Jim Brännlund <[email protected]>"
"Jim Brannlund <[email protected]>"
]
readme = "README.rst"
homepage = "https://github.com/pytest-dev/pytest-selenium"
Expand Down Expand Up @@ -45,7 +45,7 @@ include = [
python = "^3.7"
pytest = "^6.0.0"
pytest-base-url = "^2.0.0"
pytest-html = "^3.1.1"
pytest-html = ">=2.0.0"
pytest-variables = "^2.0.0"
requests = "^2.26.0"
selenium = "^4.0.0"
Expand Down