Skip to content

Commit

Permalink
Update policy_packages.md
Browse files Browse the repository at this point in the history
Fix the SUPPORTED_VERSION example
  • Loading branch information
tbeerman committed Mar 31, 2023
1 parent 2b0fe52 commit 47ac551
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/policy_packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 47ac551

Please sign in to comment.