Skip to content

Commit

Permalink
Minor doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
JWCook committed Aug 17, 2023
1 parent ad029b5 commit e8f9058
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions pyinaturalist/models/media.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://api.inaturalist.org/v1/docs/#!/Observations/get_observations>`_
* `GET /taxa <https://api.inaturalist.org/v1/docs/#!/Taxa/get_taxa>`
"""

file_content_type: str = field(default=None)
file_url: str = field(default=None)
native_sound_id: str = field(default=None)
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ 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"}
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]
Expand Down

0 comments on commit e8f9058

Please sign in to comment.