Skip to content

Commit d70426b

Browse files
authored
Merge pull request #1846 from seleniumbase/refresh-dependencies-and-comments
Refresh Python dependencies
2 parents c0c694a + 152a60a commit d70426b

File tree

11 files changed

+25
-25
lines changed

11 files changed

+25
-25
lines changed

examples/raw_browser_launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This script can be run with pure "python". (pytest not needed)."""
1+
"""Driver() test. Runs with "python". (pytest not needed)."""
22
from seleniumbase import Driver
33
from seleniumbase import js_utils
44
from seleniumbase import page_actions

examples/raw_call.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
"""Calling tests with "python" instead of directly using "pytest".
2-
To run, use: "python raw_call.py".
1+
"""Can run with "python" instead of using "pytest" directly.
2+
Usage: "python raw_call.py".
33
Two examples: pytest.main() and subprocess.call()."""
44
import pytest
55
import subprocess

examples/raw_driver_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This script can be run with pure "python". (pytest not needed)."""
1+
"""Can run with "python". (pytest not needed)."""
22
from seleniumbase import js_utils
33
from seleniumbase import page_actions
44
from seleniumbase import DriverContext

examples/raw_main_call.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
"""Call a file with "python" instead of using "pytest" directly.
1+
"""Can use "python" instead of using "pytest".
22
Added pytest args will be included in the run.
3-
To run, use: "python raw_file_call.py"."""
3+
Example usage: "python raw_file_call.py"."""
44
from seleniumbase import BaseCase
55
BaseCase.main(__name__, __file__)
66

examples/raw_parameter_script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
with other plugins, such as ones for generating test reports,
1414
handling multithreading, and parametrized tests. Depending on your
1515
specific needs, you may need to call SeleniumBase commands without
16-
using Pytest, and this example shows you how. """
17-
16+
using Pytest, and this example shows you how.
17+
"""
1818
pure_python = False
1919
try:
2020
# Running with Pytest / (Finds test methods to run using autodiscovery)

examples/raw_sb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Context Manager Test. Can be run with pure "python". (pytest not needed)."""
1+
"""Context Manager Test. Runs with "python". (pytest not needed)."""
22
from seleniumbase import SB
33

44
with SB() as sb: # By default, browser="chrome" if not set.

examples/raw_test_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Context Manager Tests. Can be run with pure "python". (pytest not needed)"""
1+
"""Context Manager Test. Runs with "python". (pytest not needed)"""
22
from seleniumbase import SB
33

44
with SB(test=True) as sb:

mkdocs_build/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ click==8.1.3
1414
ghp-import==2.1.0
1515
readme-renderer==37.3
1616
pymdown-extensions==9.11
17-
importlib-metadata==6.4.1
17+
importlib-metadata==6.5.0
1818
pipdeptree==2.7.0
1919
bleach==6.0.0
2020
lunr==0.6.2
2121
nltk==3.8.1
22-
tornado==6.2
22+
tornado==6.3
2323
watchdog==3.0.0
2424
cairocffi==1.5.1
2525
cairosvg==2.7.0

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ tqdm>=4.65.0;python_version>="3.7"
1313
wheel>=0.37.1;python_version<"3.7"
1414
wheel>=0.40.0;python_version>="3.7"
1515
attrs==22.1.0;python_version<"3.7"
16-
attrs>=22.2.0;python_version>="3.7"
16+
attrs>=23.1.0;python_version>="3.7"
1717
PyYAML>=6.0
1818
certifi>=2022.12.7
1919
filelock>=3.4.1;python_version<"3.7"
20-
filelock>=3.11.0;python_version>="3.7"
20+
filelock>=3.12.0;python_version>="3.7"
2121
platformdirs>=2.4.0;python_version<"3.7"
2222
platformdirs>=3.2.0;python_version>="3.7"
2323
pyparsing>=3.0.7;python_version<"3.7"
@@ -75,15 +75,15 @@ parameterized==0.9.0;python_version>="3.7"
7575
sbvirtualdisplay==1.2.0
7676
behave==1.2.6
7777
soupsieve==2.3.2.post1;python_version<"3.7"
78-
soupsieve==2.4;python_version>="3.7"
78+
soupsieve==2.4.1;python_version>="3.7"
7979
beautifulsoup4==4.12.2
8080
cryptography==36.0.2;python_version<"3.7"
8181
cryptography==40.0.2;python_version>="3.7"
8282
pygments==2.14.0;python_version<"3.7"
83-
pygments==2.15.0;python_version>="3.7"
83+
pygments==2.15.1;python_version>="3.7"
8484
pyreadline3==3.4.1;platform_system=="Windows"
85-
tabcompleter==1.1.0
86-
pdbp==1.2.8
85+
tabcompleter==1.2.0
86+
pdbp==1.3.0
8787
colorama==0.4.5;python_version<"3.7"
8888
colorama==0.4.6;python_version>="3.7"
8989
exceptiongroup==1.1.1;python_version>="3.7"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.13.25"
2+
__version__ = "4.13.26"

0 commit comments

Comments
 (0)