Skip to content

Commit 22b37e4

Browse files
authored
Merge pull request #622 from seleniumbase/update-dependencies
Update Python dependencies
2 parents 4551dad + 6594edc commit 22b37e4

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pip>=20.1.1
22
packaging>=20.4
33
setuptools>=44.1.1;python_version<"3.5"
4-
setuptools>=49.1.1;python_version>="3.5"
4+
setuptools>=49.2.0;python_version>="3.5"
55
setuptools-scm>=4.1.2
66
wheel>=0.34.2
77
six==1.15.0
@@ -42,7 +42,7 @@ coverage==5.2
4242
pyotp==2.3.0
4343
boto==2.49.0
4444
cffi==1.14.0
45-
rich==3.2.0;python_version>="3.6" and python_version<"4.0"
45+
rich==3.3.1;python_version>="3.6" and python_version<"4.0"
4646
flake8==3.7.9;python_version<"3.5"
4747
flake8==3.8.3;python_version>="3.5"
4848
pyflakes==2.1.1;python_version<"3.5"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
setup(
5656
name='seleniumbase',
57-
version='1.42.10',
57+
version='1.42.11',
5858
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5959
long_description=long_description,
6060
long_description_content_type='text/markdown',
@@ -93,7 +93,7 @@
9393
'pip>=20.1.1',
9494
'packaging>=20.4',
9595
'setuptools>=44.1.1;python_version<"3.5"',
96-
'setuptools>=49.1.1;python_version>="3.5"',
96+
'setuptools>=49.2.0;python_version>="3.5"',
9797
'setuptools-scm',
9898
'wheel',
9999
'six',
@@ -134,7 +134,7 @@
134134
'pyotp==2.3.0',
135135
'boto==2.49.0',
136136
'cffi==1.14.0',
137-
'rich==3.2.0;python_version>="3.6" and python_version<"4.0"',
137+
'rich==3.3.1;python_version>="3.6" and python_version<"4.0"',
138138
'flake8==3.7.9;python_version<"3.5"',
139139
'flake8==3.8.3;python_version>="3.5"',
140140
'pyflakes==2.1.1;python_version<"3.5"',

virtualenv_install.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
44
:: for creating and using Python virtual environments.
55

6-
python -m pip install --upgrade virtualenvwrapper-win
6+
python -m pip install --upgrade pip
7+
python -m pip install virtualenvwrapper-win --force-reinstall
78
echo:
89
echo:
910
echo: *** You may now use virtualenv commands in your command shell. ***

virtualenv_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[[ $0 != "$BASH_SOURCE" ]] && sourced=1 || sourced=0
88
if [ $sourced = 1 ]
99
then
10-
python -m pip install --upgrade virtualenv
11-
python -m pip install --upgrade virtualenvwrapper
10+
python -m pip install --upgrade pip
11+
python -m pip install virtualenvwrapper --force-reinstall
1212
export WORKON_HOME=$HOME/.virtualenvs
1313
source `which virtualenvwrapper.sh`
1414
echo ""

0 commit comments

Comments
 (0)