File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -48,27 +48,27 @@ Install Python, e.g.:
48
48
49
49
``` bash
50
50
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
52
52
```
53
53
54
54
Install pipx, e.g.:
55
55
56
56
``` 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
59
59
```
60
60
61
61
Install [ poetry] ( https://python-poetry.org/docs/#installation ) , e.g.:
62
62
63
63
``` 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
65
65
```
66
66
67
67
Create development environment:
68
68
69
69
``` bash
70
70
cd malariagen-data-python
71
- poetry use 3.9
71
+ poetry use 3.10
72
72
poetry install
73
73
```
74
74
@@ -81,7 +81,7 @@ poetry shell
81
81
Install pre-commit and pre-commit hooks:
82
82
83
83
``` bash
84
- pipx install pre-commit --python=/usr/bin/python3.9
84
+ pipx install pre-commit --python=/usr/bin/python3.10
85
85
pre-commit install
86
86
```
87
87
You can’t perform that action at this time.
0 commit comments