Skip to content

Commit 3ee1d43

Browse files
authored
Merge pull request #1908 from seleniumbase/upgrade-pytest
Upgrade pytest / dependencies
2 parents 838307d + 87d85ed commit 3ee1d43

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

requirements.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ attrs>=23.1.0;python_version>="3.7"
1717
PyYAML>=6.0
1818
certifi>=2023.5.7
1919
filelock>=3.4.1;python_version<"3.7"
20-
filelock>=3.12.0;python_version>="3.7"
20+
filelock>=3.12.1;python_version>="3.7"
2121
platformdirs>=2.4.0;python_version<"3.7"
22-
platformdirs>=3.5.1;python_version>="3.7"
22+
platformdirs>=3.5.3;python_version>="3.7"
2323
pyparsing>=3.0.7;python_version<"3.7"
2424
pyparsing>=3.0.9;python_version>="3.7"
2525
zipp==3.6.0;python_version<"3.7"
@@ -59,7 +59,7 @@ iniconfig==2.0.0;python_version>="3.7"
5959
pluggy==1.0.0
6060
py==1.11.0
6161
pytest==7.0.1;python_version<"3.7"
62-
pytest==7.3.1;python_version>="3.7"
62+
pytest==7.3.2;python_version>="3.7"
6363
pytest-forked==1.4.0;python_version<"3.7"
6464
pytest-forked==1.6.0;python_version>="3.7"
6565
pytest-html==2.0.1
@@ -94,7 +94,6 @@ pyotp==2.7.0;python_version<"3.7"
9494
pyotp==2.8.0;python_version>="3.7"
9595
cffi==1.15.1
9696
typing-extensions==4.1.1;python_version<"3.7"
97-
typing-extensions==4.5.0;python_version>="3.7" and python_version<"3.9"
9897
commonmark==0.9.1;python_version<"3.7"
9998
markdown-it-py==2.2.0;python_version>="3.7"
10099
mdurl==0.1.2;python_version>="3.7"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.15.1"
2+
__version__ = "4.15.2"

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141
"PyYAML>=6.0",
142142
"certifi>=2023.5.7",
143143
'filelock>=3.4.1;python_version<"3.7"',
144-
'filelock>=3.12.0;python_version>="3.7"',
144+
'filelock>=3.12.1;python_version>="3.7"',
145145
'platformdirs>=2.4.0;python_version<"3.7"',
146-
'platformdirs>=3.5.1;python_version>="3.7"',
146+
'platformdirs>=3.5.3;python_version>="3.7"',
147147
'pyparsing>=3.0.7;python_version<"3.7"',
148148
'pyparsing>=3.0.9;python_version>="3.7"',
149149
'zipp==3.6.0;python_version<"3.7"',
@@ -183,7 +183,7 @@
183183
"pluggy==1.0.0",
184184
"py==1.11.0",
185185
'pytest==7.0.1;python_version<"3.7"',
186-
'pytest==7.3.1;python_version>="3.7"',
186+
'pytest==7.3.2;python_version>="3.7"',
187187
'pytest-forked==1.4.0;python_version<"3.7"',
188188
'pytest-forked==1.6.0;python_version>="3.7"',
189189
"pytest-html==2.0.1", # Newer ones had issues
@@ -218,7 +218,6 @@
218218
'pyotp==2.8.0;python_version>="3.7"',
219219
"cffi==1.15.1",
220220
'typing-extensions==4.1.1;python_version<"3.7"',
221-
'typing-extensions==4.5.0;python_version>="3.7" and python_version<"3.9"', # noqa: E501
222221
'commonmark==0.9.1;python_version<"3.7"', # For old "rich"
223222
'markdown-it-py==2.2.0;python_version>="3.7"', # For new "rich"
224223
'mdurl==0.1.2;python_version>="3.7"', # For new "rich"

0 commit comments

Comments
 (0)