Update CONTRIBUTING.md to default to 9.6.

9.5 was not supported anymore, and 10 is not released yet. So 9.6
seems appropriate for now.
pull/1470/head
Andres Freund 2017-06-26 18:09:23 -07:00
parent 535416384c
commit d25ccf9e00
1 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ why we ask this as well as instructions for how to proceed, see the
sudo apt-key add - sudo apt-key add -
sudo apt-get update sudo apt-get update
sudo apt-get install -y postgresql-server-dev-9.5 postgresql-9.5 \ sudo apt-get install -y postgresql-server-dev-9.6 postgresql-9.6 \
libedit-dev libselinux1-dev libxslt-dev \ libedit-dev libselinux1-dev libxslt-dev \
libpam0g-dev git flex make libpam0g-dev git flex make
``` ```
@ -66,7 +66,7 @@ why we ask this as well as instructions for how to proceed, see the
#### Red Hat-based Linux (RHEL, CentOS, Fedora) #### Red Hat-based Linux (RHEL, CentOS, Fedora)
1. Find the PostgreSQL 9.5 RPM URL for your repo at [yum.postgresql.org](http://yum.postgresql.org/repopackages.php#pg95) 1. Find the PostgreSQL 9.6 RPM URL for your repo at [yum.postgresql.org](http://yum.postgresql.org/repopackages.php#pg96)
2. Register its contents with Yum: 2. Register its contents with Yum:
```bash ```bash
@ -78,13 +78,13 @@ why we ask this as well as instructions for how to proceed, see the
```bash ```bash
sudo yum update -y sudo yum update -y
sudo yum groupinstall -y 'Development Tools' sudo yum groupinstall -y 'Development Tools'
sudo yum install -y postgresql95-devel postgresql95-server \ sudo yum install -y postgresql96-devel postgresql96-server \
libxml2-devel libxslt-devel openssl-devel \ libxml2-devel libxslt-devel openssl-devel \
pam-devel readline-devel git pam-devel readline-devel git
git clone https://github.com/citusdata/citus.git git clone https://github.com/citusdata/citus.git
cd citus cd citus
PG_CONFIG=/usr/pgsql-9.5/bin/pg_config ./configure PG_CONFIG=/usr/pgsql-9.6/bin/pg_config ./configure
make make
sudo make install sudo make install
cd src/test/regress cd src/test/regress