Return True if ``requires`` is a sequence of strings.
(requires)
| 2153 | |
| 2154 | |
| 2155 | def is_simple_requires(requires): |
| 2156 | """ |
| 2157 | Return True if ``requires`` is a sequence of strings. |
| 2158 | """ |
| 2159 | return ( |
| 2160 | requires |
| 2161 | and isinstance(requires, list) |
| 2162 | and all(isinstance(i, str) for i in requires) |
| 2163 | ) |
| 2164 | |
| 2165 | |
| 2166 | def get_dist_dependencies(dist): |
no outgoing calls
no test coverage detected