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

Fix typos found by codespell #1034

Merged
merged 1 commit into from Jan 6, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog/991.misc.rst
@@ -1 +1 @@
Fix the ReadTheDocs build by removing minimum python version and specifiying build requirements.
Fix the ReadTheDocs build by removing minimum python version and specifying build requirements.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Expand Up @@ -28,7 +28,7 @@ Bugfixes
^^^^^^^^

- Improve logging when keyring fails. (`#890 <https://github.com/pypa/twine/issues/890>`_)
- Reconfgure root logger to show all log messages. (`#896 <https://github.com/pypa/twine/issues/896>`_)
- Reconfigure root logger to show all log messages. (`#896 <https://github.com/pypa/twine/issues/896>`_)


Twine 4.0.0 (2022-03-31)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_settings.py
Expand Up @@ -107,7 +107,7 @@ def test_print_config_path_if_verbose(config_file, caplog, make_settings, verbos


def test_identity_requires_sign():
"""Raise an exception when user provides identity but doesn't require sigining."""
"""Raise an exception when user provides identity but doesn't require signing."""
with pytest.raises(exceptions.InvalidSigningConfiguration):
settings.Settings(sign=False, identity="fakeid")

Expand Down
2 changes: 1 addition & 1 deletion tests/test_upload.py
Expand Up @@ -145,7 +145,7 @@ def test_print_packages_if_verbose(upload_settings, caplog):


def test_print_response_if_verbose(upload_settings, stub_response, caplog):
"""Print details about the response from the repostiry."""
"""Print details about the response from the repository."""
upload_settings.verbose = True

result = upload.upload(
Expand Down