Skip to content

Commit c26005e

Browse files
committed
doc fix to reflect v3.1 ga & pg18 now rc
1 parent b187b18 commit c26005e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Multicorn2
44

55
Multicorn Python3 Foreign Data Wrapper (FDW) for Postgresql. Tested on Linux w/ Python 3.9-3.13 & Postgres 14-18.
66

7-
Our latest release, v3.1, supports thru pg18 (and has some testing against Python 3.13).
7+
Our latest prod release, v3.1, supports thru pg18 (and has some testing against Python 3.13).
88
Newest versions of major linux distro's (Ubuntu 24.04 & EL10) ship with Python 3.12 so sticking with using 3.12 (instead of 3.13) is advised in the short run.
99
Python 3.9 is already deprecated by the CPython community and will soon be unsupported by this extension; use 3.10 thru 3.12 instead.
1010

@@ -57,9 +57,9 @@ source venv/bin/activate
5757
### Download & Compile Postgres 14+ source code
5858
```bash
5959
cd ~
60-
wget https://ftp.postgresql.org/pub/source/v18beta2/postgresql-18beta2.tar.gz
61-
tar -xvf postgresql-18beta2.tar.gz
62-
cd postgresql-18beta2
60+
wget https://ftp.postgresql.org/pub/source/v18.0/postgresql-18.0.tar.gz
61+
tar -xvf postgresql-18.0.tar.gz
62+
cd postgresql-18.0
6363
./configure
6464
make
6565
sudo make install
@@ -68,10 +68,10 @@ sudo make install
6868
### Download & Compile Multicorn2
6969
```bash
7070
set PATH=/usr/local/pgsql/bin:$PATH
71-
cd ~/postgresql-18beta2/contrib
72-
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.1beta1.tar.gz
73-
tar -xvf v3.1beta1.tar.gz
74-
cd multicorn2-3.1beta1
71+
cd ~/postgresql-18.0/contrib
72+
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.1.tar.gz
73+
tar -xvf v3.1.tar.gz
74+
cd multicorn2-3.1
7575
make
7676
sudo make install
7777
```
@@ -89,7 +89,7 @@ When using a pre-built Postgres installed using your OS package manager, you wil
8989
### Install Dependencies for Building the Multicorn2 extension
9090
On Debian/Ubuntu systems:
9191
```bash
92-
sudo apt install -y build-essential ... postgresql-server-dev-17
92+
sudo apt install -y build-essential ... postgresql-server-dev-18
9393
sudo apt install -y python3 python3-dev python3-setuptools python3-pip python-is-python3
9494
```
9595

@@ -102,9 +102,9 @@ sudo yum -y install git python3 python3-devel python3-pip
102102

103103
### Download & Compile Multicorn2
104104
```bash
105-
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.1beta1.tar.gz
106-
tar -xvf v3.1beta1.tar.gz
107-
cd multicorn2-3.1beta1
105+
wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v3.1.tar.gz
106+
tar -xvf v3.1.tar.gz
107+
cd multicorn2-3.1
108108
make
109109
sudo make install
110110
```

0 commit comments

Comments
 (0)