Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mkdocs_build/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# Minimum Python version: 3.10 (for generating docs only)

regex>=2026.1.15
pymdown-extensions>=10.20
pymdown-extensions>=10.20.1
pipdeptree>=2.30.0
python-dateutil>=2.8.2
Markdown==3.10
Markdown==3.10.1
click==8.3.1
ghp-import==2.1.0
watchdog==6.0.0
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pip>=25.3
packaging>=25.0
packaging>=26.0
setuptools~=70.2;python_version<"3.10"
setuptools>=80.9.0;python_version>="3.10"
wheel>=0.45.1
setuptools>=80.10.2;python_version>="3.10"
wheel>=0.46.3
attrs>=25.4.0
certifi>=2026.1.4
exceptiongroup>=1.3.1
Expand Down Expand Up @@ -63,21 +63,21 @@ pytest-rerunfailures==16.1;python_version>="3.10"
pytest-xdist==3.8.0
parameterized==0.9.0
behave==1.2.6
soupsieve~=2.8.2
soupsieve~=2.8.3
beautifulsoup4~=4.14.3
pyotp==2.9.0
python-xlib==0.33;platform_system=="Linux"
PyAutoGUI>=0.9.54;platform_system=="Linux"
markdown-it-py==3.0.0;python_version<"3.10"
markdown-it-py==4.0.0;python_version>="3.10"
mdurl==0.1.2
rich>=14.2.0,<15
rich>=14.3.1,<15

# --- Testing Requirements --- #
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

coverage>=7.10.7;python_version<"3.10"
coverage>=7.13.1;python_version>="3.10"
coverage>=7.13.2;python_version>="3.10"
pytest-cov>=7.0.0
flake8==7.3.0
mccabe==0.7.0
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.46.0"
__version__ = "4.46.1"
2 changes: 1 addition & 1 deletion seleniumbase/plugins/sb_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def SB(
'\nExpecting a Python dictionary for "variables"!'
"\nEg. --variables=\"{'KEY1':'VALUE', 'KEY2':123}\""
)
else:
elif not isinstance(variables, dict):
variables = {}
if disable_csp is None:
if (
Expand Down
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,10 @@
python_requires=">=3.9",
install_requires=[
'pip>=25.3',
'packaging>=25.0',
'packaging>=26.0',
'setuptools~=70.2;python_version<"3.10"', # Newer ones had issues
'setuptools>=80.9.0;python_version>="3.10"',
'wheel>=0.45.1',
'setuptools>=80.10.2;python_version>="3.10"',
'wheel>=0.46.3',
'attrs>=25.4.0',
'certifi>=2026.1.4',
'exceptiongroup>=1.3.1',
Expand Down Expand Up @@ -211,15 +211,15 @@
'pytest-xdist==3.8.0',
'parameterized==0.9.0',
'behave==1.2.6', # Newer ones had issues
'soupsieve~=2.8.2',
'soupsieve~=2.8.3',
'beautifulsoup4~=4.14.3',
'pyotp==2.9.0',
'python-xlib==0.33;platform_system=="Linux"',
'PyAutoGUI>=0.9.54;platform_system=="Linux"',
'markdown-it-py==3.0.0;python_version<"3.10"',
'markdown-it-py==4.0.0;python_version>="3.10"',
'mdurl==0.1.2',
'rich>=14.2.0,<15',
'rich>=14.3.1,<15',
],
extras_require={
# pip install -e .[allure]
Expand All @@ -234,7 +234,7 @@
# Usage: coverage run -m pytest; coverage html; coverage report
"coverage": [
'coverage>=7.10.7;python_version<"3.10"',
'coverage>=7.13.1;python_version>="3.10"',
'coverage>=7.13.2;python_version>="3.10"',
'pytest-cov>=7.0.0',
],
# pip install -e .[flake8]
Expand Down Expand Up @@ -263,7 +263,8 @@
'pdfminer.six==20260107;python_version>="3.10"',
'cryptography==46.0.3',
'cffi==2.0.0',
'pycparser==2.23',
'pycparser==2.23;python_version<"3.10"',
'pycparser==3.0;python_version>="3.10"',
],
# pip install -e .[pillow]
# (An optional library for image-processing.)
Expand Down