You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: semantic-conventions/CONTRIBUTING.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -48,10 +48,11 @@ _Note:_ `venv` integrations exist for IDEs such as [PyCharm](https://www.jetbrai
48
48
49
49
See the offical documents for creating and [using](https://docs.python.org/3/tutorial/venv.html) a [venv environment](https://docs.python.org/3/library/venv.html). All "python" commands listed in this document should be run in an activated `venv`.
50
50
51
+
**Note**, ensure the venv you create is using the earliest supported version of python as defined in `setup.cfg`
51
52
52
53
```bash
53
54
# note that it's convention to not store your venv in your working directory, lest build tooling "pick up" venv configuration.
54
-
python3 -m venv ../semconvgen
55
+
python3.10 -m venv ../semconvgen
55
56
source ../semconvgen/bin/activate
56
57
# Run your pip/wheel commands as described elsewhere in this documentation here.
57
58
# reset your environment by typing 'deactivate' or by exiting your TTY
0 commit comments