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

Remove packaging requirement #746

Merged
merged 1 commit into from Mar 17, 2021
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
3 changes: 0 additions & 3 deletions mypy.ini
Expand Up @@ -22,9 +22,6 @@ strict_equality = True
; https://github.com/tartley/colorama/issues/206
ignore_missing_imports = True

[mypy-packaging]
ignore_missing_imports = True

[mypy-pkginfo]
; https://bugs.launchpad.net/pkginfo/+bug/1876591
ignore_missing_imports = True
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Expand Up @@ -38,7 +38,6 @@ install_requires=
readme_renderer >= 21.0
requests >= 2.20
requests-toolbelt >= 0.8.0, != 0.9.0
packaging >= 16.2
tqdm >= 4.14
importlib_metadata >= 3.6
keyring >= 15.1
Expand Down
1 change: 0 additions & 1 deletion tests/test_repository.py
Expand Up @@ -95,7 +95,6 @@ def test_make_user_agent_string(default_repo):
"requests-toolbelt/",
"pkginfo/",
"importlib_metadata/",
"packaging/",
)
assert all(p in user_agent for p in packages)

Expand Down
1 change: 0 additions & 1 deletion twine/cli.py
Expand Up @@ -25,7 +25,6 @@
def list_dependencies_and_versions() -> List[Tuple[str, str]]:
deps = (
"importlib_metadata",
"packaging",
"pkginfo",
"requests",
"requests-toolbelt",
Expand Down