You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Panels, colorbars, and legends are now members of `~proplot.subplots.EdgeStack`
57
43
stacks rather than getting inserted directly into
58
44
the main `~proplot.subplots.GridSpec` (:pr:`50`).
59
-
- Define `~proplot.rctools.rc` default values with inline dictionaries rather than
60
-
with a default ``.proplotrc`` file, change the auto-generated user ``.proplotrc``
61
-
(:pr:`50`).
62
45
63
46
ProPlot v0.4.0 (2020-##-##)
64
47
===========================
65
48
.. rubric:: Deprecated
66
49
67
50
- Remove redundant `~proplot.rctools.use_fonts`, use ``rcParams['sans-serif']``
68
51
precedence instead (:pr:`95`).
69
-
- `~proplot.axes.Axes.dualx` and `~proplot.axes.Axes.dualx` no longer accept "scale-spec" arguments, must be a function, two functions, or an axis scale instance (:pr:`96`).
52
+
- `~proplot.axes.Axes.dualx` and `~proplot.axes.Axes.dualx` no longer accept "scale-spec" arguments.
53
+
Must be a function, two functions, or an axis scale instance (:pr:`96`).
``subplots.xlabspace``, and ``subplots.ylabspace`` spacing arguments,
56
+
automatically calculate default non-tight spacing using `~proplot.subplots._get_space`
57
+
based on current tick lengths, label sizes, etc.
70
58
71
59
.. rubric:: Features
72
60
73
61
- Add Fira Math as DejaVu Sans-alternative (:pr:`95`). Has complete set of math characters.
74
62
- Add TeX Gyre Heros as Helvetica-alternative (:pr:`95`). This is the new open-source default font.
75
-
- Add `~proplot.subplots.Figure` ``fallback_to_cm`` kwarg. This is used by `~proplot.styletools.show_fonts` to show dummy glyphs to clearly illustrate when fonts are missing characters, but preserve graceful fallback for end user.
Copy file name to clipboardExpand all lines: INSTALL.rst
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,18 @@
1
1
Installation
2
2
============
3
3
4
-
ProPlot can be installed with `pip<https://pypi.org>`__ or `conda <https://anaconda-project.readthedocs.io/en/latest/>`__:
4
+
ProPlot is published on `PyPi<https://pypi.org/project/proplot/>`__ and `conda-forge<https://conda-forge.org>`__. It can be installed with ``pip`` or ``conda`` as follows:
5
5
6
6
.. code-block:: bash
7
7
8
8
pip install proplot
9
-
10
-
.. code-block:: bash
11
-
12
9
conda install -c conda-forge proplot
13
10
14
-
An existing installation of ProPlot can be upgraded to the latest version with:
11
+
Likewise, an existing installation of ProPlot can be upgraded to the latest version with:
ProPlot can be installed with `pip<https://pypi.org>`__ or `conda <https://anaconda-project.readthedocs.io/en/latest/>`__:
11
+
ProPlot is published on `PyPi<https://pypi.org/project/proplot/>`__ and `conda-forge<https://conda-forge.org>`__. It can be installed with ``pip`` or ``conda`` as follows:
12
12
13
13
.. code-block:: bash
14
14
15
15
pip install proplot
16
-
17
-
.. code-block:: bash
18
-
19
16
conda install -c conda-forge proplot
20
17
21
-
An existing installation of ProPlot can be upgraded to the latest version with:
18
+
Likewise, an existing installation of ProPlot can be upgraded to the latest version with:
22
19
23
20
.. code-block:: bash
24
21
25
22
pip install --upgrade proplot
26
-
27
-
.. code-block:: bash
28
-
29
23
conda upgrade proplot
30
24
31
-
32
25
If you used ``pip install git+https://github.com/lukelbd/proplot.git`` to install ProPlot before it was released on PyPi, you may need to run ``pip uninstall proplot`` before upgrading.
33
26
To install a development version of ProPlot, you can use this same method, or clone the repository and run ``pip install --upgrade .`` inside the ``proplot`` folder.
0 commit comments