From b7a9fca9c592db49281644b60aa5d4c6a9f73781 Mon Sep 17 00:00:00 2001 From: davebshow <davebshow@gmail.com> Date: Wed, 19 Jul 2017 12:56:49 -0400 Subject: [PATCH] updated docs, setup is hosed --- docs/index.rst | 8 ++++++-- setup.py | 3 ++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index a4f20be..c1b47ab 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 c53a680..00435aa 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', -- GitLab