Skip to content

Commit

Permalink
Fix bad lock test data.
Browse files Browse the repository at this point in the history
The urllib3 Requires-Dist metadata was missed in pex-tool#1585.
  • Loading branch information
jsirois committed Dec 9, 2024
1 parent 17498d5 commit 40d51f4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/integration/cli/commands/test_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,15 @@ def test_create_universal_platform_check(tmpdir):
}
],
"project_name": "urllib3",
"requires_dists": [],
"requires_dists": [
"brotlipy>=0.6.0; extra == \\"brotli\\"",
"pyOpenSSL>=0.14; extra == \\"secure\\"",
"cryptography>=1.3.4; extra == \\"secure\\"",
"idna>=2.0.0; extra == \\"secure\\"",
"certifi; extra == \\"secure\\"",
"ipaddress; python_version == \\"2.7\\" and extra == \\"secure\\"",
"PySocks!=1.5.7,<2.0,>=1.5.6; extra == \\"socks\\""
],
"requires_python": null,
"version": "1.25.11"
}
Expand Down

0 comments on commit 40d51f4

Please sign in to comment.