Skip to content

Commit ad2401c

Browse files
committed
fix ecs and kms
1 parent 84714e0 commit ad2401c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.evergreen/run-mongodb-aws-ecs-test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ set -o xtrace
2323
PYTHON_VER="python3.10"
2424
apt-get -qq update < /dev/null > /dev/null
2525
apt-get -q install -y software-properties-common
26+
# Use openpgp to avoid gpg key timeout.
27+
mkdir -p $HOME/.gnupg
28+
echo "keyserver keys.openpgp.org" >> $HOME/.gnupg/gpg.conf
2629
add-apt-repository -y 'ppa:deadsnakes/ppa'
2730
apt-get -qq install $PYTHON_VER $PYTHON_VER-venv build-essential $PYTHON_VER-dev -y < /dev/null > /dev/null
2831

.evergreen/scripts/configure-env.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ EOT
7676
rm -rf $DRIVERS_TOOLS
7777
BRANCH=master
7878
ORG=mongodb-labs
79+
BRANCH=use-python-310
80+
ORG=blink1073
7981
git clone --branch $BRANCH https://github.com/$ORG/drivers-evergreen-tools.git $DRIVERS_TOOLS
8082

8183
cat <<EOT > ${DRIVERS_TOOLS}/.env

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def create_green_framework_variants():
297297
variants = []
298298
host = DEFAULT_HOST
299299
for framework in ["gevent"]:
300-
# TODO: link ticket for gevent support, that depends on 3.14 support in pymongocrypt ticket
300+
# TODO: Add Python 3.14 support (PYTHON-5464)
301301
tasks = [".test-standard .sync !.python-3.14"]
302302
expansions = dict(GREEN_FRAMEWORK=framework)
303303
display_name = get_variant_name(f"Green {framework.capitalize()}", host)
@@ -764,7 +764,7 @@ def create_mod_wsgi_tasks():
764764
product(["standalone", "embedded-mode"], ["standalone", "replica_set"]), CPYTHONS
765765
):
766766
if python == "3.14":
767-
# TODO: PYTHON-5459
767+
# TODO: Add Python 3.14 support (PYTHON-5462)
768768
continue
769769
if test == "standalone":
770770
task_name = "mod-wsgi-"

0 commit comments

Comments
 (0)