diff options
-rw-r--r-- | doc/HOWTO_RELEASE.rst.txt | 2 | ||||
-rw-r--r-- | pavement.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/HOWTO_RELEASE.rst.txt b/doc/HOWTO_RELEASE.rst.txt index 50b82ac8b..6fd33e868 100644 --- a/doc/HOWTO_RELEASE.rst.txt +++ b/doc/HOWTO_RELEASE.rst.txt @@ -74,7 +74,7 @@ each platform. At the moment this means: Cython is not needed for building the binaries, because generated C files from Cython sources are checked in at the moment. It is worth keeping an eye on what Cython versions have been used to generate all current C files, it should be -the same and most recent version (0.12.1 as of now). +the same and most recent version (0.16 as of now). Fortran: on OS X gfortran from `this site <http://r.research.att.com/tools/>`_ is used. On Windows g77 (included in MinGW) is the current default, in the future diff --git a/pavement.py b/pavement.py index afb177279..b79a601be 100644 --- a/pavement.py +++ b/pavement.py @@ -115,7 +115,7 @@ SUPERPACK_BUILD = 'build-superpack' SUPERPACK_BINDIR = os.path.join(SUPERPACK_BUILD, 'binaries') options(bootstrap=Bunch(bootstrap_dir="bootstrap"), - virtualenv=Bunch(packages_to_install=["sphinx==1.0.4", "numpydoc"], + virtualenv=Bunch(packages_to_install=["sphinx==1.1.3", "numpydoc"], no_site_packages=False), sphinx=Bunch(builddir="build", sourcedir="source", docroot='doc'), superpack=Bunch(builddir="build-superpack"), |