Skip to content

Commit 31be60b

Browse files
committed
Update Python dependencies
1 parent 6646020 commit 31be60b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=20.3.4;python_version<"3.6"
2-
pip>=21.0;python_version>="3.6"
2+
pip>=21.0.1;python_version>="3.6"
33
packaging>=20.9
44
setuptools>=44.1.1;python_version<"3.5"
55
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
@@ -66,7 +66,7 @@ ipython==7.19.0;python_version>="3.7"
6666
colorama==0.4.4
6767
pathlib2==2.3.5;python_version<"3.5"
6868
importlib-metadata==2.0.0;python_version<"3.6"
69-
virtualenv>=20.4.0
69+
virtualenv>=20.4.1
7070
pymysql==0.10.1;python_version<"3.6"
7171
pymysql==1.0.2;python_version>="3.6"
7272
coverage==5.4

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
long_description_lines.append(line)
2222
long_description = "\n".join(long_description_lines)
2323
except IOError:
24-
long_description = 'The complete web automation library.'
24+
long_description = "A complete library for building end-to-end tests."
2525
about = {}
2626
# Get the package version from the seleniumbase/__version__.py file
2727
with open(os.path.join(
@@ -103,7 +103,7 @@
103103
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
104104
install_requires=[
105105
'pip>=20.3.4;python_version<"3.6"',
106-
'pip>=21.0;python_version>="3.6"',
106+
'pip>=21.0.1;python_version>="3.6"',
107107
'packaging>=20.9',
108108
'setuptools>=44.1.1;python_version<"3.5"',
109109
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
@@ -170,7 +170,7 @@
170170
'colorama==0.4.4',
171171
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
172172
'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
173-
'virtualenv>=20.4.0', # Sync with importlib-metadata and pathlib2
173+
'virtualenv>=20.4.1', # Sync with importlib-metadata and pathlib2
174174
'pymysql==0.10.1;python_version<"3.6"',
175175
'pymysql==1.0.2;python_version>="3.6"',
176176
'coverage==5.4',

0 commit comments

Comments
 (0)