Skip to content

Commit

Permalink
Update README.rst (NVIDIA#7175)
Browse files Browse the repository at this point in the history
* Update README.rst

Signed-off-by: fayejf <[email protected]>

* Update setup.py

Signed-off-by: fayejf <[email protected]>

* Update pyproject.toml

Signed-off-by: fayejf <[email protected]>

* Update setup.py

Signed-off-by: fayejf <[email protected]>

---------

Signed-off-by: fayejf <[email protected]>
  • Loading branch information
fayejf authored Aug 8, 2023
1 parent 1346272 commit 659d2cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Built for speed, NeMo can utilize NVIDIA's Tensor Cores and scale out training t
Requirements
------------

1) Python 3.9 or above
1) Python 3.10 or above
2) Pytorch 1.13.1 or above
3) NVIDIA GPU for training

Expand Down Expand Up @@ -177,7 +177,7 @@ We recommend installing NeMo in a fresh Conda environment.

.. code-block:: bash
conda create --name nemo python==3.8.10
conda create --name nemo python==3.10.12
conda activate nemo
Install PyTorch using their `configurator <https://pytorch.org/get-started/locally/>`_.
Expand Down Expand Up @@ -305,13 +305,13 @@ NeMo Text Processing, specifically (Inverse) Text Normalization, is now a separa

Docker containers:
~~~~~~~~~~~~~~~~~~
We release NeMo containers alongside NeMo releases. For example, NeMo ``r1.19.0`` comes with container ``nemo:23.04``, you may find more details about released containers in `releases page <https://github.com/NVIDIA/NeMo/releases>`_.
We release NeMo containers alongside NeMo releases. For example, NeMo ``r1.20.0`` comes with container ``nemo:23.06``, you may find more details about released containers in `releases page <https://github.com/NVIDIA/NeMo/releases>`_.

To use built container, please run

.. code-block:: bash
docker pull nvcr.io/nvidia/nemo:23.04
docker pull nvcr.io/nvidia/nemo:23.06
To build a nemo container with Dockerfile from a branch, please run

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
profile = "black" # black-compatible
line_length = 119 # should match black parameters
ignore_whitespace = true # ignore whitespace for compatibility with the initial style
py_version = 38 # python 3.8 as a target version
py_version = 310 # python 3.10 as a target version
known_first_party = ["nemo"] # FIRSTPARTY section
known_third_party = ["nemo_text_processing", "examples", "scripts"] # THIRDPARTY section
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ def finalize_options(self):
'License :: OSI Approved :: Apache Software License',
# Supported python versions
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
# Additional Setting
'Environment :: Console',
'Natural Language :: English',
Expand Down

0 comments on commit 659d2cc

Please sign in to comment.