Skip to content

Commit 52704f8

Browse files
authored
fix spelling of PyPI (#2181)
1 parent 78b7772 commit 52704f8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
fetch-depth: 0
122122
- name: Build package
123123
run: pyproject-build -s -w . -o dist
124-
- name: Publish to PyPi
124+
- name: Publish to PyPI
125125
uses: pypa/gh-action-pypi-publish@master
126126
with:
127127
skip_existing: true

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ wheel
3131
~~~~~
3232
Installing tox via a wheel (default with pip) requires an installer that can understand the ``python-requires`` tag (see
3333
`PEP-503 <https://www.python.org/dev/peps/pep-0503/>`_), with pip this is version ``9.0.0`` (released in November 2016).
34-
Furthermore, in case you're not installing it via PyPi you need to use a mirror that correctly forwards the
34+
Furthermore, in case you're not installing it via PyPI you need to use a mirror that correctly forwards the
3535
``python-requires`` tag (notably the OpenStack mirrors don't do this, or older `devpi <https://github.com/devpi/devpi>`_
3636
versions - added with version ``4.7.0``).
3737

docs/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ under the ``tox-dev`` org organization. We are happy to adopt tox plugins under
2222

2323
- we determine it's trying to solve a valid use case and it's not malicious (e.g. no plugin that deletes the users home
2424
directory),
25-
- it's released on PyPi with at least 100 downloads per month (to ensure it's a plugin used by people).
25+
- it's released on PyPI with at least 100 downloads per month (to ensure it's a plugin used by people).
2626

2727
What's in for you in this:
2828

src/tox/pytest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ def matches(pattern: str, text: str, flags: int = 0) -> None:
367367
except ImportError: # pragma: no cover # hard to test
368368
match = re.match(pattern, text, flags)
369369
if match is None:
370-
warnings.warn("install the re-assert PyPi package for bette error message", UserWarning)
370+
warnings.warn("install the re-assert PyPI package for bette error message", UserWarning)
371371
assert match
372372
else:
373373
assert Matches(pattern, flags=flags) == text

0 commit comments

Comments
 (0)