File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier.
2- _commit : 1.11.12
2+ _commit : 1.11.14
33_src_path : gh:pawamoy/copier-uv
4455author_fullname : Timothée Mazzucotelli
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ def publish(ctx: Context) -> None:
157157 """Publish source and wheel distributions to PyPI."""
158158 if not Path ("dist" ).exists ():
159159 ctx .run ("false" , title = "No distribution files found" )
160- dists = [str (dist ) for dist in Path ("dist" ).iterdir () if dist .suffix in (".tar. gz" , ".whl" )]
160+ dists = [str (dist ) for dist in Path ("dist" ).iterdir () if dist .suffix in (".gz" , ".whl" )]
161161 ctx .run (
162162 tools .twine .upload (* dists , skip_existing = True ),
163163 title = "Publishing distributions to PyPI" ,
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ note = "Let us know how we can improve this page."
120120[project .markdown_extensions .abbr ]
121121[project .markdown_extensions .admonition ]
122122[project .markdown_extensions .attr_list ]
123+ [project .markdown_extensions .callouts ]
123124[project .markdown_extensions .def_list ]
124125[project .markdown_extensions .footnotes ]
125126[project .markdown_extensions .md_in_html ]
@@ -137,6 +138,7 @@ emoji_index = "zensical.extensions.emoji.twemoji"
137138[project .markdown_extensions .pymdownx .highlight ]
138139[project .markdown_extensions .pymdownx .inlinehilite ]
139140[project .markdown_extensions .pymdownx .keys ]
141+ [project .markdown_extensions .pymdownx .magiclink ]
140142[project .markdown_extensions .pymdownx .mark ]
141143[project .markdown_extensions .pymdownx .smartsymbols ]
142144[project .markdown_extensions .pymdownx .snippets ]
You can’t perform that action at this time.
0 commit comments