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
- generates an environment with the latest CPython version, in the `.lonesnake` directory at the root of the current working directory
75
-
-`lonesnake --py 3.11`
76
-
- same, but with the latest patch of CPython 3.11
77
-
-`lonesnake --py 3.11.0`
78
-
- same, but with exactly CPython 3.11.0
75
+
-`lonesnake --py 3.13`
76
+
- same, but with the latest patch of CPython 3.13
77
+
-`lonesnake --py 3.13.0`
78
+
- same, but with exactly CPython 3.13.0
79
79
80
80
If the `.lonesnake` directory already exists, `lonesnake` asks for confirmation before deleting it.
81
81
@@ -171,7 +171,7 @@ EOM
171
171
</details>
172
172
173
173
<details>
174
-
<summary>To show a prefix in your shell prompt indicating an active lonesnake venv (e.g. <code>🐍venv-3.11.0</code>), take inspiration from this example code for your <code>~/.bashrc</code> or <code>~/.zshrc</code>.</summary>
174
+
<summary>To show a prefix in your shell prompt indicating an active lonesnake venv (e.g. <code>🐍venv-3.13.0</code>), take inspiration from this example code for your <code>~/.bashrc</code> or <code>~/.zshrc</code>.</summary>
175
175
176
176
```bash
177
177
show_lonesnake_venv_prefix () {
@@ -365,7 +365,7 @@ Before using `lonesnake-kit`, make sure to read the instructions for vanilla `lo
@@ -379,7 +379,7 @@ This `.lonesnake` directory includes a Python interpreter built from [source](ht
379
379
-`interpreter` directory includes `usr/local/bin`, `usr/local/include`, etc...
380
380
-`venv` directory includes `bin`, `include`, `pyvenv.cfg` etc... It is created by the interpreter above.
381
381
382
-
Behind the scenes, `lonesnake` takes advantage of cache directories for the CPython source code and build files, located at `~/.cache/lonesnake/X.Y.Z/` where `X.Y.Z` is the Python version (e.g. `3.11.0`). Cache directories enable us to skip the compilation step when CPython was already compiled for the requested version.
382
+
Behind the scenes, `lonesnake` takes advantage of cache directories for the CPython source code and build files, located at `~/.cache/lonesnake/X.Y.Z/` where `X.Y.Z` is the Python version (e.g. `3.13.0`). Cache directories enable us to skip the compilation step when CPython was already compiled for the requested version.
0 commit comments