mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03: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>
17 lines
394 B
Python
Executable File
17 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()
|