mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
Fixes #8661. As mentioned in https://github.com/certbot/certbot/issues/8661#issuecomment-806168214, there are quite a few remaining references, but until we modify the release script, we still need those. The changes here and the list there were created by grepping for the following terms: ``` certbot-auto cb-auto cbauto certbotauto letsencrypt-auto le-auto leauto letsencryptauto LEAUTO LE_AUTO LETSENCRYPT_AUTO LETSENCRYPTAUTO CB_AUTO CERTBOT_AUTO CBAUTO CERTBOTAUTO ``` * Remove references to certbot-auto from certbot code * Remove references to LEAUTO * Remove references to CERTBOT_AUTO * Remove references to letsencrypt-auto * Remove references to certbot-auto from docs and tools * remove cli constants header files * Remove Python virtual environment section
23 lines
661 B
Python
Executable file
23 lines
661 B
Python
Executable file
#!/usr/bin/env python
|
|
# pip installs packages in editable mode using tools/certbot_constraints.txt
|
|
# as constraints
|
|
#
|
|
# cryptography is currently using this script in their CI at
|
|
# https://github.com/pyca/cryptography/blob/a02fdd60d98273ca34427235c4ca96687a12b239/.travis/downstream.d/certbot.sh#L8-L9.
|
|
# We should try to remember to keep their repo updated if we make any changes
|
|
# to this script which may break things for them.
|
|
import sys
|
|
|
|
import pip_install
|
|
|
|
|
|
def main(args):
|
|
new_args = []
|
|
for arg in args:
|
|
new_args.append('-e')
|
|
new_args.append(arg)
|
|
|
|
pip_install.main(new_args)
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv[1:])
|