Skip to content

Commit 8d364c3

Browse files
committed
fix min deps
1 parent 01781d8 commit 8d364c3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ tasks:
102102
AWS_ROLE_SESSION_NAME: test
103103
TOOLCHAIN_VERSION: "3.14"
104104
tags: [auth-aws, auth-aws-web-identity]
105-
- name: test-auth-aws-latest-ecs-python3.10-min-deps
105+
- name: test-auth-aws-latest-ecs-python3.10
106106
commands:
107107
- func: run server
108108
vars:
@@ -114,7 +114,6 @@ tasks:
114114
TEST_NAME: auth_aws
115115
SUB_TEST_NAME: ecs
116116
TOOLCHAIN_VERSION: "3.10"
117-
TEST_MIN_DEPS: "1"
118117
tags: [auth-aws, auth-aws-ecs]
119118

120119
# Backport pr tests

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ def create_aws_tasks():
794794
if "t" in python:
795795
tags.append("free-threaded")
796796
test_vars = dict(TEST_NAME="auth_aws", SUB_TEST_NAME=test_type, TOOLCHAIN_VERSION=python)
797-
if python == ALL_PYTHONS[0]:
797+
if python == ALL_PYTHONS[0] and test_type != "ecs":
798798
test_vars["TEST_MIN_DEPS"] = "1"
799799
name = get_task_name(f"{base_name}-{test_type}", **test_vars)
800800
test_func = FunctionCall(func="run tests", vars=test_vars)

requirements/ocsp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# store and just use certifi on macOS.
77
# https://www.pyopenssl.org/en/stable/api/ssl.html#OpenSSL.SSL.Context.set_default_verify_paths
88
certifi>=2023.7.22;os.name=='nt' or sys_platform=='darwin'
9-
pyopenssl>=20.0.0
9+
pyopenssl>=20.0.1
1010
requests>=2.23.0,<3.0
1111
cryptography>=3.2
1212
service_identity>=18.1.0

0 commit comments

Comments
 (0)