Skip to content

Commit 84b88f2

Browse files
authored
Merge pull request #390 from seleniumbase/update-requirements
Update Python dependencies such as pip and pytest
2 parents c9e5ec8 + 26929d3 commit 84b88f2

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/sb_logo_a.png" title="SeleniumBase" align="center" height="150">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
1+
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/sb_logo_a.png" title="SeleniumBase" align="center" height="152">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
22

33
All-in-one framework for fast & simple browser automation and end-to-end testing.
44

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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
setup(
4747
name='seleniumbase',
48-
version='1.32.11',
48+
version='1.32.12',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',
@@ -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)