Skip to content

Commit

Permalink
Bump latest rpki-client version to 9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fjahr committed Oct 18, 2024
1 parent 382adca commit 5b43ee7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ to enable flakes in your Nix config, then run `nix develop`.

#### rpki-client

Kartograf requires `rpki-client` version 8.4 or higher to be installed locally. Many package managers have `rpki-client`, however please note that typically only the latest version is available. Kartograf is currently tested to work with `rpki-client` 8.4 - 9.1. If a new release is available that breaks compatibility, you may need to build a compatible `rpki-client` version yourself if your preferred package manager does not have a compatible version available. In that case, see the [instructions in the rpki-client-portable project](https://github.com/rpki-client/rpki-client-portable/blob/master/INSTALL).
Kartograf requires `rpki-client` version 8.4 or higher to be installed locally. Many package managers have `rpki-client`, however please note that typically only the latest version is available. Kartograf is currently tested to work with `rpki-client` 8.4 - 9.3. If a new release is available that breaks compatibility, you may need to build a compatible `rpki-client` version yourself if your preferred package manager does not have a compatible version available. In that case, see the [instructions in the rpki-client-portable project](https://github.com/rpki-client/rpki-client-portable/blob/master/INSTALL).

```
# Linux/BSD
Expand Down
2 changes: 1 addition & 1 deletion kartograf/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def check_compatibility():
if version_match:
version = version_match.group(1)
version_number = float(version)
latest_version = 9.1
latest_version = 9.3

if version_number < 8.4:
raise Exception("Error: rpki-client version 8.4 or higher is "
Expand Down

0 comments on commit 5b43ee7

Please sign in to comment.