certbot/tools/pipstrap.py
Brad Warren 0b08a80dce
Pin pip & co like our other dependencies (#8868)
* use poetry 1.2.0a1

* pin pip normally

* use normal constraints file with pipstrap

* remove unused STRIP_HASHES var

* Check for old poetry versions

* keep pip, setuptools, and wheel pinned in oldest

* remove strip hashes

* pin back pip

* fix new lint error
2021-06-09 17:01:54 -07:00

11 lines
217 B
Python
Executable file

#!/usr/bin/env python
"""Uses pip to upgrade Python packaging tools to pinned versions."""
import pip_install
def main():
pip_install.main('pip setuptools wheel'.split())
if __name__ == '__main__':
main()