Skip to content

Commit 58b6b45

Browse files
authored
Update README.md to recommend Python 3.10 for development
1 parent 1cba09b commit 58b6b45

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,27 @@ Install Python, e.g.:
4848

4949
```bash
5050
sudo add-apt-repository ppa:deadsnakes/ppa
51-
sudo apt install python3.9 python3.9-venv
51+
sudo apt install python3.10 python3.10-venv
5252
```
5353

5454
Install pipx, e.g.:
5555

5656
```bash
57-
python3.9 -m pip install --user pipx
58-
python3.9 -m pipx ensurepath
57+
python3.10 -m pip install --user pipx
58+
python3.10 -m pipx ensurepath
5959
```
6060

6161
Install [poetry](https://python-poetry.org/docs/#installation), e.g.:
6262

6363
```bash
64-
pipx install poetry==1.8.2 --python=/usr/bin/python3.9
64+
pipx install poetry==1.8.2 --python=/usr/bin/python3.10
6565
```
6666

6767
Create development environment:
6868

6969
```bash
7070
cd malariagen-data-python
71-
poetry use 3.9
71+
poetry use 3.10
7272
poetry install
7373
```
7474

@@ -81,7 +81,7 @@ poetry shell
8181
Install pre-commit and pre-commit hooks:
8282

8383
```bash
84-
pipx install pre-commit --python=/usr/bin/python3.9
84+
pipx install pre-commit --python=/usr/bin/python3.10
8585
pre-commit install
8686
```
8787

0 commit comments

Comments
 (0)