Skip to content

Commit 4036ee7

Browse files
committed
bump certifi dep
1 parent be936c0 commit 4036ee7

File tree

6 files changed

+8
-15
lines changed

6 files changed

+8
-15
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ tasks:
8787
SUB_TEST_NAME: web-identity
8888
PYTHON_VERSION: "3.14"
8989
tags: [auth-aws, auth-aws-web-identity]
90-
- name: test-auth-aws-rapid-web-identity-session-name-python3.9-min-deps
90+
- name: test-auth-aws-rapid-web-identity-session-name-python3.14
9191
commands:
9292
- func: run server
9393
vars:
@@ -99,8 +99,7 @@ tasks:
9999
TEST_NAME: auth_aws
100100
SUB_TEST_NAME: web-identity
101101
AWS_ROLE_SESSION_NAME: test
102-
PYTHON_VERSION: "3.9"
103-
TEST_MIN_DEPS: true
102+
PYTHON_VERSION: "3.14"
104103
tags: [auth-aws, auth-aws-web-identity]
105104
- name: test-auth-aws-latest-ecs-python3.9
106105
commands:

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def create_test_non_standard_tasks():
630630

631631

632632
def create_min_deps_tasks():
633-
# TODO: create two tasks for testing min deps here and use them in encryption variants.
633+
"""For variants that support testing with minimum dependencies."""
634634
tasks = []
635635
for topology in TOPOLOGIES:
636636
auth, ssl = get_standard_auth_ssl(topology)
@@ -743,16 +743,12 @@ def create_aws_tasks():
743743

744744
if test_type == "web-identity":
745745
tags = [*base_tags, "auth-aws-web-identity"]
746-
python = CPYTHONS[0] # noqa: PLW2901
747-
name = get_task_name(
748-
f"{base_name}-web-identity-session-name", python=python, test_min_deps=True
749-
)
746+
name = get_task_name(f"{base_name}-web-identity-session-name", python=python)
750747
test_vars = dict(
751748
TEST_NAME="auth_aws",
752749
SUB_TEST_NAME="web-identity",
753750
AWS_ROLE_SESSION_NAME="test",
754751
PYTHON_VERSION=python,
755-
TEST_MIN_DEPS=True,
756752
)
757753
test_func = FunctionCall(func="run tests", vars=test_vars)
758754
funcs = [server_func, assume_func, test_func]

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,6 @@ filterwarnings = [
123123
"module:please use dns.resolver.Resolver.resolve:DeprecationWarning",
124124
# https://github.com/dateutil/dateutil/issues/1314
125125
"module:datetime.datetime.utc:DeprecationWarning",
126-
# TODO: remove in XXXX
127-
"module:pkg_resources is deprecated as an API:UserWarning",
128126
]
129127
markers = [
130128
"auth_aws: tests that rely on pymongo-auth-aws",

requirements/encryption.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pymongo-auth-aws>=1.1.0,<2.0.0
22
pymongocrypt>=1.13.0,<2.0.0
3-
certifi>=2020.4.5;os.name=='nt' or sys_platform=='darwin'
3+
certifi>=2023.7.22;os.name=='nt' or sys_platform=='darwin'

requirements/ocsp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Fallback to certifi on Windows if we can't load CA certs from the system
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
8-
certifi;os.name=='nt' or sys_platform=='darwin'
8+
certifi>=2023.7.22;os.name=='nt' or sys_platform=='darwin'
99
pyopenssl>=17.2.0
1010
requests<3.0.0
1111
cryptography>=2.5

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)