Skip to content

Commit a156eba

Browse files
authored
Update mentions of Python 3.8 -> 3.10 (triton-inference-server#253)
1 parent bca5a5a commit a156eba

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -582,13 +582,13 @@ documentation.
582582
## Managing Python Runtime and Libraries
583583

584584
Python backend shipped in the [NVIDIA GPU Cloud](https://ngc.nvidia.com/)
585-
containers uses Python 3.8. Python backend is able to use the libaries
585+
containers uses Python 3.10. Python backend is able to use the libaries
586586
that exist in the current Python environment. These libraries can
587587
be installed in a virtualenv, conda environment, or the global system
588588
Python. These libraries will only be used if the Python version matches
589589
the Python version of the Python backend's stub executable. For example,
590590
if you install a set of libraries in a Python 3.9 environment and your
591-
Python backend stub is compiled with Python 3.8 these libraries will NOT
591+
Python backend stub is compiled with Python 3.10 these libraries will NOT
592592
be available in your Python model served using Triton. You would need to
593593
compile the stub executble with Python 3.9 using the instructions in
594594
[Building Custom Python Backend Stub](#building-custom-python-backend-stub)
@@ -597,7 +597,7 @@ section.
597597
### Building Custom Python Backend Stub
598598

599599
**Important Note: You only need to compile a custom Python backend stub if the
600-
Python version is different from Python 3.8 which is shipped by
600+
Python version is different from Python 3.10 which is shipped by
601601
default in the Triton containers.**
602602

603603
Python backend uses a *stub* process to connect your `model.py` file to the
@@ -759,7 +759,7 @@ In this case you only need to pack your environment using `conda-pack` and
759759
provide the path to tar file in the model config. However, the previous note
760760
still applies here and the version of the Python interpreter inside the conda
761761
environment must match the Python version of stub used by Python backend. The
762-
default version of the stub is Python 3.8.
762+
default version of the stub is Python 3.10.
763763

764764
3. You can share a single execution environment across multiple models. You
765765
need to provide the path to the tar file in the `EXECUTION_ENV_PATH` in the

0 commit comments

Comments
 (0)