Skip to content

Commit

Permalink
🐛 [-bug] Ensure that PyPi downloads link is lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrownell committed Sep 6, 2024
1 parent 2042edd commit e8db5dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/__documentation/__postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def UpdateReadmeFile():
badges += [
"[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/{{ python_package_pypi_name }}?color=dark-green)](https://pypi.org/project/{{ python_package_pypi_name }}/)",
"[![PyPI - Version](https://img.shields.io/pypi/v/{{ python_package_pypi_name }}?color=dark-green)](https://pypi.org/project/{{ python_package_pypi_name }}/)",
"[![PyPI - Downloads](https://img.shields.io/pypi/dm/{{ python_package_pypi_name }})](https://pypistats.org/packages/{{ python_package_pypi_name }})",
"[![PyPI - Downloads](https://img.shields.io/pypi/dm/{{ python_package_pypi_name.lower() }})](https://pypistats.org/packages/{{ python_package_pypi_name.lower() }})",
]

if "{{ python_package_generate_ci_openssf }}".lower() == "true":
Expand Down

0 comments on commit e8db5dc

Please sign in to comment.