Skip to content

Commit 736bf6f

Browse files
committed
Rename to sphinx-visualized
1 parent b8171a9 commit 736bf6f

16 files changed

Lines changed: 16 additions & 15 deletions

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Changelog
1010
- Show the reference directionality in link graph
1111
- Consolidate files to single location
1212
- Support older versions of sphinx.util.fileutil.copy_asset()
13+
- Rename extension to ``sphinx-visualized``
1314

1415
0.2.3
1516
-----

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include LICENSE
2-
recursive-include sphinx_visualised/static *
2+
recursive-include sphinx_visualized/static *

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
A Sphinx extension to generate interactive visualizations.
44

5-
[![PyPI version](https://img.shields.io/pypi/v/sphinx-visualised.svg)](https://pypi.python.org/pypi/sphinx-visualised)
5+
[![PyPI version](https://img.shields.io/pypi/v/sphinx-visualized.svg)](https://pypi.python.org/pypi/sphinx-visualized)
66
![Parallel safe](https://img.shields.io/badge/parallel%20safe-false-red)
77

88
## Documentation
99

10-
See [sphinx-visualised documentation](https://sphinx-visualized.readthedocs.io/en/latest/) for installation and configuration instructions.
10+
See [sphinx-visualized documentation](https://sphinx-visualized.readthedocs.io/en/latest/) for installation and configuration instructions.
1111

1212
## Demo
1313

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ furo
22
esbonio
33
sphinx-contributors
44
sphinx
5-
sphinx-visualised
5+
sphinx-visualized
66
sphinxemoji
77
sphinxext-opengraph

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"sphinx_contributors",
4242
"sphinx.ext.intersphinx",
4343
"sphinxext.opengraph",
44-
"sphinx_visualised",
44+
"sphinx_visualized",
4545
]
4646

4747
# Add any paths that contain templates here, relative to this directory.

docs/source/getting-started.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Directly install via pip by using:
88

99
.. code-block::
1010
11-
pip install sphinx-visualised
11+
pip install sphinx-visualized
1212
13-
Add ``sphinx_visualised`` to the `extensions <https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-extensions>`_ array in your Sphinx **conf.py**.
13+
Add ``sphinx_visualized`` to the `extensions <https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-extensions>`_ array in your Sphinx **conf.py**.
1414
For example:
1515

1616
.. code-block:: python
1717
18-
extensions = ['sphinx_visualised']
18+
extensions = ['sphinx_visualized']
1919
2020
Usage
2121
-----

docs/source/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ A `Sphinx`_ extension to generate interactive visualizations.
1515

1616
.. _Sphinx: http://sphinx-doc.org/
1717

18-
.. |PyPI version| image:: https://img.shields.io/pypi/v/sphinx-visualised.svg
19-
:target: https://pypi.python.org/pypi/sphinx-visualised
18+
.. |PyPI version| image:: https://img.shields.io/pypi/v/sphinx-visualized.svg
19+
:target: https://pypi.python.org/pypi/sphinx-visualized
2020
:alt: Latest PyPi Version
2121
.. |Parallel Safe| image:: https://img.shields.io/badge/parallel%20safe-false-red
2222
:target: #
2323
:alt: Parallel read/write safe
24-
.. |GitHub Stars| image:: https://img.shields.io/github/stars/jdillard/sphinx-visualised?style=social
25-
:target: https://github.com/jdillard/sphinx-visualised
24+
.. |GitHub Stars| image:: https://img.shields.io/github/stars/jdillard/sphinx-visualized?style=social
25+
:target: https://github.com/jdillard/sphinx-visualized
2626
:alt: GitHub Repository stars

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
build-backend = "setuptools.build_meta"
77

88
[project]
9-
name = "sphinx-visualised"
9+
name = "sphinx-visualized"
1010
description = "Visualization generator for Sphinx"
1111
authors = [
1212
{name = "Jared Dillard", email = "jared.dillard@gmail.com"},

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = attr: sphinx_visualised.__version__
2+
version = attr: sphinx_visualized.__version__
33

44
[options]
55
packages = find_namespace:
@@ -8,4 +8,4 @@ install_requires =
88

99
[options.packages.find]
1010
where = .
11-
include = sphinx_visualised*
11+
include = sphinx_visualized*

0 commit comments

Comments
 (0)