From e45ffc9bf415fc88d9644a80d92df4196628d85c Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Tue, 24 Apr 2018 14:19:09 +0000 Subject: [PATCH] List PyMySQL first in installation docs It's by far the most tested driver with oslo.db so it makes sense to have it first in the list of driver options. Mostly this is just to have a change to merge so the reno jobs get run again though. Change-Id: I5a9a05b6c3e3008cb1dfefc2df397003c2cbc7fd --- doc/source/install/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/install/index.rst b/doc/source/install/index.rst index 1390f94f..9835818b 100644 --- a/doc/source/install/index.rst +++ b/doc/source/install/index.rst @@ -8,11 +8,11 @@ At the command line:: You will also need to install at least one SQL backend:: - $ pip install psycopg2 + $ pip install PyMySQL Or:: - $ pip install PyMySQL + $ pip install psycopg2 Or::