Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ubuntu and python versions in .readthedocs.yml and the setup doc #1875

Merged
merged 2 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ version: 2

# Set the version of Python and other tools you might need
build:
# ubuntu-20.04 is the minimum available option
os: ubuntu-20.04
os: ubuntu-22.04
tools:
python: "3.9"
python: "3.10"

# Build documentation in the docs/ directory with Sphinx
sphinx:
Expand Down
6 changes: 3 additions & 3 deletions docs/setup/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ You can directly install the library using ``pip`` (or ``pip3`` if you also have

This has been shown to work in the following environment. Variations on this environment may or may not work.

* Ubuntu Linux 20.04
* Python 3.9
* CUDA 11.6 and NVIDIA Driver 510.47.03 (for GPU support)
* Ubuntu Linux 22.04
* Python 3.10
* CUDA 12 and NVIDIA Driver 535 (for GPU support)

Raster Vision also runs on macOS version 12.1, except that the ``num_workers`` for the :class:`.DataLoader` will need to be set to 0 due to an issue with mulitprocessing on Macs with Python >= 3.8. It will also be necessary to install GDAL (check `here <{{ repo }}/rastervision_gdal_vsi/requirements.txt>`__ for the exact version) prior to installing Raster Vision, which isn't necessary on Linux.

Expand Down