Skip to content

Commit 0b42aba

Browse files
authored
ci: with latest (#49)
* chore: run with latest * modify the deps
1 parent 8f922ed commit 0b42aba

14 files changed

+50
-62
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@ jobs:
2424
python-version: '3.12'
2525
- name: Setup python-client
2626
run: |
27-
pip install --user pipenv
28-
python -m pipenv lock --clear
29-
python -m pipenv install --dev --system
30-
python -m pip install setuptools
31-
python setup.py install
27+
make install-uv
28+
make sync-dev
3229
working-directory: python-client
3330
- name: Build doc
3431
shell: bash -xe {0}
3532
run: |
33+
python -m pip install selenium==4.34.2
3634
python -m pip install -r requirements.txt
3735
bash generate.sh
3836
working-directory: python-client/docs

docs/_sources/index.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. Appium python client documentation master file, created by
2-
sphinx-quickstart on Sun Jun 8 00:34:20 2025.
2+
sphinx-quickstart on Mon Aug 11 00:55:02 2025.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55

docs/_static/pygments.css

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
66
.highlight .hll { background-color: #ffffcc }
77
.highlight { background: #f8f8f8; }
88
.highlight .c { color: #3D7B7B; font-style: italic } /* Comment */
9-
.highlight .err { border: 1px solid #F00 } /* Error */
9+
.highlight .err { border: 1px solid #FF0000 } /* Error */
1010
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
11-
.highlight .o { color: #666 } /* Operator */
11+
.highlight .o { color: #666666 } /* Operator */
1212
.highlight .ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
1313
.highlight .cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
1414
.highlight .cp { color: #9C6500 } /* Comment.Preproc */
@@ -25,34 +25,34 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
2525
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
2626
.highlight .gs { font-weight: bold } /* Generic.Strong */
2727
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
28-
.highlight .gt { color: #04D } /* Generic.Traceback */
28+
.highlight .gt { color: #0044DD } /* Generic.Traceback */
2929
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
3030
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
3131
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
3232
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
3333
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
3434
.highlight .kt { color: #B00040 } /* Keyword.Type */
35-
.highlight .m { color: #666 } /* Literal.Number */
35+
.highlight .m { color: #666666 } /* Literal.Number */
3636
.highlight .s { color: #BA2121 } /* Literal.String */
3737
.highlight .na { color: #687822 } /* Name.Attribute */
3838
.highlight .nb { color: #008000 } /* Name.Builtin */
39-
.highlight .nc { color: #00F; font-weight: bold } /* Name.Class */
40-
.highlight .no { color: #800 } /* Name.Constant */
41-
.highlight .nd { color: #A2F } /* Name.Decorator */
39+
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
40+
.highlight .no { color: #880000 } /* Name.Constant */
41+
.highlight .nd { color: #AA22FF } /* Name.Decorator */
4242
.highlight .ni { color: #717171; font-weight: bold } /* Name.Entity */
4343
.highlight .ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
44-
.highlight .nf { color: #00F } /* Name.Function */
44+
.highlight .nf { color: #0000FF } /* Name.Function */
4545
.highlight .nl { color: #767600 } /* Name.Label */
46-
.highlight .nn { color: #00F; font-weight: bold } /* Name.Namespace */
46+
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
4747
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
4848
.highlight .nv { color: #19177C } /* Name.Variable */
49-
.highlight .ow { color: #A2F; font-weight: bold } /* Operator.Word */
50-
.highlight .w { color: #BBB } /* Text.Whitespace */
51-
.highlight .mb { color: #666 } /* Literal.Number.Bin */
52-
.highlight .mf { color: #666 } /* Literal.Number.Float */
53-
.highlight .mh { color: #666 } /* Literal.Number.Hex */
54-
.highlight .mi { color: #666 } /* Literal.Number.Integer */
55-
.highlight .mo { color: #666 } /* Literal.Number.Oct */
49+
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
50+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
51+
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
52+
.highlight .mf { color: #666666 } /* Literal.Number.Float */
53+
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
54+
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
55+
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
5656
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
5757
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
5858
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
@@ -67,9 +67,9 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
6767
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
6868
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
6969
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
70-
.highlight .fm { color: #00F } /* Name.Function.Magic */
70+
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
7171
.highlight .vc { color: #19177C } /* Name.Variable.Class */
7272
.highlight .vg { color: #19177C } /* Name.Variable.Global */
7373
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
7474
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
75-
.highlight .il { color: #666 } /* Literal.Number.Integer.Long */
75+
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */

docs/genindex.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
88
<title>Index &mdash; Python client 1.1 1.1 documentation</title>
9-
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
9+
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
1010
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
1111

1212

@@ -687,19 +687,17 @@ <h2 id="H">H</h2>
687687
<li><a href="webdriver.extensions.android.html#webdriver.extensions.android.nativekey.AndroidKey.H">H (AndroidKey attribute)</a>
688688
</li>
689689
<li><a href="webdriver.extensions.html#webdriver.extensions.hw_actions.HardwareActions">HardwareActions (class in webdriver.extensions.hw_actions)</a>
690-
</li>
691-
<li><a href="webdriver.html#webdriver.switch_to.HasDriver">HasDriver (class in webdriver.switch_to)</a>
692690
</li>
693691
<li><a href="webdriver.html#webdriver.command_method.CommandMethod.HEAD">HEAD (CommandMethod attribute)</a>
694692
</li>
695693
<li><a href="webdriver.extensions.android.html#webdriver.extensions.android.nativekey.AndroidKey.HEADSETHOOK">HEADSETHOOK (AndroidKey attribute)</a>
696694
</li>
697695
<li><a href="webdriver.extensions.android.html#webdriver.extensions.android.nativekey.AndroidKey.HELP">HELP (AndroidKey attribute)</a>
698696
</li>
699-
</ul></td>
700-
<td style="width: 33%; vertical-align: top;"><ul>
701697
<li><a href="webdriver.extensions.android.html#webdriver.extensions.android.nativekey.AndroidKey.HENKAN">HENKAN (AndroidKey attribute)</a>
702698
</li>
699+
</ul></td>
700+
<td style="width: 33%; vertical-align: top;"><ul>
703701
<li><a href="webdriver.html#webdriver.mobilecommand.MobileCommand.HIDE_KEYBOARD">HIDE_KEYBOARD (MobileCommand attribute)</a>
704702
</li>
705703
<li><a href="webdriver.extensions.html#webdriver.extensions.keyboard.Keyboard.hide_keyboard">hide_keyboard() (Keyboard method)</a>

docs/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
99
<title>Appium python client documentation &mdash; Python client 1.1 1.1 documentation</title>
10-
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
10+
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
1111
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
1212

1313

@@ -281,7 +281,6 @@ <h1>Appium python client documentation<a class="headerlink" href="#appium-python
281281
</ul>
282282
</li>
283283
<li class="toctree-l2"><a class="reference internal" href="webdriver.html#module-webdriver.switch_to">webdriver.switch_to module</a><ul>
284-
<li class="toctree-l3"><a class="reference internal" href="webdriver.html#webdriver.switch_to.HasDriver"><code class="docutils literal notranslate"><span class="pre">HasDriver</span></code></a></li>
285284
<li class="toctree-l3"><a class="reference internal" href="webdriver.html#webdriver.switch_to.MobileSwitchTo"><code class="docutils literal notranslate"><span class="pre">MobileSwitchTo</span></code></a><ul>
286285
<li class="toctree-l4"><a class="reference internal" href="webdriver.html#webdriver.switch_to.MobileSwitchTo.context"><code class="docutils literal notranslate"><span class="pre">MobileSwitchTo.context()</span></code></a></li>
287286
</ul>

docs/objects.inv

-4 Bytes
Binary file not shown.

docs/py-modindex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
88
<title>Python Module Index &mdash; Python client 1.1 1.1 documentation</title>
9-
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
9+
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
1010
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
1111

1212

docs/search.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
88
<title>Search &mdash; Python client 1.1 1.1 documentation</title>
9-
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
9+
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
1010
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
1111

1212

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/webdriver.common.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
99
<title>webdriver.common package &mdash; Python client 1.1 1.1 documentation</title>
10-
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b86133f3" />
10+
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=80d5e7a1" />
1111
<link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" />
1212

1313

0 commit comments

Comments
 (0)