File size: 385 Bytes
7475f0d | 1 2 3 4 5 6 7 8 9 | # The plugin entrypoints are loaded via this module as specified in pyproject.toml
# We do this to be very conservative and catch potential import errors without surfacing to users.
# Plugins were first introduced in conda=22.11.0
# The ChannelAuthBase class was introduced in conda=23.7.0
try:
from anaconda_auth._conda.plugins import * # noqa: F403
except ImportError:
pass
|