Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct capitalization of PyPI #1337

Merged
merged 1 commit into from
Sep 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ XXXX-XX-XX

**Compatibility notes**

- 1120_: .exe files for Windows are no longer uploaded on PYPI as per PEP-527;
- 1120_: .exe files for Windows are no longer uploaded on PyPI as per PEP-527;
only wheels are provided.

5.3.0
Expand Down Expand Up @@ -1227,7 +1227,7 @@ DeprecationWarning.

**Enhancements**

- 410_: host tar.gz and windows binary files are on PYPI.
- 410_: host tar.gz and windows binary files are on PyPI.
- 412_: [Linux] get/set process resource limits.
- 415_: [Windows] Process.get_children() is an order of magnitude faster.
- 426_: [Windows] Process.name is an order of magnitude faster.
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Windows

The easiest way to install psutil on Windows is to just use the pre-compiled
exe/wheel installers hosted on
`PYPI <https://pypi.org/project/psutil/#files>`__ via pip:
`PyPI <https://pypi.org/project/psutil/#files>`__ via pip:

.. code-block:: bat

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ upload-src: ## Upload source tarball on https://pypi.org/project/psutil/
${MAKE} sdist
$(PYTHON) setup.py sdist upload

upload-win-wheels: ## Upload wheels in dist/* directory on PYPI.
upload-win-wheels: ## Upload wheels in dist/* directory on PyPI.
$(PYTHON) -m twine upload dist/*.whl

# --- others
Expand All @@ -233,7 +233,7 @@ pre-release: ## Check if we're ready to produce a new release.

release: ## Create a release (down/uploads tar.gz, wheels, git tag release).
${MAKE} pre-release
$(PYTHON) -m twine upload dist/* # upload tar.gz and Windows wheels on PYPI
$(PYTHON) -m twine upload dist/* # upload tar.gz and Windows wheels on PyPI
${MAKE} git-tag-release

print-announce: ## Print announce of new release.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The easiest way to install psutil is via ``pip``::

On UNIX this requires a C compiler (e.g. gcc) installed. On Windows pip will
automatically retrieve a pre-compiled wheel version from
`PYPI repository <https://pypi.org/project/psutil>`__.
`PyPI repository <https://pypi.org/project/psutil>`__.
Alternatively, see more detailed
`install <https://github.com/giampaolo/psutil/blob/master/INSTALL.rst>`_
instructions.
Expand Down
2 changes: 1 addition & 1 deletion make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if "%TSCRIPT%" == "" (
set TSCRIPT=psutil\tests\__main__.py
)

rem Needed to locate the .pypirc file and upload exes on PYPI.
rem Needed to locate the .pypirc file and upload exes on PyPI.
set HOME=%USERPROFILE%

%PYTHON% scripts\internal\winmake.py %1 %2 %3 %4 %5 %6
2 changes: 1 addition & 1 deletion scripts/internal/winmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def wheel():

@cmd
def upload_wheels():
"""Upload wheel files on PYPI."""
"""Upload wheel files on PyPI."""
build()
sh("%s -m twine upload dist/*.whl" % PYTHON)

Expand Down