Merge pull request #2676 from Andrew-Chen-Wang/postgres

Added PG 12.3; Dropped 9.4
This commit is contained in:
Fábio C. Barrionuevo da Luz 2020-07-11 18:33:25 -07:00 committed by GitHub
commit ca4b3262fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View File

@ -176,11 +176,11 @@ Answer the prompts with your own desired options_. For example::
use_heroku [n]: y use_heroku [n]: y
use_compressor [n]: y use_compressor [n]: y
Select postgresql_version: Select postgresql_version:
1 - 11.3 1 - 12.3
2 - 10.8 2 - 11.8
3 - 9.6 3 - 10.8
4 - 9.5 4 - 9.6
5 - 9.4 5 - 9.5
Choose from 1, 2, 3, 4, 5 [1]: 1 Choose from 1, 2, 3, 4, 5 [1]: 1
Select js_task_runner: Select js_task_runner:
1 - None 1 - None

View File

@ -18,11 +18,11 @@
"use_pycharm": "n", "use_pycharm": "n",
"use_docker": "n", "use_docker": "n",
"postgresql_version": [ "postgresql_version": [
"11.3", "12.3",
"11.8",
"10.8", "10.8",
"9.6", "9.6",
"9.5", "9.5"
"9.4"
], ],
"js_task_runner": [ "js_task_runner": [
"None", "None",

View File

@ -37,11 +37,11 @@ SUPPORTED_COMBINATIONS = [
{"use_pycharm": "n"}, {"use_pycharm": "n"},
{"use_docker": "y"}, {"use_docker": "y"},
{"use_docker": "n"}, {"use_docker": "n"},
{"postgresql_version": "11.3"}, {"postgresql_version": "12.3"},
{"postgresql_version": "11.8"},
{"postgresql_version": "10.8"}, {"postgresql_version": "10.8"},
{"postgresql_version": "9.6"}, {"postgresql_version": "9.6"},
{"postgresql_version": "9.5"}, {"postgresql_version": "9.5"},
{"postgresql_version": "9.4"},
{"cloud_provider": "AWS", "use_whitenoise": "y"}, {"cloud_provider": "AWS", "use_whitenoise": "y"},
{"cloud_provider": "AWS", "use_whitenoise": "n"}, {"cloud_provider": "AWS", "use_whitenoise": "n"},
{"cloud_provider": "GCP", "use_whitenoise": "y"}, {"cloud_provider": "GCP", "use_whitenoise": "y"},