Skip to content

Commit

Permalink
Merge branch 'main' into markpeek-description-escape
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz committed Jun 23, 2024
2 parents ed58790 + fe2c427 commit f4e8564
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12']
sphinx-version: ['>=4,<5', '>=5,<6', '>=6a0,<7', '>=7,<8']
sphinx-version: ['>=5,<6', '>=6a0,<7', '>=7,<7.3']
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions docs/script/generate_social_card_previews.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
A helper script to test out what social previews look like.
I should remove this when I'm happy with the result.
"""

# %load_ext autoreload
# %autoreload 2

Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
ref: https://nox.thea.codes/
"""

import nox
from shlex import split

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
long_description_content_type="text/markdown",
url="https://github.com/wpilibsuite/sphinxext-opengraph",
license="LICENSE.md",
install_requires=["sphinx>=4.0"],
install_requires=["sphinx>=5.0"],
packages=["sphinxext/opengraph"],
include_package_data=True,
package_data={"sphinxext.opengraph": ["sphinxext/opengraph/_static/*"]},
Expand Down
1 change: 1 addition & 0 deletions sphinxext/opengraph/socialcards.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Build a PNG card for each page meant for social media."""

import hashlib
from pathlib import Path
import matplotlib
Expand Down

0 comments on commit f4e8564

Please sign in to comment.