diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-01-15 12:56:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 11:56:15 +0000 |
commit | 0d240b8713fb5cd933d348e668ab02a53859282b (patch) | |
tree | 54225e747cf9fd870503294183874d92377f6f09 /README.md | |
parent | 3c1ab6545829442d30cc8244074f59c9e857755f (diff) | |
download | servo-0d240b8713fb5cd933d348e668ab02a53859282b.tar.gz servo-0d240b8713fb5cd933d348e668ab02a53859282b.zip |
deps: Raise the Python requirement to 3.10 (#31088)
This will allow us to use the pip's new dependency resolver.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md index 0bd546570e0..f935df82b4a 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ manually, try the [manual build setup][manual-build]. ### macOS +- Ensure that the version showed by `python --version` is >= 3.10: - Install [Xcode](https://developer.apple.com/xcode/) - Install [Homebrew](https://brew.sh/) - Run `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh` @@ -31,7 +32,7 @@ manually, try the [manual build setup][manual-build]. ### Linux - Run `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh` -- Install Python +- Install Python (version >= 3.10): - **Debian-like:** Run `sudo apt install python3-pip python3-venv` - **Fedora:** Run `sudo dnf install python3 python3-pip python3-devel` - **Arch:** Run `sudo pacman -S --needed python python-pip` |