Skip to content

Commit e15e195

Browse files
committed
[doc] set default python env to 3.10
we stop supporting building with python 3.9 now Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 9d5a241 commit e15e195

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/ray-contribute/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Create a virtual environment to prevent version conflicts and to develop with an
4040

4141
.. code-block:: shell
4242
43-
conda create -c conda-forge python=3.9 -n myenv
43+
conda create -c conda-forge python=3.10 -n myenv
4444
4545
4646
Activate your virtual environment to tell the shell/terminal to use this particular Python:

doc/source/ray-observability/ray-distributed-debugger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Create a new virtual environment and install dependencies.
3030
.. testcode::
3131
:skipif: True
3232

33-
conda create -n myenv python=3.9
33+
conda create -n myenv python=3.10
3434
conda activate myenv
3535
pip install "ray[default]" debugpy
3636

doc/source/ray-overview/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Ray can also be installed as a conda package on Linux and Windows.
273273
.. code-block:: bash
274274
275275
# also works with mamba
276-
conda create -c conda-forge python=3.9 -n ray
276+
conda create -c conda-forge python=3.10 -n ray
277277
conda activate ray
278278
279279
# Install Ray with support for the dashboard + cluster launcher

0 commit comments

Comments
 (0)