Skip to content

Commit a53df88

Browse files
authored
docs: update dev instructions to require python 3.9 (microsoft#563)
1 parent 0a1c8b7 commit a53df88

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44

55
### Configuring python environment
66

7-
The project requires Python version 3.7+. To set it as default in the environment run the following commands:
7+
The project development requires Python version 3.9+. To set it as default in the environment run the following commands:
88

99
```sh
10-
python -m venv env
10+
# You may need to install python 3.9 venv if it's missing, on Ubuntu just run `sudo apt-get install python3.9-venv`
11+
python3.9 -m venv env
1112
source ./env/bin/activate
1213
```
1314

0 commit comments

Comments
 (0)