Skip to content

Commit 8dc0908

Browse files
authored
Merge pull request #1258 from seleniumbase/refresh-python-dependencies
Refresh Python dependencies
2 parents 963f2dd + 34ef51f commit 8dc0908

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
name: CI build
22

33
on:
4+
pull_request:
5+
branches:
46
push:
57
branches:
68
- master
7-
pull_request:
9+
workflow_dispatch:
10+
branches:
811

912
jobs:
1013
build:

integrations/docker/ReadMe.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ https://docs.docker.com/engine/installation/
2626

2727
docker build -t seleniumbase .
2828

29+
If running on an Apple M1 Mac, use this instead:
30+
31+
docker build --platform linux/amd64 seleniumbase .
32+
2933
#### 6. Run [the example test](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py) with Chrome inside your Docker: (Once the test completes after a few seconds, you'll automatically exit the Docker shell)
3034

3135
docker run seleniumbase ./run_docker_test_in_chrome.sh

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,5 +156,6 @@ nav:
156156
extra:
157157
analytics:
158158
provider: google
159-
property: UA-167313767-1
159+
property: G-P5KFWRNLRN
160+
# property: UA-167313767-1
160161
# google_analytics: ['UA-167313767-1', 'seleniumbase.io']

mkdocs_build/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Minimum Python version: 3.7
33

44
regex>=2022.3.15
5-
tqdm>=4.63.0
5+
tqdm>=4.63.1
66
docutils==0.18.1
77
python-dateutil==2.8.2
88
livereload==2.6.3
@@ -22,9 +22,9 @@ bleach==4.1.0
2222
jsmin==3.0.1
2323
lunr==0.6.2
2424
nltk==3.7
25-
watchdog==2.1.6
25+
watchdog==2.1.7
2626
mkdocs==1.2.3
27-
mkdocs-material==8.2.5
27+
mkdocs-material==8.2.7
2828
mkdocs-exclude-search==0.6.4
2929
mkdocs-simple-hooks==0.1.5
3030
mkdocs-material-extensions==1.0.3

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ packaging>=21.3;python_version>="3.6"
66
setuptools>=44.1.1;python_version<"3.5"
77
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
88
setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"
9-
setuptools>=60.10.0;python_version>="3.7"
9+
setuptools>=61.0.0;python_version>="3.7"
1010
setuptools-scm>=5.0.2;python_version<"3.6"
1111
setuptools-scm>=6.4.2;python_version>="3.6"
1212
tomli>=1.2.3;python_version>="3.6" and 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__ = "2.4.24"
2+
__version__ = "2.4.25"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
print("\n*** Installing twine: *** (Required for PyPI uploads)\n")
5252
os.system("python -m pip install --upgrade 'twine>=3.8.0'")
5353
print("\n*** Installing tqdm: *** (Required for PyPI uploads)\n")
54-
os.system("python -m pip install --upgrade 'tqdm>=4.63.0'")
54+
os.system("python -m pip install --upgrade 'tqdm>=4.63.1'")
5555
print("\n*** Rebuilding distribution packages: ***\n")
5656
os.system("python -m build") # Create new tar/wheel
5757
print("\n*** Publishing The Release to PyPI: ***\n")
@@ -131,7 +131,7 @@
131131
'setuptools>=44.1.1;python_version<"3.5"',
132132
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
133133
'setuptools>=59.6.0;python_version>="3.6" and python_version<"3.7"',
134-
'setuptools>=60.10.0;python_version>="3.7"',
134+
'setuptools>=61.0.0;python_version>="3.7"',
135135
'setuptools-scm>=5.0.2;python_version<"3.6"',
136136
'setuptools-scm>=6.4.2;python_version>="3.6"',
137137
'tomli>=1.2.3;python_version>="3.6" and python_version<"3.7"',

0 commit comments

Comments
 (0)