diff --git a/src/pystencils/kernelcreation.py b/src/pystencils/kernelcreation.py
index 86bf5e1acd8466e4cf14f2454ad1050b62eaaf5c..59986e8d849261d37ea4581ff6f69cbc6dfaf0a4 100644
--- a/src/pystencils/kernelcreation.py
+++ b/src/pystencils/kernelcreation.py
@@ -53,14 +53,6 @@ def create_kernel(assignments: Union[Assignment, List[Assignment],
                [0., 0., 0., 0., 0.]])
     """
     # ----  Updating configuration from kwargs
-    if kwargs:
-        warnings.warn(
-            "Passing kernel creation options as keywork arguments to `create_kernel` is deprecated; "
-            "this possibility will be removed with pystencils 2.0. "
-            "Set up a `CreateKernelConfig` instead.",
-            FutureWarning
-        )
-
     if not config:
         config = CreateKernelConfig(**kwargs)
     else: