Closes #19349: Merged fix from 3.3.
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py
index f184328..5a70613 100644
--- a/Lib/venv/__init__.py
+++ b/Lib/venv/__init__.py
@@ -345,7 +345,7 @@
     elif not hasattr(sys, 'base_prefix'):
         compatible = False
     if not compatible:
-        raise ValueError('This script is only for use with Python 3.3')
+        raise ValueError('This script is only for use with Python >= 3.3')
     else:
         import argparse