Skip to content

Commit 5054475

Browse files
authored
Merge pull request #329 from seleniumbase/update-requirements
Update requirements
2 parents 48758cf + a9afd43 commit 5054475

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=19.1.1
2-
setuptools
2+
setuptools>=41.0.1
33
six
44
nose
55
ipdb
@@ -25,4 +25,5 @@ colorama>=0.4.1
2525
pyotp>=2.2.7
2626
boto>=2.49.0
2727
flake8>=3.7.7
28-
PyVirtualDisplay>=0.2.1
28+
certifi>=2019.3.9
29+
PyVirtualDisplay==0.2.1

seleniumbase/fixtures/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class VisualBaseline:
2424

2525

2626
class JQuery:
27-
VER = "3.3.1"
27+
VER = "3.4.1"
2828
# MIN_JS = "//cdnjs.cloudflare.com/ajax/libs/jquery/%s/jquery.min.js" % VER
2929
MIN_JS = "//ajax.googleapis.com/ajax/libs/jquery/%s/jquery.min.js" % VER
3030

seleniumbase/resources/ReadMe.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ SeleniumBase uses some Javascript libraries for optional advanced features such
44

55
Here are some of the resource files you'll find here:
66

7-
**jquery.min.js** - This file is used by [base_case.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) in activate_jquery(). The activate_jquery() method uses the version at [https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js](https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js). You only need this file if you're making jQuery calls in your automation (some base_case methods use jQuery).
8-
9-
**favicon.ico** - This file is used by [style_sheet.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/core/style_sheet.py) for the favicon icon. All it does is make the report page a little more professional-looking. Currently, SeleniumBase uses the version at [https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/resources/favicon.ico](https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/resources/favicon.ico).
7+
**favicon.ico** - This file is used by [style_sheet.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/core/style_sheet.py) for the favicon icon. Currently, SeleniumBase uses the version at [https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/resources/favicon.ico](https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/seleniumbase/resources/favicon.ico).
108

119
**messenger/** - Files in this folder are used for creating Javascript notifications during test runs in Demo Mode.
1210

seleniumbase/resources/jquery.min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='seleniumbase',
20-
version='1.23.10',
20+
version='1.23.11',
2121
description='Reliable Browser Automation & Testing Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',
@@ -52,7 +52,7 @@
5252
],
5353
install_requires=[
5454
'pip>=19.1.1',
55-
'setuptools',
55+
'setuptools>=41.0.1',
5656
'six',
5757
'nose',
5858
'ipdb',
@@ -78,7 +78,8 @@
7878
'pyotp>=2.2.7',
7979
'boto>=2.49.0',
8080
'flake8>=3.7.7',
81-
'PyVirtualDisplay>=0.2.1',
81+
'certifi>=2019.3.9',
82+
'PyVirtualDisplay==0.2.1', # Keep at 0.2.1 (later versions are slow)
8283
],
8384
packages=[
8485
'seleniumbase',

0 commit comments

Comments
 (0)