Skip to content

Commit ddbce05

Browse files
authored
Merge pull request #1437 from seleniumbase/refresh-python-dependencies
Refresh Python dependencies
2 parents f7ca60f + 7959272 commit ddbce05

File tree

5 files changed

+24
-20
lines changed

5 files changed

+24
-20
lines changed

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mkdocs dependencies for generating the seleniumbase.io website
22
# Minimum Python version: 3.7
33

4-
regex>=2022.7.9
4+
regex>=2022.7.25
55
tqdm>=4.64.0
66
docutils==0.19
77
python-dateutil==2.8.2

requirements.txt

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
pip>=20.3.4;python_version<"3.6"
22
pip>=21.3.1;python_version>="3.6" and python_version<"3.7"
3-
pip>=22.1.2;python_version>="3.7"
3+
pip>=22.2.1;python_version>="3.7"
44
packaging>=20.9;python_version<"3.6"
55
packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.6"
77
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
8-
setuptools>=63.2.0;python_version>="3.7"
8+
setuptools>=63.3.0;python_version>="3.7"
99
tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"
1010
tomli>=2.0.1;python_version>="3.7"
1111
wheel>=0.37.1
12-
attrs>=21.4.0
12+
attrs>=21.4.0;python_version<"3.6"
13+
attrs>=22.1.0;python_version>="3.6"
1314
PyYAML>=6.0;python_version>="3.6"
1415
traitlets>=4.3.3;python_version<"3.7"
1516
traitlets>=5.3.0;python_version>="3.7"
@@ -35,7 +36,7 @@ chardet==4.0.0;python_version>="3.6" and python_version<"3.7"
3536
chardet==5.0.0;python_version>="3.7"
3637
charset-normalizer==2.0.12;python_version>="3.6" and python_version<"3.7"
3738
charset-normalizer==2.1.0;python_version>="3.7"
38-
urllib3==1.26.10
39+
urllib3==1.26.11
3940
requests==2.27.1;python_version<"3.6"
4041
requests==2.27.1;python_version>="3.6" and python_version<"3.7"
4142
requests==2.28.1;python_version>="3.7"
@@ -122,9 +123,10 @@ coverage==6.4.2;python_version>="3.7"
122123
pytest-cov==2.12.1;python_version<"3.6"
123124
pytest-cov==3.0.0;python_version>="3.6"
124125
flake8==3.7.9;python_version<"3.6"
125-
flake8==4.0.1;python_version>="3.6"
126-
mccabe==0.6.1
126+
flake8==5.0.2;python_version>="3.6"
127+
mccabe==0.6.1;python_version<"3.6"
128+
mccabe==0.7.0;python_version>="3.6"
127129
pyflakes==2.1.1;python_version<"3.6"
128-
pyflakes==2.4.0;python_version>="3.6"
130+
pyflakes==2.5.0;python_version>="3.6"
129131
pycodestyle==2.5.0;python_version<"3.6"
130-
pycodestyle==2.8.0;python_version>="3.6"
132+
pycodestyle==2.9.0;python_version>="3.6"

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__ = "3.5.8"
2+
__version__ = "3.5.9"

seleniumbase/core/application_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class ApplicationManager:
1212

1313
@classmethod
1414
def generate_application_string(cls, test):
15-
"""Generate an application string based on some of the given information
16-
that can be pulled from the test object: app_env, start_time."""
15+
"""Generate a string based on some of the given information
16+
that's pulled from the test object: app_env, start_time."""
1717

1818
app_env = "test"
1919
if hasattr(test, "env"):

setup.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,17 @@
126126
install_requires=[
127127
'pip>=20.3.4;python_version<"3.6"',
128128
'pip>=21.3.1;python_version>="3.6" and python_version<"3.7"',
129-
'pip>=22.1.2;python_version>="3.7"',
129+
'pip>=22.2.1;python_version>="3.7"',
130130
'packaging>=20.9;python_version<"3.6"',
131131
'packaging>=21.3;python_version>="3.6"',
132132
'setuptools>=44.1.1;python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134-
'setuptools>=63.2.0;python_version>="3.7"',
134+
'setuptools>=63.3.0;python_version>="3.7"',
135135
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',
136136
'tomli>=2.0.1;python_version>="3.7"',
137137
"wheel>=0.37.1",
138-
"attrs>=21.4.0",
138+
'attrs>=21.4.0;python_version<"3.6"',
139+
'attrs>=22.1.0;python_version>="3.6"',
139140
'PyYAML>=6.0;python_version>="3.6"',
140141
'traitlets>=4.3.3;python_version<"3.7"',
141142
'traitlets>=5.3.0;python_version>="3.7"',
@@ -161,7 +162,7 @@
161162
'chardet==5.0.0;python_version>="3.7"', # Stay in sync with "requests"
162163
'charset-normalizer==2.0.12;python_version>="3.6" and python_version<"3.7"', # noqa: E501
163164
'charset-normalizer==2.1.0;python_version>="3.7"', # Sync "requests"
164-
'urllib3==1.26.10', # Stay in sync with "requests"
165+
'urllib3==1.26.11', # Stay in sync with "requests"
165166
'requests==2.27.1;python_version<"3.7"',
166167
'requests==2.28.1;python_version>="3.7"',
167168
"nose==1.3.7",
@@ -252,12 +253,13 @@
252253
# Usage: flake8
253254
"flake": [
254255
'flake8==3.7.9;python_version<"3.6"',
255-
'flake8==4.0.1;python_version>="3.6"',
256-
"mccabe==0.6.1",
256+
'flake8==5.0.2;python_version>="3.6"',
257+
'mccabe==0.6.1;python_version<"3.6"',
258+
'mccabe==0.7.0;python_version>="3.6"',
257259
'pyflakes==2.1.1;python_version<"3.6"',
258-
'pyflakes==2.4.0;python_version>="3.6"',
260+
'pyflakes==2.5.0;python_version>="3.6"',
259261
'pycodestyle==2.5.0;python_version<"3.6"',
260-
'pycodestyle==2.8.0;python_version>="3.6"',
262+
'pycodestyle==2.9.0;python_version>="3.6"',
261263
],
262264
# pip install -e .[pdfminer]
263265
"pdfminer": [

0 commit comments

Comments
 (0)