We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cbda51 commit 8f3ea98Copy full SHA for 8f3ea98
gvm/protocols/gmp/_gmp.py
@@ -91,9 +91,11 @@ def determine_supported_gmp(self) -> SUPPORTED_GMP_VERSIONS:
91
gmp_class = GMPv224
92
elif major_version == 22 and minor_version == 5:
93
gmp_class = GMPv225
94
- elif major_version == 22 and minor_version >= 6:
+ elif major_version == 22 and minor_version == 6:
95
gmp_class = GMPv226
96
- if minor_version > 6:
+ elif major_version == 22 and minor_version >= 7:
97
+ gmp_class = GMPv227
98
+ if minor_version > 7:
99
warnings.warn(
100
"Remote manager daemon uses a newer GMP version than "
101
f"supported by python-gvm {__version__}. Please update to "
0 commit comments