Skip to content

Commit 7921afc

Browse files
authored
Update Python version support to 3.14 in README
1 parent 63844bc commit 7921afc

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,30 +39,30 @@ https://github.com/user-attachments/assets/0fe03961-0b62-4964-83ba-849f2357efba
3939

4040
### Prerequisites
4141

42-
- **Python**: Python 3.9 – 3.12 supported (Python 3.9 or newer, up to 3.12).
42+
- **Python**: Python 3.9 – 3.14 supported (Python 3.9 or newer, up to 3.14).
4343
- **Rust**: The Rust compiler (`rustc`) and Cargo package manager are required. You can easily install the **Rust toolchain** via [rustup](https://rustup.rs/) and verify your installation by running `cargo --version`.
4444

4545
### Installation
4646

47-
It is **highly recommended** to install PySpector in a dedicated Python 3.12 venv.
47+
It is **highly recommended** to install PySpector in a dedicated Python 3.14 venv.
4848

4949
#### Create a Virtual Environment:
5050

5151
- **Linux (Bash)**:
5252

5353
```bash
54-
# Download Python 3.12
55-
python3.12 -m venv venv
54+
# Download Python 3.14
55+
python3.14 -m venv venv
5656
source venv/bin/activate
5757
```
5858

5959
- **Windows (PowerShell)**:
6060

6161
```powershell
62-
# Download Python 3.12 from the Microsoft Store and run:
63-
python3.12 -m venv venv
62+
# Download Python 3.14 from the Microsoft Store and run:
63+
python3.14 -m venv venv
6464
.\venv\Scripts\Activate.ps1
65-
# or, depending on the Python 3.12 installation source:
65+
# or, depending on the Python 3.14 installation source:
6666
.\venv\bin\Activate.ps1
6767
```
6868

0 commit comments

Comments
 (0)