Skip to content

Commit

Permalink
Version bumps to 0.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyxpp committed Jul 22, 2020
1 parent 5837463 commit c22cd05
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ tests/*.eps
tutorial/*.png
tutorial/*.pdf
tutorial/*.eps
.vscode
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ mpltex Changelog

Here you can see the full list of changes between each ``mpltex`` release.

Version 0.7
-----------

* Fix a warning of text.latex.preamble.
* Now should be fully compatible with Python 3 and Should also work with Python 2.
* Revert some default format to MPL v1 for higher MPL versions.
* Released at July 22nd, 2020.

Version 0.6.1
-------------

Expand Down
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
mpltex
======

``mpltex`` is a python package for producing publication quality images using ``matplotlib``.
Inspired by `Olga Botvinnik <http://olgabotvinnik.com/>`_'s python package `prettyplotlib <https://github.com/olgabot/prettyplotlib>`_.
``mpltex`` is a python package for producing publication quality images using ``matplotlib``, which is inspired by `Olga Botvinnik <http://olgabotvinnik.com/>`_'s python package `prettyplotlib <https://github.com/olgabot/prettyplotlib>`_. Tutorial can be found `here <http://www.yxliu.group/2014/09/mpltex>`_.

The internal ``matplotlib`` color cycle is replaced by Tableau classic 10 color scheme which looks less saturated and more pleasing to eyes.
The colors of this scheme is reordered, which is different from current version of ``matplotlib`` v3.
Other available color schemes for multi-line plots are ColorBrewer Set 1 and Tableau classic 20.
For more information on these color schemes, see `documentation of palettable <https://jiffyclub.github.io/palettable>`_.

``mpltex`` also provide a way to generate highly configurable line styles with colors, line types, and line markers.
Hollow markers are supported.

``mpltex`` should work properly both in Python 2 and 3. If not, please file an issue `here <https://github.com/liuyxpp/mpltex>`_.

Quickstart
----------

Expand Down
2 changes: 1 addition & 1 deletion mpltex/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
Version info for ``mpltex`` package.
"""

__version__ = "0.6.1"
__version__ = "0.7"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Education', ],
)

0 comments on commit c22cd05

Please sign in to comment.