Skip to content

Commit 995fb15

Browse files
authored
✨ feat: default create to Python 3.14 (#66)
1 parent dd297e8 commit 995fb15

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

β€Ž.github/workflows/build-and-release.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.13"]
19+
python-version: ["3.14"]
2020
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
2121
name: Ubuntu, ${{ matrix.target }}, Python ${{ matrix.python-version }}
2222
steps:
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: windows-latest
4242
strategy:
4343
matrix:
44-
python-version: ["3.13"]
44+
python-version: ["3.14"]
4545
target: [x64, x86]
4646
name: Windows, ${{ matrix.target }}, Python ${{ matrix.python-version }}
4747
steps:
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: macos-latest
6767
strategy:
6868
matrix:
69-
python-version: ["3.13"]
69+
python-version: ["3.14"]
7070
target: [x86_64, aarch64]
7171
name: macOS, ${{ matrix.target }}, Python ${{ matrix.python-version }}
7272
steps:

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Add to your `settings.json`:
152152

153153
**Environment Management**
154154

155-
- `meowda create <name> -p <version>` - Create environment
155+
- `meowda create <name> [-p <version>]` - Create environment (defaults to Python 3.14)
156156
- `meowda fork <name>` - Fork from the current active environment
157157
- `meowda fork <name> --from <env|path>` - Fork from another managed environment or any Python environment path/executable
158158
- `meowda activate <name>` - Activate environment

β€Žsrc/cli/args.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub enum Commands {
5757
pub struct CreateArgs {
5858
#[arg(help = "Name of the virtual environment")]
5959
pub name: String,
60-
#[arg(short, long, help = "Python version/path to use (default: 3.13)")]
60+
#[arg(short, long, help = "Python version/path to use (default: 3.14)")]
6161
pub python: Option<String>,
6262
#[arg(short, long, help = "Clear existing virtual environment")]
6363
pub clear: bool,

β€Žsrc/venv/mod.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ impl VenvService {
183183
create_uv_venv(
184184
&self.uv_path,
185185
&venv_path,
186-
options.python.unwrap_or("3.13"),
186+
options.python.unwrap_or("3.14"),
187187
true,
188188
false,
189189
)?;

0 commit comments

Comments
Β (0)