File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,5 @@ Features
1313* Interaction types: hyperlinking, interactive mouse coordinates, export figure data to CSV.
1414* Interactive output formats: Embeddable, self-contained HTML.
1515* Static output formats: SVG, PDF, PNG, MP4.
16- * Portability: single code base for Python 2.7 / Python 3.6.
1716* Testing: greater-than-95% regression test coverage.
1817
Original file line number Diff line number Diff line change 77Release Notes
88=============
99
10+ Toyplot 0.19.0 - April 21st, 2020
11+ ---------------------------------
12+
13+ * First Toyplot release that only supports Python 3.
14+ * Colormaps return the first color instead of the last when the domain is empty.
15+ * The `target ` attribute is supported in rich text hyperlinks, useful for opening hyperlinks in separate tabs from Juypter notebooks.
16+ * Provide an explicit default style for rich text hyperlinks, for consistent default outputs regardless of render context.
17+ * Add rich text support for styling underlines.
18+ * `toyplot.locator.Timestamp ` didn't produce correctly positioned labels in some cases with non-UTC timezones.
19+ * Warn callers who try to use with Python 2.
20+ * Markers and marks are formattable objects, for easier embedding in rich text.
21+ * Switched to an explicit scenegraph to manage relationships among internal objects.
22+ * Fixed a bug that affect the domain and range of shared axes.
23+ * Expanded the user guide section on rendering.
24+ * Include the LICENSE file in source distributions, for downstream maintainers.
25+ * Fixed code that used obsolete Pandas ix API.
26+
1027Toyplot 0.18.0 - December 24th, 2018
1128------------------------------------
1229
Original file line number Diff line number Diff line change 1515 "Intended Audience :: Science/Research" ,
1616 "License :: OSI Approved :: BSD License" ,
1717 "Natural Language :: English" ,
18- "Programming Language :: Python :: 2" ,
1918 "Programming Language :: Python :: 3" ,
2019 "Topic :: Scientific/Engineering :: Visualization" ,
2120 ],
2928 "reportlab" ,
3029 ],
3130 long_description = """Toyplot is the kid-sized plotting toolkit for Python with grownup-sized goals:
32- * Develop beautiful interactive, animated plots that embrace the unique capabilities of electronic publishing and support repoducibility.
31+ * Develop beautiful plots that embrace the unique capabilities of electronic publishing and support repoducibility.
3332 * Create the best possible data graphics "out-of-the-box", maximizing data ink and minimizing chartjunk.
3433 * Provide a clean, minimalist interface that scientists and engineers will love.
3534
Original file line number Diff line number Diff line change 1414
1515from toyplot .canvas import Canvas
1616
17- __version__ = "0.19.0-dev "
17+ __version__ = "0.19.0"
1818
1919log = logging .getLogger (__name__ )
2020log .setLevel (logging .WARNING )
You can’t perform that action at this time.
0 commit comments