Repository: tinkerpop Updated Branches: refs/heads/master edd823468 -> a2db39cc7
Added dev notes for python environment CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e3018fb2 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e3018fb2 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e3018fb2 Branch: refs/heads/master Commit: e3018fb2e98df62a21272446f63cea5ee550408e Parents: 00a085a Author: Stephen Mallette <[email protected]> Authored: Tue Jul 31 08:35:06 2018 -0400 Committer: Stephen Mallette <[email protected]> Committed: Tue Jul 31 08:35:06 2018 -0400 ---------------------------------------------------------------------- docs/src/dev/developer/development-environment.asciidoc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e3018fb2/docs/src/dev/developer/development-environment.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/dev/developer/development-environment.asciidoc b/docs/src/dev/developer/development-environment.asciidoc index cde81c1..779f642 100644 --- a/docs/src/dev/developer/development-environment.asciidoc +++ b/docs/src/dev/developer/development-environment.asciidoc @@ -74,13 +74,14 @@ The site will be generated to the `target/site/home` directory. [[python-environment]] === Python Environment -As of TinkerPop 3.2.2, the build optionally requires link:https://www.python.org/[Python 2.x] to work with the -`gremlin-python` module. If Python is not installed, TinkerPop will still build with Maven, but native Python tests and +As of TinkerPop 3.2.2, the build optionally requires link:https://www.python.org/[Python] to build the `gremlin-python` +module. If Python is not installed, TinkerPop will still build with Maven, but native Python tests and Java tests that require Python code will be skipped. Developers should also install link:https://pypi.python.org/pypi/pip[pip] and link:https://virtualenv.pypa.io/en/stable/[virtualenv] (version 15.0.2 - older versions may cause build failures). -Once the Python environment is established, the full building and testing of `gremlin-python` may commence. It can be -done manually from the command line with: +The build expects two Python executables `python` and `python3` where `python` maps to 2.7.6 and `python3` is 3.4.3 or +higher. Once the Python environment is established, the full building and testing of `gremlin-python` may commence. It +can be done manually from the command line with: [source,text] mvn clean install -Pglv-python
