Skip to content

Commit

Permalink
Merge pull request #1 from ianhi/docs-test
Browse files Browse the repository at this point in the history
Fix docs rendering
  • Loading branch information
ianhi authored Jun 30, 2021
2 parents b1d8222 + 5661db7 commit 5f40e4e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

A multiclass point clicker for matplotlib

![GIF of example usage](docs/_static/images/front-page.apng)


Read the [Documentation](https://mpl-point-clicker.readthedocs.io/en/stable)

## Installation

You can install using `pip`:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Ian Hunt-Isaak'

# The full version, including alpha/beta/rc tags
from mpl_point_clicker import __version__ as release
from _version import __version__ as release


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion mpl_point_clicker/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Copyright (c) Ian Hunt-Isaak.
# Distributed under the terms of the Modified BSD License.

version_info = (0, 1, 0)
version_info = (0, 1, 1)
__version__ = ".".join(map(str, version_info))
12 changes: 12 additions & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
python:
version: 3.8
install:
- method: pip
path: .
extra_requirements:
- doc

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ doc =
sphinx-copybutton
sphinx-autobuild
sphinx_gallery>=0.8.2
autoapi
dev =
%(test)s
%(doc)s

0 comments on commit 5f40e4e

Please sign in to comment.