Sphinx assumes that you will be duplex printing, hence it adds several blank pages in its LaTex output.
To avoid these blank pages, edit the file source/conf.py
and add the following lines to the latex_elements dict:
latex_elements = {
'classoptions': ',openany,oneside',
'babel': '\\usepackage[english]{babel}',
# more stuff below
}