Skip to content

Commit a10e4ca

Browse files
committed
Update and reorganize requirements
1 parent 546520e commit a10e4ca

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ setuptools
33
six
44
nose
55
ipdb
6-
chardet
76
unittest2
8-
selenium==3.141.0
7+
idna==2.8
8+
chardet==3.0.4
99
urllib3==1.24.3
1010
requests>=2.21.0
11-
pytest>=4.4.1
12-
pytest-cov>=2.6.1
11+
selenium==3.141.0
12+
pluggy>=0.11.0
13+
pytest>=4.4.2
14+
pytest-cov>=2.7.1
1315
pytest-forked>=1.0.2
1416
pytest-html>=1.20.0
1517
pytest-metadata>=1.8.0

setup.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,26 +51,28 @@
5151
"Programming Language :: Python :: 3.7",
5252
],
5353
install_requires=[
54-
'pip',
54+
'pip>=19.1.1',
5555
'setuptools',
5656
'six',
5757
'nose',
5858
'ipdb',
59-
'chardet',
6059
'unittest2',
61-
'selenium==3.141.0',
62-
'urllib3==1.24.3',
60+
'idna==2.8', # Must stay in sync with "requests"
61+
'chardet==3.0.4', # Must stay in sync with "requests"
62+
'urllib3==1.24.3', # Must stay in sync with "requests"
6363
'requests>=2.21.0',
64-
'pytest>=4.4.1',
65-
'pytest-cov>=2.6.1',
64+
'selenium==3.141.0',
65+
'pluggy>=0.11.0',
66+
'pytest>=4.4.2',
67+
'pytest-cov>=2.7.1',
6668
'pytest-forked>=1.0.2',
6769
'pytest-html>=1.20.0',
6870
'pytest-metadata>=1.8.0',
6971
'pytest-ordering>=0.6',
7072
'pytest-rerunfailures>=7.0',
7173
'pytest-xdist>=1.28.0',
7274
'parameterized>=0.7.0',
73-
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using bs4
75+
'beautifulsoup4>=4.6.0', # Keep at >=4.6.0 while using "bs4"
7476
'pyopenssl>=19.0.0',
7577
'colorama>=0.4.1',
7678
'pyotp>=2.2.7',

0 commit comments

Comments
 (0)