Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Sep 21, 2024
1 parent c3f2be0 commit 685ab8e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build:
tools:
python: "3.12"
apt_packages:
- "graphviz"
- "graphviz" # Required for Sphinx's graphviz extension (class diagrams)

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
3 changes: 1 addition & 2 deletions docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
# ones.
extensions = [
'myst_parser',
# 'recommonmark',
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
Expand Down Expand Up @@ -223,7 +222,7 @@
# "github_size": "small",
"github_count": "true",
# "travis_button": True,
# "codecov_button": True,
"codecov_button": True,
"show_related": False,
"note_bg": "#FFF59C",
}
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Format code using the editor's formatting options or like so::
`PEP 8 <https://www.python.org/dev/peps/pep-0008/>`_.

Failing tests or not follwing PEP 8 will break builds on
`travis <https://app.travis-ci.com/github/mar10/nutree>`_,
`GitHub <https://github.com/mar10/fabulist/actions/workflows/tests.yml>`_,
so run ``$ tox`` and ``$ tox -e format`` frequently and before
you commit!

Expand Down
4 changes: 0 additions & 4 deletions docs/sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,6 @@ Nutree Facts
`Read more <installation.html>`_ ...


.. .. |travis_badge| image:: https://travis-ci.com/mar10/nutree.svg?branch=main
.. :alt: Build Status
.. :target: https://app.travis-ci.com/github/mar10/nutree
.. |gha_badge| image:: https://github.com/mar10/nutree/actions/workflows/tests.yml/badge.svg
:alt: Build Status
:target: https://github.com/mar10/nutree/actions/workflows/tests.yml
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ select = [
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
"I", # isort
"UP", # pyupgrade
"T", # print, ...
# "D", # pydocstyle
Expand Down
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
; Programming Language :: Python :: 3.7 # EOL 2023-06-27
Programming Language :: Python :: 3.8 # EOL 2024-10
Programming Language :: Python :: 3.9 # EOL 2025-10
Programming Language :: Python :: 3.10 # EOL 2026-10
Programming Language :: Python :: 3.11 # EOL 2027-10
Programming Language :: Python :: 3.12 # EOL 2028-10
; Programming Language :: Python :: 3.13 # EOL 2029-10
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
; Programming Language :: Python :: 3.13
Topic :: Software Development :: Libraries :: Python Modules

[options]
Expand Down

0 comments on commit 685ab8e

Please sign in to comment.