isPackageManagerConfigured checks if the environment is configured to use the specified package manager.
(pm string)
| 484 | } |
| 485 | return nil |
| 486 | } |
| 487 | |
| 488 | // Checks if the Python version is an unstable supported release candidate. |
| 489 | func isSupportedUnstablePythonVersion(constraint string) bool { |
| 490 | return strings.Count(constraint, ".") == 2 && strings.Count(constraint, "rc") == 1 |
| 491 | } |
| 492 |
no outgoing calls
no test coverage detected