mirror of
https://github.com/certbot/certbot.git
synced 2026-02-10 14:25:38 -05:00
* Deprecate acme.magic_typing, stop to use it in certbot * Isort * Add a changelog entry Co-authored-by: Brad Warren <bmw@users.noreply.github.com>
16 lines
394 B
Python
Executable file
16 lines
394 B
Python
Executable file
#!/usr/bin/env python
|
|
"""Uses pip to upgrade Python packaging tools to pinned versions."""
|
|
import os
|
|
|
|
import pip_install
|
|
|
|
_REQUIREMENTS_PATH = os.path.join(os.path.dirname(__file__), "pipstrap_constraints.txt")
|
|
|
|
|
|
def main():
|
|
pip_install_args = '--requirement "{0}"'.format(_REQUIREMENTS_PATH)
|
|
pip_install.pip_install_with_print(pip_install_args)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|