We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 568c883 commit 030e493Copy full SHA for 030e493
1 file changed
pkg/workflow/pip_validation.go
@@ -60,7 +60,8 @@ func (c *Compiler) validatePythonPackagesWithPip(packages []string, packageType
60
pipValidationLog.Printf("Validating %s package: %s", packageType, pkgName)
61
62
// Use pip index to check if package exists on PyPI
63
- cmd := exec.Command(pipCmd, "index", "versions", pkgName)
+ // Include --pre flag to check for pre-release versions (alpha, beta, rc)
64
+ cmd := exec.Command(pipCmd, "index", "versions", pkgName, "--pre")
65
output, err := cmd.CombinedOutput()
66
67
if err != nil {
0 commit comments