Skip to content

Commit dffdc9a

Browse files
authored
Remove packaging requirement (#746)
Per #745 (comment)
1 parent 7dc99ad commit dffdc9a

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

mypy.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ strict_equality = True
2222
; https://github.com/tartley/colorama/issues/206
2323
ignore_missing_imports = True
2424

25-
[mypy-packaging]
26-
ignore_missing_imports = True
27-
2825
[mypy-pkginfo]
2926
; https://bugs.launchpad.net/pkginfo/+bug/1876591
3027
ignore_missing_imports = True

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ install_requires=
3838
readme_renderer >= 21.0
3939
requests >= 2.20
4040
requests-toolbelt >= 0.8.0, != 0.9.0
41-
packaging >= 16.2
4241
tqdm >= 4.14
4342
importlib_metadata >= 3.6
4443
keyring >= 15.1

tests/test_repository.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ def test_make_user_agent_string(default_repo):
9595
"requests-toolbelt/",
9696
"pkginfo/",
9797
"importlib_metadata/",
98-
"packaging/",
9998
)
10099
assert all(p in user_agent for p in packages)
101100

twine/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
def list_dependencies_and_versions() -> List[Tuple[str, str]]:
2626
deps = (
2727
"importlib_metadata",
28-
"packaging",
2928
"pkginfo",
3029
"requests",
3130
"requests-toolbelt",

0 commit comments

Comments
 (0)