@@ -24,16 +24,16 @@ Concurrently detect the minimum Python versions needed to run code. Additionally
2424vanilla Python, and it doesn't have any external dependencies, it works with v2.7+ and v3+.
2525
2626It functions by parsing Python code into an abstract syntax tree (AST), which it traverses and
27- matches against internal dictionaries with **3357 ** rules, covering v2.0-2.7 and v3.0-3.10, divided
28- into **143 ** modules, **2329 ** classes/functions/constants members of modules, **761 ** kwargs of
27+ matches against internal dictionaries with **3427 ** rules, covering v2.0-2.7 and v3.0-3.10, divided
28+ into **144 ** modules, **2356 ** classes/functions/constants members of modules, **801 ** kwargs of
2929functions, **4 ** strftime directives, **3 ** bytes format directives, **2 ** array typecodes, **3 **
30- codecs error handler names, **20 ** codecs encodings, **75 ** builtin generic annotation types, **8 **
31- builtin dict union (``| ``) types, **7 ** builtin dict union merge (``|= ``) types, and **2 ** user
30+ codecs error handler names, **20 ** codecs encodings, **75 ** builtin generic annotation types, **9 **
31+ builtin dict union (``| ``) types, **8 ** builtin dict union merge (``|= ``) types, and **2 ** user
3232function decorators.
3333
3434Backports of the standard library, like ``typing ``, can be enabled for better results.
3535
36- The project is fairly well-tested with **3680 ** unit and integration tests that are executed on
36+ The project is fairly well-tested with **3748 ** unit and integration tests that are executed on
3737Linux, macOS, and Windows.
3838
3939It is recommended to use the most recent Python version to run Vermin on projects since Python's own
0 commit comments