Skip to content

Commit b079823

Browse files
authored
Merge pull request #795 from azavea/lf/remove-rc1
[BACKPORT] Remove references to rc1
2 parents aac4f09 + b75c152 commit b079823

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/setup.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -78,24 +78,24 @@ Rather than running Raster Vision from inside a Docker container, you can direct
7878

7979
.. code-block:: console
8080
81-
> pip install rastervision==0.9.0rc1
81+
> pip install rastervision==0.9.0
8282
83-
.. note:: Raster Vision requires Python 3 or later. Use ``pip3 install rastervision==0.9.0rc1`` if you have more than one version of Python installed.
83+
.. note:: Raster Vision requires Python 3 or later. Use ``pip3 install rastervision==0.9.0`` if you have more than one version of Python installed.
8484

8585
.. note:: Because 0.9 is a release candidate at the moment, it is necessary to explicitly state the version when installing via pip.
8686

8787
Troubleshooting macOS Installation
8888
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8989

90-
If you encounter problems running ``pip install rastervision==0.9.0rc1`` on macOS, you may have to manually install Cython and pyproj.
90+
If you encounter problems running ``pip install rastervision==0.9.0`` on macOS, you may have to manually install Cython and pyproj.
9191

9292
To circumvent a problem installing pyproj with Python 3.7, you may also have to install that library using ``git+https``:
9393

9494
.. code-block:: console
9595
9696
> pip install cython
9797
> pip install git+https://github.com/jswhit/pyproj.git@e56e879438f0a1688b89b33228ebda0f0d885c19
98-
> pip install rastervision==0.9.0rc1
98+
> pip install rastervision==0.9.0
9999
100100
Using AWS, Tensorflow, and/or Keras
101101
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -104,7 +104,7 @@ If you'd like to use AWS, Tensorflow and/or Keras with Raster Vision, you can in
104104

105105
.. code-block:: console
106106
107-
> pip install rastervision[aws,tensorflow,tensorflow-gpu]==0.9.0rc1
107+
> pip install rastervision[aws,tensorflow,tensorflow-gpu]==0.9.0
108108
109109
If you'd like to use Raster Vision with `Tensorflow Object Detection <https://github.com/tensorflow/models/tree/master/research/object_detection>`_ or `TensorFlow DeepLab <https://github.com/tensorflow/models/tree/master/research/deeplab>`_, you'll need to install these from `Azavea's fork <https://github.com/azavea/models/tree/AZ-v1.11-RV-v0.8.0>`_ of the models repository, since it contains some necessary changes that have not yet been merged back upstream. You will also need to install `Tippecanoe <https://github.com/mapbox/tippecanoe>`_ if you would like to do vector tile processing. For an example of setting these up, see the `Dockerfile <https://github.com/azavea/raster-vision/blob/lf/0.9/Dockerfile>`_.
110110

rastervision/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Library verison"""
2-
__version__ = '0.9.0rc1'
2+
__version__ = '0.9.0'

0 commit comments

Comments
 (0)