==> /Users/ec2-user/croot/anaconda-auth_1781731257770/_build_env/bin/git log -n1 <==
commit ff3567a51f836aa5b6935521b546cc90da5fdc47
Author: Michael C. Grant <mcg@cvxr.com>
Date:   Wed Jun 17 17:26:13 2026 +0100

    fix: Login failure using truststore: forward resolved `ssl_verify` instead of raw config string (#270)
    
    * fix: forward resolved ssl_verify instead of raw config string
    
    When ssl_verify is set to "truststore", configure_ssl() builds a
    truststore SSLContext, mounts it on the session adapters, and sets
    self.verify = True. Several call sites bypassed that resolved value and
    passed the raw self.config.ssl_verify (the literal string "truststore")
    as requests' verify= argument, which requests treats as a CA bundle file
    path, raising:
    
      OSError: Could not find a suitable TLS CA certificate bundle,
      invalid path: truststore
    
    This both caused the error and bypassed the truststore verification that
    had already been configured. Use the resolved self.verify (client.py
    request() default and avatar fetch) and self.client.verify (device flow
    authorization + token polling) instead.
    
    Add regression tests asserting the verify value forwarded to requests is
    the resolved value (truststore -> True), not the raw config string.
    
    Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
    
    * fix: Skip tests of truststore for versions of Python where unsupported
    
    * fix: skip truststore tests when module not available
    
    The previous skip condition checked Python version, but truststore
    may not be installed even on Python 3.10+. Check for actual module
    availability instead.
    
    ---------
    
    Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
    Co-authored-by: mattkram <mkramer@anaconda.com>
==> /Users/ec2-user/croot/anaconda-auth_1781731257770/_build_env/bin/git describe --tags --dirty <==
v0.15.1
==> /Users/ec2-user/croot/anaconda-auth_1781731257770/_build_env/bin/git status <==
HEAD detached at v0.15.1
Untracked files:
  (use "git add <file>..." to include in what will be committed)
	build_env_setup.sh
	conda_build.sh
	metadata_conda_debug.yaml

nothing added to commit but untracked files present (use "git add" to track)
