Skip to content

Commit a7f7a18

Browse files
authored
Merge pull request #24 from highcharts-for-python/develop
PR for v.1.0.0-rc4
2 parents 2f825b9 + 248e63b commit a7f7a18

File tree

8 files changed

+19
-10
lines changed

8 files changed

+19
-10
lines changed

.readthedocs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ 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:

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Release 1.0.0-rc4
2+
=========================================
3+
4+
* Revised the documentation.
5+
6+
---------------
7+
18
Release 1.0.0-rc3
29
=========================================
310

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ which together provides comprehensive support across the entire
4141
* - `Highcharts Stock for Python <https://stock-docs.highchartspython.com/>`__
4242
- `Highcharts Stock (JS) <https://www.highcharts.com/products/stock/>`__
4343
- the time series visualization extension to Highcharts Core
44-
* - `Highcharts Maps <https://maps-docs.highchartspython.com/>`__
44+
* - `Highcharts Maps for Python <https://maps-docs.highchartspython.com/>`__
4545
- `Highcharts Maps (JS) <https://www.highcharts.com/products/maps/>`__
4646
- the map visualization extension to Highcharts Core
47-
* - `Highcharts Gantt <https://gantt-docs.highchartspython.com/>`__
47+
* - `Highcharts Gantt for Python <https://gantt-docs.highchartspython.com/>`__
4848
- `Highcharts Gantt (JS) <https://www.highcharts.com/products/gantt/>`__
4949
- the Gantt charting extension to Highcharts Core
5050
* - (all libraries in the Python toolkit)

docs/_dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
2525
$ pip install highcharts-core
2626
27-
* `Highcharts JS <https://www.highcharts.com>`__ v.10.2 or higher
27+
* `Highcharts Core <https://www.highcharts.com/products/highcharts/>`__ v.10.2 or higher
2828

2929
.. note::
3030

docs/api/_handling_defaults.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
default values are generally applied if a JavaScript property is ``undefined`` (missing or
66
otherwise not specified), which is different from the JavaScript value of ``null``.
77

8-
While my Pythonic instinct is to:
8+
While our Pythonic instinct is to:
99

1010
* indicate those default values explicitly in the **Highcharts for Python** code as
1111
keyword argument defaults, and

docs/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Design Patterns and Standards
217217
JavaScript libraries. If in doubt, take a look at the extensive
218218
`documentation <https://www.highcharts.com/docs/index>`_ and in particular the
219219
`API reference <https://api.highcharts.com/highcharts>`_. Because
220-
**Highcharts for Python** wraps the Highcharts JS API, its design is heavily shaped by
220+
**Highcharts for Python** wraps the Highcharts Core API, its design is heavily shaped by
221221
Highcharts JS' own design - as one should expect.
222222

223223
However, one of the main goals of **Highcharts for Python** is to make the Highcharts JS

docs/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Highcharts Core for Python
2525
Supported Visualizations <visualizations>
2626
FAQ <faq>
2727
Toolkit Components and Roadmap <toolkit>
28-
Using Highcharts for Python <using>
28+
Using Highcharts Core for Python <using>
2929
API Reference <api>
3030
Error Reference <errors>
3131
Getting Help <support>
@@ -40,7 +40,7 @@ Highcharts Core for Python
4040
**Highcharts Core for Python** is designed to be compatible with:
4141

4242
* Python 3.10 or higher,
43-
* Highcharts JS 10.2 or higher,
43+
* Highcharts Core (JS) 10.2 or higher,
4444
* Jupyter Notebook 6.4 or higher,
4545
* IPython 8.10 or higher,
4646
* Pandas 1.3 or higher
@@ -85,10 +85,10 @@ which together provides comprehensive support across the entire
8585
* - `Highcharts Stock for Python <https://stock-docs.highchartspython.com/>`__
8686
- `Highcharts Stock (JS) <https://www.highcharts.com/products/stock/>`__
8787
- the time series visualization extension to Highcharts Core
88-
* - `Highcharts Maps <https://maps-docs.highchartspython.com/>`__
88+
* - `Highcharts Maps for Python <https://maps-docs.highchartspython.com/>`__
8989
- `Highcharts Maps (JS) <https://www.highcharts.com/products/maps/>`__
9090
- the map visualization extension to Highcharts Core
91-
* - `Highcharts Gantt <https://gantt-docs.highchartspython.com/>`__
91+
* - `Highcharts Gantt for Python <https://gantt-docs.highchartspython.com/>`__
9292
- `Highcharts Gantt (JS) <https://www.highcharts.com/products/gantt/>`__
9393
- the Gantt charting extension to Highcharts Core
9494
* - (all libraries in the Python toolkit)

highcharts_core/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0-rc3'
1+
__version__ = '1.0.0-rc4'

0 commit comments

Comments
 (0)