From eea750c904d586751621c081103b15c5263bfcd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Mon, 2 Dec 2019 16:43:11 +0100 Subject: [PATCH] Revert PG12 + Python3 --- .travis.yml | 4 +++- Makefile | 4 +++- NEWS.md | 3 +++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 729d84f..e6f080c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,9 @@ jobs: - env: POSTGRESQL_VERSION="11" POSTGIS_VERSION="2.5" - env: POSTGRESQL_VERSION="12" POSTGIS_VERSION="2.5" - env: POSTGRESQL_VERSION="12" POSTGIS_VERSION="3" - + allow_failures: + - env: POSTGRESQL_VERSION="12" POSTGIS_VERSION="2.5" + - env: POSTGRESQL_VERSION="12" POSTGIS_VERSION="3" script: - sudo service postgresql stop; diff --git a/Makefile b/Makefile index 24da332..70290e2 100644 --- a/Makefile +++ b/Makefile @@ -138,7 +138,9 @@ PG_VERSION := $(shell $(PG_CONFIG) --version | $(AWK) '{split($$2,a,"."); print PG_12_GE := $(shell [ $(PG_VERSION) -ge 12 ] && echo true) PLPYTHONU := plpythonu ifeq ($(PG_12_GE), true) -PLPYTHONU := plpython3u +# Reverted until we are ready for PG12 support in other projects +PLPYTHONU := plpythonu +# PLPYTHONU := plpython3u endif $(EXTENSION)--$(EXTVERSION).sql: $(CDBSCRIPTS) cartodb_version.sql Makefile diff --git a/NEWS.md b/NEWS.md index e006327..53cbdb6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,6 @@ +0.33.0 (XXXX-XX-XX) +* Revert `Make PG12 depend on plpython3u instead of plpythonu`. + 0.32.0 (2019-11-08) * Fix oAuth ownership re-assignation for functions * Some fixes for PG12.