diff options
author | 2022-08-12 14:34:48 +0100 | |
---|---|---|
committer | 2022-09-14 14:06:45 +0100 | |
commit | 8a52241f3321c434c1dfce4b185cc5d39a15bcf9 (patch) | |
tree | 6289f359ccd6b47dc4530d9485b9c151034345ae /config/snekbox.cfg | |
parent | Merge pull request #151 from python-discord/bump-deps (diff) |
Change base Python version to 3.113.11
This also pre-installs all the deps into the built image, so shouldn't be deployed using the deployment found in this repo.
Diffstat (limited to 'config/snekbox.cfg')
-rw-r--r-- | config/snekbox.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/snekbox.cfg b/config/snekbox.cfg index a1caf68..87c216e 100644 --- a/config/snekbox.cfg +++ b/config/snekbox.cfg @@ -14,7 +14,7 @@ envar: "OPENBLAS_NUM_THREADS=5" envar: "MKL_NUM_THREADS=5" envar: "VECLIB_MAXIMUM_THREADS=5" envar: "NUMEXPR_NUM_THREADS=5" -envar: "PYTHONPATH=/snekbox/user_base/lib/python3.10/site-packages" +envar: "PYTHONPATH=/snekbox/user_base/lib/python3.11/site-packages" envar: "PYTHONIOENCODING=utf-8:strict" keep_caps: false @@ -98,8 +98,8 @@ mount { } mount { - src: "/usr/local/bin/python3.10" - dst: "/usr/local/bin/python3.10" + src: "/usr/local/bin/python3.11" + dst: "/usr/local/bin/python3.11" is_bind: true rw: false } |