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
**Note**: The CLI supports pythons versions 3.6 through 3.9 for end users. However due to some of the build dependencies, you'll need a version >=3.7 for your virtual environment. Use `pyenv --versions` to see all versions available for install. There are some known issues installing python 3.6 with pyenv on certain OS.
53
+
**Note**: The CLI supports pythons versions 3.9 through 3.12 for end users. Use `pyenv --versions` to see all versions available for install.
54
54
55
55
Use `source deactivate` to exit the virtual environment and `pyenv activate code42cli` to reactivate it.
56
56
57
57
### Windows/Linux
58
58
59
-
Install a version of python 3.6 or higher from [python.org](https://python.org).
59
+
Install a version of python 3.9 or higher from [python.org](https://python.org).
60
60
Next, in a directory somewhere outside the project, create and activate your virtual environment:
61
61
62
62
```bash
@@ -86,7 +86,7 @@ point to your virtual environment, and you should be ready to go!
86
86
87
87
## Run a full build
88
88
89
-
We use [tox](https://tox.readthedocs.io/en/latest/#) to run our build against Python 3.6, 3.7, and 3.8. When run locally, `tox` will run only against the version of python that your virtual envrionment is running, but all versions will be validated against when you [open a PR](#opening-a-pr).
89
+
We use [tox](https://tox.readthedocs.io/en/latest/#) to run our build against Python 3.9, 3.10, 3.11 and 3.12. When run locally, `tox` will run only against the version of python that your virtual envrionment is running, but all versions will be validated against when you [open a PR](#opening-a-pr).
90
90
91
91
To run all the unit tests, do a test build of the documentation, and check that the code meets all style requirements, simply run:
92
92
@@ -97,7 +97,7 @@ If the full process runs without any errors, your environment is set up correctl
97
97
98
98
## Coding Style
99
99
100
-
Use syntax and built-in modules that are compatible with Python 3.6+.
100
+
Use syntax and built-in modules that are compatible with Python 3.9+.
0 commit comments