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