From e8f9058974f0b379d41fc9e44acf59a9dbf274d8 Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Tue, 1 Aug 2023 13:19:42 -0500 Subject: [PATCH] Minor doc updates --- pyinaturalist/models/media.py | 6 ++++++ pyproject.toml | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/pyinaturalist/models/media.py b/pyinaturalist/models/media.py index dd79e9ae..eabd40d7 100644 --- a/pyinaturalist/models/media.py +++ b/pyinaturalist/models/media.py @@ -187,6 +187,12 @@ def _str_attrs(self) -> List[str]: @define_model class Sound(BaseMedia): + """:fa:`media-playback` An observation sound, based on the schema of sounds from: + + * `GET /observations `_ + * `GET /taxa ` + """ + file_content_type: str = field(default=None) file_url: str = field(default=None) native_sound_id: str = field(default=None) diff --git a/pyproject.toml b/pyproject.toml index accec67a..baeb1f3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,8 +51,8 @@ markdown-it-py = [ ujson = {optional=true, version=">5.0"} # Documentation dependencies needed for Readthedocs builds -furo = {optional=true, python=">=3.8", version="^2023.3"} -ipython = {optional=true, python=">=3.8", version="^7.34"} +furo = {optional=true, python=">=3.8", version="^2023.7"} +ipython = {optional=true, python=">=3.8", version="^8.12"} linkify-it-py = {optional=true, python=">=3.8", version="^2.0"} myst-parser = {optional=true, python=">=3.8", version=">=1.0"} nbsphinx = {optional=true, python=">=3.8", version="^0.9"} @@ -60,7 +60,7 @@ sphinx = {optional=true, python=">=3.8", version="^6.2"} sphinx-automodapi = {optional=true, python=">=3.8", version="^0.15"} sphinx-autodoc-typehints = {optional=true, python=">=3.8", version="1.20"} sphinx-copybutton = {optional=true, python=">=3.8", version=">=0.5"} -sphinx-design = {optional=true, python=">=3.8", version=">=0.4"} +sphinx-design = {optional=true, python=">=3.8", version=">=0.5"} sphinxcontrib-apidoc = {optional=true, python=">=3.8", version="^0.3"} [tool.poetry.dev-dependencies]