diff --git a/docs/index.rst b/docs/index.rst index a4f20be14fd0930310f91bdad8ccfb7a82e72b37..c1b47abe00010acfd9b87665d2c0c6b784dccc92 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -21,14 +21,14 @@ Note that this *NOT* an official Apache project component, it is a Releases ======== -The latest release of :py:mod:`aiogremlin` is **3.2.4**. +The latest release of :py:mod:`aiogremlin` is **3.2.5**. Requirements ============ - Python 3.5+ -- TinkerPop 3.2.4 +- TinkerPop 3.2.5 Dependencies @@ -44,6 +44,10 @@ Install using pip:: $ pip install aiogremlin +For this version, a separate install of gremlinpython is required:: + + $ pip install gremlinpython --no-deps + Getting Started =============== diff --git a/setup.py b/setup.py index c53a68068296575705e4c928d7be7c01ae7e4b3a..00435aadc5ac6ba54f27becaf74893f311adec70 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,10 @@ class build_py(_build_py): pip.main(['install', 'gremlinpython==3.2.5', '--no-deps']) _build_py.run(self) + setup( name='aiogremlin', - version='3.2.5rc4', + version='3.2.5', url='', license='Apache Software License', author='davebshow',