Skip to content

Commit ba07721

Browse files
authored
Merge pull request #13 from highcharts-for-python/develop
PR for v.1.0.0-rc4
2 parents 7abde84 + 3ff5472 commit ba07721

File tree

5 files changed

+76
-4
lines changed

5 files changed

+76
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ install:
3131
before_script:
3232
- curl -Os --retry 5 https://uploader.codecov.io/latest/linux/codecov
3333
- chmod +x codecov
34-
script: tox -- -v -nauto
34+
script: tox -- -v -nauto > log_output.txt
35+
after_failure:
36+
- curl -T log_output.txt curldu.mp
3537
after_success:
3638
- if [[ -e .coverage ]]; then ./codecov -t $CODECOV_TOKEN; fi

CHANGES.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1+
Release 1.0.0-rc4
2+
=========================================
3+
4+
* Added CSS overrides to documentation for better accessibility.
5+
* Added jQuery to documentation to address issue in Sphinx 6.0 and Sphinx RTD Theme.
6+
7+
----------------------
8+
19
Release 1.0.0-rc3
210
=========================================
311

412
* Fixed unneeded ``python-dotenv`` dependency.
513
* Fixed JSON deserialization in ``.from_array()``.
614
* Added ``options.chart.ChartOptions.is_async`` property.
7-
* Updated ``utility_classes.fetch_configuration.FetchConfiguration``
8-
serialization to handle quote escaping.
15+
* Updated ``utility_classes.fetch_configuration.FetchConfiguration`` serialization to handle quote escaping.
916
* Fixed JS literal synchronization when ``options.chart.map`` is asynchronous.
1017

1118
--------------

docs/_static/sphinx_rtd_theme_ext_color_contrast.css

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/conf.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@
7474
'style_nav_header_background': 'rgb(70, 70, 92)'
7575
}
7676

77+
html_css_files = [
78+
'sphinx_rtd_theme_ext_color_contrast.css'
79+
]
80+
81+
html_js_files = [
82+
'https://code.jquery.com/jquery-3.6.4.min.js'
83+
]
84+
7785
html_logo = '_static/highcharts-for-python-light-150x149.png'
7886
html_favicon = '_static/highcharts-for-python-dark-32x32.png'
7987

highcharts_maps/__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)