Skip to content

Commit aae5882

Browse files
authored
Merge pull request #833 from sanders41/maturin-project
Fix invalid selection bug creating a maturin project that uses setuptools
2 parents 6c68f13 + 7366693 commit aae5882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project_info.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ fn pyo3_python_manager_prompt(default: Option<Pyo3PythonManager>) -> Result<Pyo3
395395

396396
if input == "1" {
397397
Ok(Pyo3PythonManager::Uv)
398-
} else if input == "4" {
398+
} else if input == "2" {
399399
Ok(Pyo3PythonManager::Setuptools)
400400
} else {
401401
bail!("Invalid selection");

0 commit comments

Comments
 (0)