summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hows <david.hows@mongodb.com>2016-12-19 17:08:03 +1100
committerDavid Hows <david.hows@mongodb.com>2016-12-19 17:08:03 +1100
commitd7f6c43a465eb43feabddf24d6cd1860ff08c10b (patch)
treef7138c10b6b8624326ded5dbdd646342f9866ba6
parentc0bae91eff62d1545f5c38e8adf83926607e736e (diff)
downloadmongo-d7f6c43a465eb43feabddf24d6cd1860ff08c10b.tar.gz
Revert "WT-3075 Document and enforce that WiredTiger now depends on Python 2.7 (#3196)"
This reverts commit 8ae0338420c8902bdaf323f66ff09d44d4e6eb0c.
-rw-r--r--build_posix/configure.ac.in2
-rwxr-xr-xsrc/docs/build-pydoc.sh2
-rw-r--r--src/docs/testing.dox2
-rw-r--r--src/docs/upgrading.dox11
4 files changed, 6 insertions, 11 deletions
diff --git a/build_posix/configure.ac.in b/build_posix/configure.ac.in
index b7c39b5da8b..952c9ae607d 100644
--- a/build_posix/configure.ac.in
+++ b/build_posix/configure.ac.in
@@ -133,7 +133,7 @@ if test "$wt_cv_enable_java" = "yes"; then
fi
if test "$wt_cv_enable_python" = "yes"; then
- AM_PATH_PYTHON([2.7])
+ AM_PATH_PYTHON([2.6])
if test -n "$with_python_prefix" ; then
PYTHON_INSTALL_ARG="-d $with_python_prefix"
fi
diff --git a/src/docs/build-pydoc.sh b/src/docs/build-pydoc.sh
index aef88fd4c97..5e6e3635be5 100755
--- a/src/docs/build-pydoc.sh
+++ b/src/docs/build-pydoc.sh
@@ -3,4 +3,4 @@ TOP=$DOCS/..
. $TOP/config.sh
cd python
-PYTHONPATH=../../lang/python/src:$THRIFT_HOME/lib/python2.7/site-packages pydoc -w wiredtiger
+PYTHONPATH=../../lang/python/src:$THRIFT_HOME/lib/python2.6/site-packages pydoc -w wiredtiger
diff --git a/src/docs/testing.dox b/src/docs/testing.dox
index cf280e8f3ff..7d454d54212 100644
--- a/src/docs/testing.dox
+++ b/src/docs/testing.dox
@@ -27,7 +27,7 @@ The WiredTiger unit test suite includes tests that cover:
The WiredTiger Python test suite is built using the WiredTiger Python
API and the Python unittest functionality (the test suite requires at
-least Python version 2.7).
+least Python version 2.6).
The WiredTiger test suite automatically runs as part of every commit
into the WiredTiger GitHub source tree.
diff --git a/src/docs/upgrading.dox b/src/docs/upgrading.dox
index 1e0e2eaf99a..0b0826f2646 100644
--- a/src/docs/upgrading.dox
+++ b/src/docs/upgrading.dox
@@ -1,19 +1,14 @@
/*! @page upgrading Upgrading WiredTiger applications
+
@section version_291 Upgrading to Version 2.9.1
-<dl>
-<dt>WiredTiger now requires Python 2.7 at minimum</dt>
-<dd>
-The minimum version of Python supported by WiredTiger is now 2.7 up from the
-previous version of 2.6. This is due to extra unit tests added in this release
-that depend on 2.7. This is not due to a change in the Python API.
-</dd>
+<dl>
<dt>Changes to hazard pointer configuration</dt>
<dd>
The \c hazard_max parameter to ::wiredtiger_open is now ignored. Memory is
allocated for hazard pointers as required by each session.
</dd>
-</dl><hr>
+</dl>
@section version_290 Upgrading to Version 2.9.0
<dl>