From 09f5bd5a5c2e4d20808e1dc7ba2c3ba30f4c7e3f Mon Sep 17 00:00:00 2001 From: Ange Albertini <105304039+corkamig@users.noreply.github.com> Date: Tue, 2 Jun 2026 09:26:13 +0200 Subject: [PATCH] Version number for deprecation --- capa/features/address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/features/address.py b/capa/features/address.py index 98b5998e..83822b01 100644 --- a/capa/features/address.py +++ b/capa/features/address.py @@ -133,7 +133,7 @@ class RelativeVirtualAddress(int, Address): """a memory address relative to a base address""" def __new__(cls, *args, **kwargs): - # TODO(corkamig): Removal for v3.5.0 + # TODO(corkamig): Removal for v10 # https://github.com/mandiant/capa/issues/3072 warnings.warn("RelativeVirtualAddress is deprecated - cf issue #3072", DeprecationWarning, stacklevel=2) return super().__new__(cls, *args, **kwargs)