Skip to content

Commit 6f344e4

Browse files
Docs overhaul2 (#910)
* checkpoint * docsOverhaul2: complete work * amend * more updates * sphinx-build: imporve to generate preview as well * ci: fix naming * allow-deployments from forks * ci: fix back
1 parent 77072f3 commit 6f344e4

34 files changed

+342
-320
lines changed

.github/workflows/build-docs.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Sphinx build
22

33
on: # yamllint disable-line rule:truthy
44
push:
5+
branches:
6+
- master
57
workflow_dispatch:
68

79
jobs:
@@ -29,9 +31,11 @@ jobs:
2931
name: html-docs
3032
path: ./doc/html/
3133

32-
- name: Deploy
34+
- name: Deploy Master Docs to GitHub Pages
3335
if: ${{ github.ref == 'refs/heads/master' }}
3436
uses: peaceiris/actions-gh-pages@v4
3537
with:
3638
github_token: ${{ secrets.GITHUB_TOKEN }}
3739
publish_dir: ./doc/html
40+
publish_branch: gh-pages
41+
keep_files: false

.github/workflows/python-package.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ concurrency:
1616

1717
jobs:
1818
build:
19-
2019
runs-on: ubuntu-latest
2120
strategy:
2221
fail-fast: false

README.rst

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
jenkinsapi
1+
Jenkinsapi
22
==========
33

44
.. image:: https://badge.fury.io/py/jenkinsapi.png
@@ -62,14 +62,6 @@ Most users can do the following:
6262
6363
pip install jenkinsapi
6464
65-
Or:
66-
67-
.. code-block:: bash
68-
69-
easy_install jenkinsapi
70-
71-
Both of these techniques can be combined with virtualenv to create an application-specific installation.
72-
7365
Using your operating-system's package manager
7466
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7567

@@ -105,7 +97,7 @@ the testsuite with the following command:
10597

10698
.. code-block:: bash
10799
108-
uv python sync
100+
uv sync
109101
uv run pytest -sv --cov=jenkinsapi --cov-report=term-missing --cov-report=xml jenkinsapi_tests
110102
111103
Otherwise using a virtualenv is recommended. Setuptools will automatically fetch

doc/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The JenkinsAPI project welcomes contributions via GitHub. Please bear in mind th
66
Python compatibility
77
--------------------
88

9-
The project currently targets Python 3.8+. Last version compatible with Python 2.7 is tagged as Py2.
9+
The project currently targets Python 3.8+.
1010

1111
Code formatting
1212
---------------

doc/conf.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@
1212
# All configuration values have a default; values that are commented out
1313
# serve to show the default.
1414
import logging
15-
import importlib.metadata
1615
import jenkinsapi
1716

18-
VERSION = RELEASE = importlib.metadata.version("jenkinsapi")
17+
VERSION = RELEASE = jenkinsapi.__version__
1918

2019
if __name__ == "__main__":
2120
logging.basicConfig()

doc/index.rst

+29-29
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Sections
2020
========
2121
.. toctree::
2222
:maxdepth: 2
23+
:titlesonly:
2324

24-
api
25-
artifact
26-
build
25+
readme_link
2726
using_jenkinsapi
2827
jenkinsapi
28+
submodules/submodule
2929
../CONTRIBUTING
3030

3131
Important Links
@@ -60,24 +60,22 @@ Most users can do the following:
6060
Examples
6161
--------
6262
63-
JenkinsAPI is intended to map the objects in Jenkins (e.g. Builds, Views, Jobs) into easily managed Python objects::
64-
65-
Python 2.7.4 (default, Apr 19 2013, 18:28:01)
66-
[GCC 4.7.3] on linux2
67-
Type "help", "copyright", "credits" or "license" for more information.
68-
>>> import jenkinsapi
69-
>>> from jenkinsapi.jenkins import Jenkins
70-
>>> J = Jenkins('http://localhost:8080')
71-
>>> J.keys() # Jenkins objects appear to be dict-like, mapping keys (job-names) to
72-
['foo', 'test_jenkinsapi']
73-
>>> J['test_jenkinsapi']
74-
<jenkinsapi.job.Job test_jenkinsapi>
75-
>>> J['test_jenkinsapi'].get_last_good_build()
76-
<jenkinsapi.build.Build test_jenkinsapi #77>
63+
JenkinsAPI is intended to map the objects in Jenkins (e.g. Builds, Views, Jobs) into easily managed Python objects
64+
65+
.. code-block:: python
66+
67+
import jenkinsapi
68+
from jenkinsapi.jenkins import Jenkins
69+
J = Jenkins('http://localhost:8080')
70+
J.keys() # Jenkins objects appear to be dict-like, mapping keys (job-names) to ['foo', 'test_jenkinsapi']
71+
J['test_jenkinsapi'] # <jenkinsapi.job.Job test_jenkinsapi>
72+
J['test_jenkinsapi'].get_last_good_build() # <jenkinsapi.build.Build test_jenkinsapi #77>
7773
7874
JenkinsAPI lets you query the state of a running Jenkins server. It also allows you to change configuration and automate minor tasks on nodes and jobs.
7975
80-
You can use Jenkins to get information about recently completed builds. For example, you can get the revision number of the last successful build in order to trigger some kind of release process.::
76+
You can use Jenkins to get information about recently completed builds. For example, you can get the revision number of the last successful build in order to trigger some kind of release process.
77+
78+
.. code-block:: python
8179
8280
from jenkinsapi.jenkins import Jenkins
8381
@@ -100,19 +98,19 @@ Tips & Tricks
10098
Getting the installed version of JenkinsAPI
10199
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
102100
103-
This package supports PEP-396 by implementing a __version__ attribute. This contains a string in the format x.y.z:
101+
This package supports PEP-396 by implementing a version attribute. This contains a string in the format x.y.z:
102+
103+
.. code-block:: python
104+
105+
import jenkinsapi
106+
print(jenkinsapi.__version__)
104107
105-
>>> import jenkinsapi
106-
>>> import importlib.metadata
107-
>>> print(importlib.metadata.version("jenkinsapi"))
108-
0.2.23
109108
110-
There is also a command-line tool for use in the shell:
111109
112110
.. code-block:: bash
113111
114-
$ jenkinsapi_version
115-
0.2.23
112+
jenkinsapi_version
113+
116114
117115
Project Authors
118116
===============
@@ -132,10 +130,12 @@ JenkinsAPI is a pure-Python project and can be improved with almost any programm
132130
133131
* Make sure that pip and uv are installed on your computer. On most Linux systems these can be installed directly by the OS package-manager.
134132
135-
* Change to the new directory and check out the project code into the **src** subdirectory::
133+
* Change to the new directory and check out the project code into the **src** subdirectory
134+
135+
.. code-block:: bash
136136
137-
cd jenkinsapi
138-
git clone https://github.com/pycontribs/jenkinsapi.git src
137+
cd jenkinsapi
138+
git clone https://github.com/pycontribs/jenkinsapi.git src
139139
140140
* Install python dependencies and test the project
141141

doc/jenkinsapi.command_line.rst

-21
This file was deleted.

0 commit comments

Comments
 (0)