mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-04-27 08:56:47 +00:00
16 lines
481 B
Python
16 lines
481 B
Python
# Copyright (c) 2025 Ansible project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
"""
|
|
Module utils for cryptography requirements.
|
|
|
|
Must be kept in sync with plugins/doc_fragments/cryptography_dep.py.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
# Corresponds to the community.crypto.cryptography_dep.minimum doc fragment
|
|
COLLECTION_MINIMUM_CRYPTOGRAPHY_VERSION = "3.3"
|