Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update policy_packages.md #194

Merged
merged 1 commit into from
Apr 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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