remove references to certbot-constraints.txt (#8858)

This commit is contained in:
Brad Warren
2021-05-24 14:17:11 -07:00
committed by GitHub
parent 315ddb247f
commit 099c6c8b24
3 changed files with 8 additions and 11 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
# Specifies Python package versions for development and building Docker images. # Specifies extra Python package versions during our tests with the oldest
# It includes in particular packages not specified in tools/certbot_constraints.txt. # supported versions of our dependencies. Some dev package versions specified
# Some dev package versions specified here may be overridden by higher level constraints # here may be overridden by higher level constraints files during tests (eg.
# files during tests (eg. tools/oldest_constraints.txt). # tools/oldest_constraints.txt).
alabaster==0.7.10 alabaster==0.7.10
apacheconfig==0.3.2 apacheconfig==0.3.2
apipkg==1.4 apipkg==1.4
+3 -5
View File
@@ -2,11 +2,9 @@
# pip installs packages using pinned package versions. If CERTBOT_OLDEST is set # pip installs packages using pinned package versions. If CERTBOT_OLDEST is set
# to 1, a combination of tools/oldest_constraints.txt, # to 1, a combination of tools/oldest_constraints.txt,
# tools/dev_constraints.txt, and local-oldest-requirements.txt contained in the # tools/dev_constraints.txt, and local-oldest-requirements.txt contained in the
# top level of the package's directory is used, otherwise, a combination of # top level of the package's directory is used, otherwise,
# tools/certbot_constraints.txt and tools/dev_constraints.txt is used. The # tools/requirements.txt is used. If CERTBOT_OLDEST is set, this script must
# other file always takes precedence over tools/dev_constraints.txt. If # be run with `-e <package-name>` and no other arguments.
# CERTBOT_OLDEST is set, this script must be run with `-e <package-name>` and
# no other arguments.
from __future__ import absolute_import from __future__ import absolute_import
from __future__ import print_function from __future__ import print_function
+1 -2
View File
@@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# pip installs packages in editable mode using tools/certbot_constraints.txt # pip installs packages in editable mode using pip_install.py
# as constraints
# #
# cryptography is currently using this script in their CI at # cryptography is currently using this script in their CI at
# https://github.com/pyca/cryptography/blob/a02fdd60d98273ca34427235c4ca96687a12b239/.travis/downstream.d/certbot.sh#L8-L9. # https://github.com/pyca/cryptography/blob/a02fdd60d98273ca34427235c4ca96687a12b239/.travis/downstream.d/certbot.sh#L8-L9.