Skip to content

Commit 5d5e35d

Browse files
committed
Update Python dependancies such as pip and pytest
1 parent c9e5ec8 commit 5d5e35d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

requirements.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
pip>=19.2.3
1+
pip>=19.3
22
setuptools>=41.4.0
3+
setuptools-scm>=3.3.3
34
wheel>=0.33.6
45
six>=1.12.0
56
nose>=1.3.7
@@ -10,7 +11,8 @@ urllib3==1.25.6
1011
requests>=2.22.0
1112
selenium==3.141.0
1213
pluggy>=0.12.0
13-
pytest>=4.6.5;python_version<"3"
14+
attrs>=19.2.0
15+
pytest>=4.6.6;python_version<"3"
1416
pytest>=5.2.1;python_version>="3"
1517
pytest-cov>=2.8.1
1618
pytest-forked>=1.1.1
@@ -27,5 +29,6 @@ colorama>=0.4.1
2729
pymysql>=0.9.3
2830
pyotp>=2.3.0
2931
boto>=2.49.0
32+
tqdm>=4.36.1
3033
flake8>=3.7.8
3134
certifi>=2019.9.11

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
install_requires=[
8484
'pip',
8585
'setuptools',
86+
'setuptools-scm',
8687
'wheel',
8788
'six',
8889
'nose',
@@ -93,7 +94,8 @@
9394
'requests>=2.22.0',
9495
'selenium==3.141.0',
9596
'pluggy>=0.12.0',
96-
'pytest>=4.6.5;python_version<"3"', # For Python 2 compatibility
97+
'attrs>=19.2.0',
98+
'pytest>=4.6.6;python_version<"3"', # For Python 2 compatibility
9799
'pytest>=5.2.1;python_version>="3"',
98100
'pytest-cov>=2.8.1',
99101
'pytest-forked>=1.1.1',
@@ -110,6 +112,7 @@
110112
'pymysql>=0.9.3',
111113
'pyotp>=2.3.0',
112114
'boto>=2.49.0',
115+
'tqdm>=4.36.1',
113116
'flake8>=3.7.8',
114117
'certifi>=2019.9.11',
115118
],

0 commit comments

Comments
 (0)