mirror of
https://github.com/certbot/certbot.git
synced 2026-06-13 02:30:25 -04:00
11 lines
191 B
Python
Executable file
11 lines
191 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.pipstrap()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|