Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
python-version: ["3.14"]
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
name: Ubuntu, ${{ matrix.target }}, Python ${{ matrix.python-version }}
steps:
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.13"]
python-version: ["3.14"]
target: [x64, x86]
name: Windows, ${{ matrix.target }}, Python ${{ matrix.python-version }}
steps:
Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.13"]
python-version: ["3.14"]
target: [x86_64, aarch64]
name: macOS, ${{ matrix.target }}, Python ${{ matrix.python-version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Add to your `settings.json`:

**Environment Management**

- `meowda create <name> -p <version>` - Create environment
- `meowda create <name> [-p <version>]` - Create environment (defaults to Python 3.14)
- `meowda fork <name>` - Fork from the current active environment
- `meowda fork <name> --from <env|path>` - Fork from another managed environment or any Python environment path/executable
- `meowda activate <name>` - Activate environment
Expand Down
2 changes: 1 addition & 1 deletion src/cli/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub enum Commands {
pub struct CreateArgs {
#[arg(help = "Name of the virtual environment")]
pub name: String,
#[arg(short, long, help = "Python version/path to use (default: 3.13)")]
#[arg(short, long, help = "Python version/path to use (default: 3.14)")]
pub python: Option<String>,
#[arg(short, long, help = "Clear existing virtual environment")]
pub clear: bool,
Expand Down
2 changes: 1 addition & 1 deletion src/venv/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ impl VenvService {
create_uv_venv(
&self.uv_path,
&venv_path,
options.python.unwrap_or("3.13"),
options.python.unwrap_or("3.14"),
true,
false,
)?;
Expand Down