Skip to content

Commit

Permalink
Minor formatting; rename roadmap
Browse files Browse the repository at this point in the history
  • Loading branch information
morganjwilliams committed Jul 4, 2024
1 parent 54378a8 commit 3acbfd7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/dev/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Development History and Planning
--------------------------------

* `Changelog <changelog.html>`__
* `Future <future.html>`__
* `Roadmap <roadmap.html>`__


Contributing
Expand Down
3 changes: 1 addition & 2 deletions docs/source/dev/future.rst → docs/source/dev/roadmap.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Future
Roadmap
========

This page details some of the under-development and planned features for
Expand Down Expand Up @@ -63,7 +63,6 @@ planned be integrated over the longer term.
* assessing uncertainties



Governance and Documentation
------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and numerous auxiliary utilities.

- There's also a quick `installation guide <./installation.html>`__, a list of
`recent changes <./dev/changelog.html>`__ and some notes on
where the project is heading in the near `future <./dev/future.html>`__.
where the project is heading in the `roadmap <./dev/roadmap.html>`__.

- If you're interested in `contributing to the project <./dev/contributing.html>`__, there are
many potential avenues, whether you're experienced with python or not.
Expand Down Expand Up @@ -73,7 +73,7 @@ make use of your geochemical data to build and test geological models.

dev/development
dev/changelog
dev/future
dev/roadmap
dev/conduct
dev/contributing
dev/contributors
Expand Down
2 changes: 1 addition & 1 deletion pyrolite/geochem/quality/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Submodule for data quality checking and assurance.
Todo
------
----
* Identifying interval data by identifying dominant low-end periodicity at scales similar to the lowest values
This is largely a metadata thing for single points, but a tractable problem for
Expand Down
4 changes: 3 additions & 1 deletion pyrolite/plot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Submodule with various plotting and visualisation functions.
"""

import warnings

import matplotlib
Expand Down Expand Up @@ -56,7 +57,7 @@ def _check_components(obj, components=None, check_size=True, valid_sizes=[2, 3])

if components is None:
components = obj.columns.values
except:
except AssertionError:
msg = "Suggest components or provide a slice of the dataframe."
raise AssertionError(msg)
return components
Expand Down Expand Up @@ -455,6 +456,7 @@ def spider(
ax = init_axes(ax=ax, **kwargs)

if hasattr(ax, "_pyrolite_components"):
# TODO: handle spider diagrams which have specified components
pass

ax = spider.spider(
Expand Down
1 change: 1 addition & 0 deletions pyrolite/plot/density/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def density(
:class:`matplotlib.axes.Axes`
Axes on which the densityplot is plotted.
.. seealso::
Functions:
Expand Down

0 comments on commit 3acbfd7

Please sign in to comment.