From 47ac5515a3da65353aa6d13757e0551239de3f87 Mon Sep 17 00:00:00 2001 From: Thomas Beermann <981116+tbeerman@users.noreply.github.com> Date: Fri, 31 Mar 2023 14:17:34 +0200 Subject: [PATCH] Update policy_packages.md Fix the SUPPORTED_VERSION example --- docs/policy_packages.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/policy_packages.md b/docs/policy_packages.md index aa71f8697cc..dad6cdeef6f 100644 --- a/docs/policy_packages.md +++ b/docs/policy_packages.md @@ -59,13 +59,13 @@ if action not in perm: ``` `__init__.py` should include a -`SUPPORTED_VERSION` field indicating the version of Rucio -that your package was developed against. This may be checked by Rucio in +`SUPPORTED_VERSION` field indicating the major version of Rucio +that your package was developed against. This is checked by Rucio in the event that the policy package interface changes in the future. Example: ```python -SUPPORTED_VERSION = "1.20.7" +SUPPORTED_VERSION = "1.30" ``` It can also contain an optional function called `get_algorithms` that