summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-05-22 22:11:33 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-05-22 22:11:33 -0400
commita5131f0b82e098da6c07a03a47f36f3a52f73fb6 (patch)
tree641622ff90baa965ee0e1d147e36273a92c73018 /setup.py
parent1fda90e842fa88457e11875703992b26087c8f06 (diff)
downloadpython-setuptools-git-a5131f0b82e098da6c07a03a47f36f3a52f73fb6.tar.gz
Unpin dependencies for certs and ssl extras and remove dependency links. Instead, rely on pip for security.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index fe02b97c..c6affe97 100755
--- a/setup.py
+++ b/setup.py
@@ -79,14 +79,6 @@ class install_with_pth(install):
setup_params = dict(
cmdclass={'install': install_with_pth},
package_data=package_data,
- dependency_links=[
- pypi_link(
- 'certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d',
- ),
- pypi_link(
- 'wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2',
- ),
- ],
)
if __name__ == '__main__':