Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ Features:
- Add ``supported_np_pix_fmts`` by :gh-user:`WyattBlue` in (:pr:`1766`).
- Add ``Codec.canonical_name`` by :gh-user:`WyattBlue`.

Misc.
Misc:

- Drop support for MacOS 11 by :gh-user:`WyattBlue` in (:pr:`1764`).
- Add warnings when compiling from source by :gh-user:`WyattBlue` in (:pr:`1773`).

Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ _build/rst/%.rst: %.py $(TAGFILE) $(shell find ../include ../av -name '*.pyx' -o
mv [email protected] $@

html: $(RENDERED)
$(PIP) install -U sphinx
$(PIP) install -U sphinx sphinx-copybutton
rm -rf $(BUILDDIR)
sphinx-build -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html

Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"sphinx.ext.viewcode",
"sphinx.ext.extlinks",
"sphinx.ext.doctest",
"sphinx_copybutton", # Add copy button to code blocks
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
Loading