Skip to content

Commit 6b9417f

Browse files
committed
capitalization
1 parent c2c6450 commit 6b9417f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/populate_tox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ There is a template in this directory called `tox.jinja` which contains a
1313
combination of hardcoded and generated entries.
1414

1515
The `populate_tox.py` script fills out the auto-generated part of that template.
16-
It does this by querying PYPI for each framework's package and its metadata and
16+
It does this by querying PyPI for each framework's package and its metadata and
1717
then determining which versions make sense to test to get good coverage.
1818

1919
The lowest supported and latest version of a framework are always tested, with

scripts/populate_tox/populate_tox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112

113113
@functools.cache
114114
def fetch_package(package: str) -> dict:
115-
"""Fetch package metadata from PYPI."""
115+
"""Fetch package metadata from PyPI."""
116116
url = PYPI_PROJECT_URL.format(project=package)
117117
pypi_data = requests.get(url)
118118

0 commit comments

Comments
 (0)