Skip to content

Commit 2c24bf4

Browse files
authored
Release v4.0.0 (#298)
1 parent bd13b88 commit 2c24bf4

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,28 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3
13+
1314
- name: Set up Python
1415
uses: actions/setup-python@v3
1516
with:
1617
python-version: "3.9"
18+
1719
- name: Install poetry
1820
run: curl -sSL https://install.python-poetry.org | python3 -
21+
1922
- name: Configure poetry
2023
run: poetry config virtualenvs.in-project true
24+
2125
- name: Set up cache
2226
uses: actions/cache@v3
2327
with:
2428
path: .venv
2529
key: venv-${{ hashFiles('**/poetry.lock') }}
2630
restore-keys: venv-
31+
2732
- name: Install Dependencies
2833
run: poetry install
34+
2935
- name: Publish
3036
run: >-
3137
poetry publish

docs/news.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Release Notes
22
=============
33

4+
4.0.0 (2022-09-15)
5+
------------------
6+
7+
* Selenium 4 support
8+
9+
* Drop support for python 3.6
10+
11+
* Add support for python 3.9 and 3.10
12+
13+
* Relax dependency constraint for pytest-html pending new release
14+
15+
* Handle non W3C caps for browserstack
16+
17+
* Thanks to `@Ankit098 <https://github.com/Ankit098>`_ for the PR.
18+
419
2.0.1 (2020-09-19)
520
------------------
621

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "pytest plugin for Selenium"
99
license = "MPL-2.0"
1010
authors = [
1111
"Dave Hunt <[email protected]>",
12-
"Jim Brännlund <[email protected]>"
12+
"Jim Brannlund <[email protected]>"
1313
]
1414
readme = "README.rst"
1515
homepage = "https://github.com/pytest-dev/pytest-selenium"
@@ -45,7 +45,7 @@ include = [
4545
python = "^3.7"
4646
pytest = "^6.0.0"
4747
pytest-base-url = "^2.0.0"
48-
pytest-html = "^3.1.1"
48+
pytest-html = ">=2.0.0"
4949
pytest-variables = "^2.0.0"
5050
requests = "^2.26.0"
5151
selenium = "^4.0.0"

0 commit comments

Comments
 (0)