Skip to content

Commit 4ce99ca

Browse files
authored
Merge pull request #10 from highcharts-for-python/enhancement/add-documentation
Added documentation
2 parents fbba0bc + 5c77d2a commit 4ce99ca

File tree

484 files changed

+24571
-91
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

484 files changed

+24571
-91
lines changed

.readthedocs.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ build:
1414
# nodejs: "19"
1515
# rust: "1.64"
1616
# golang: "1.19"
17+
apt_packages:
18+
- graphviz
1719

1820
# Build documentation in the docs/ directory with Sphinx
1921
sphinx:
2022
configuration: docs/conf.py
2123

2224
# If using Sphinx, optionally build your docs in additional formats such as PDF
23-
# formats:
24-
# - pdf
25+
formats:
26+
- pdf
2527

2628
# Optionally declare the Python requirements required to build your docs
2729
python:

.travis.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,24 @@ job:
99
# - TOXENV=py39
1010
- python: "3.10"
1111
dist: focal
12-
env: TOXENV=py310
12+
env:
13+
- TOXENV=py310
14+
- YARN_GPG=no
1315
- python: "3.11"
1416
dist: bionic
15-
env: TOXENV=py311
17+
env:
18+
- TOXENV=py311
19+
- YARN_GPG=no
1620
- python: "3.10"
1721
dist: focal
18-
env: TOXENV=coverage
22+
env:
23+
- TOXENV=coverage
24+
- YARN_GPG=no
1925
- python: "3.10"
2026
dist: focal
21-
env: TOXENV=docs
27+
env:
28+
- TOXENV=docs
29+
- YARN_GPG=no
2230
os:
2331
- linux
2432
git:
@@ -29,6 +37,6 @@ install:
2937
before_script:
3038
- curl -Os --retry 5 https://uploader.codecov.io/latest/linux/codecov
3139
- chmod +x codecov
32-
script: tox -- -v -nauto
40+
script: tox -- -v -n auto
3341
after_success:
3442
- if [[ -e .coverage ]]; then ./codecov -t $CODECOV_TOKEN; fi

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/_contributors.rst

Lines changed: 1 addition & 0 deletions

docs/_dependencies.rst

Lines changed: 110 additions & 0 deletions

docs/_installation.rst

Lines changed: 5 additions & 0 deletions

docs/_static/abands-example.png

53.6 KB

docs/_static/ad-example.png

33.7 KB

docs/_static/apo-example.png

42.2 KB

docs/_static/arcdiagram-example.png

85.8 KB

0 commit comments

Comments
 (0)