Skip to content

Commit

Permalink
Merge pull request #111 from nayrsirhc/main
Browse files Browse the repository at this point in the history
fix: small bug in python handler
  • Loading branch information
lucperkins authored May 2, 2024
2 parents af0262c + b2c0679 commit d334364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cmd/init/handlers/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::cli::cmd::init::{project::Project, prompt::Prompt};

use super::{version_as_attr_default, Flake, Handler};

const PYTHON_VERSIONS: &[&str] = &["3.11", "3.10", "3.09"];
const PYTHON_VERSIONS: &[&str] = &["3.11", "3.10", "3.9"];
const PYTHON_TOOLS: &[&str] = &["pip", "virtualenv", "pipenv"];

pub(crate) struct Python;
Expand Down

0 comments on commit d334364

Please sign in to comment.