Skip to content

Commit 958c7b1

Browse files
committed
fix
1 parent bf2e1b3 commit 958c7b1

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9]
11+
python-version: ["3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v2

doc/conf.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,11 @@
5555

5656

5757
html_theme_options = {
58-
"announcement": ("To launch a tutorial, click on the 🚀 button "
59-
"below! Join us on "
60-
"<a href='https://ploomber.io/community/'>Slack!</a>")
58+
"announcement": (
59+
"To launch a tutorial, click on the 🚀 button "
60+
"below! Join us on "
61+
"<a href='https://ploomber.io/community/'>Slack!</a>"
62+
)
6163
}
6264

6365

src/jupyblog/util.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def add_output_tags(md, outputs):
5454

5555
def copy_all_images(src, target, dir_name):
5656
"""
57-
Copy all .png, .gif, and .webm files in src to target inside a folder with the passed name
57+
Copy all .png, .gif, and .webm files in src to target inside a folder with the
58+
passed name
5859
"""
5960
pngs = glob(str(Path(src, "**", "*.png")), recursive=True)
6061
gifs = glob(str(Path(src, "**", "*.gif")), recursive=True)

0 commit comments

Comments
 (0)