File tree Expand file tree Collapse file tree 6 files changed +10
-15
lines changed Expand file tree Collapse file tree 6 files changed +10
-15
lines changed Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2020 Michael Mintz
3
+ Copyright (c) 2014-2021 Michael Mintz
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
regex >= 2020.11.13
2
- tqdm >= 4.55.0
2
+ tqdm >= 4.55.1
3
3
livereload == 2.6.3 ;python_version >= "3.6"
4
4
Markdown == 3.3.3
5
5
readme-renderer == 28.0
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ cffi==1.14.4
73
73
toml == 0.10.2
74
74
Pillow == 6.2.2 ;python_version < "3.5"
75
75
Pillow == 7.2.0 ;python_version >= "3.5" and python_version<"3.6"
76
- Pillow == 8.0.1 ;python_version >= "3.6"
76
+ Pillow == 8.1.0 ;python_version >= "3.6"
77
77
rich == 9.6.1 ;python_version >= "3.6" and python_version<"4.0"
78
78
zipp == 1.2.0 ;python_version < "3.6"
79
79
zipp == 3.4.0 ;python_version >= "3.6"
Original file line number Diff line number Diff line change 1
1
# seleniumbase package
2
- __version__ = "1.51.7 "
2
+ __version__ = "1.51.8 "
Original file line number Diff line number Diff line change @@ -689,15 +689,10 @@ def get_local_driver(
689
689
print ("\n Warning: Could not install geckodriver: "
690
690
"%s" % e )
691
691
sys .argv = sys_args # Put back the original sys args
692
- if "linux" in PLATFORM or not headless :
693
- firefox_driver = webdriver .Firefox (
694
- firefox_profile = profile ,
695
- capabilities = firefox_capabilities )
696
- else :
697
- firefox_driver = webdriver .Firefox (
698
- firefox_profile = profile ,
699
- capabilities = firefox_capabilities ,
700
- options = options )
692
+ firefox_driver = webdriver .Firefox (
693
+ firefox_profile = profile ,
694
+ capabilities = firefox_capabilities ,
695
+ options = options )
701
696
except Exception :
702
697
profile = _create_firefox_profile (
703
698
downloads_path , locale_code ,
Original file line number Diff line number Diff line change 49
49
print ("\n *** Installing twine: *** (Required for PyPI uploads)\n " )
50
50
os .system ("python -m pip install --upgrade 'twine>=1.15.0'" )
51
51
print ("\n *** Installing tqdm: *** (Required for PyPI uploads)\n " )
52
- os .system ("python -m pip install --upgrade 'tqdm>=4.55.0 '" )
52
+ os .system ("python -m pip install --upgrade 'tqdm>=4.55.1 '" )
53
53
print ("\n *** Publishing The Release to PyPI: ***\n " )
54
54
os .system ('python -m twine upload dist/*' ) # Requires ~/.pypirc Keys
55
55
print ("\n *** The Release was PUBLISHED SUCCESSFULLY to PyPI! :) ***\n " )
177
177
'toml==0.10.2' ,
178
178
'Pillow==6.2.2;python_version<"3.5"' ,
179
179
'Pillow==7.2.0;python_version>="3.5" and python_version<"3.6"' ,
180
- 'Pillow==8.0.1 ;python_version>="3.6"' ,
180
+ 'Pillow==8.1.0 ;python_version>="3.6"' ,
181
181
'rich==9.6.1;python_version>="3.6" and python_version<"4.0"' ,
182
182
'zipp==1.2.0;python_version<"3.6"' ,
183
183
'zipp==3.4.0;python_version>="3.6"' ,
You can’t perform that action at this time.
0 commit comments