Merge pull request #3154 from Andrew-Chen-Wang/new-pg

This commit is contained in:
Bruno Alla 2021-06-22 10:00:22 +01:00 committed by GitHub
commit 25820cab7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 16 deletions

View File

@ -96,7 +96,7 @@ Constraints
-----------
* Only maintained 3rd party libraries are used.
* Uses PostgreSQL everywhere (9.4 - 12.3)
* Uses PostgreSQL everywhere (10.16 - 13.2)
* Environment variables for configuration (This won't work with Apache/mod_wsgi).
Support this Project!
@ -177,11 +177,10 @@ Answer the prompts with your own desired options_. For example::
use_heroku [n]: y
use_compressor [n]: y
Select postgresql_version:
1 - 12.3
2 - 11.8
3 - 10.8
4 - 9.6
5 - 9.5
1 - 13.2
2 - 12.6
3 - 11.11
4 - 10.16
Choose from 1, 2, 3, 4, 5 [1]: 1
Select js_task_runner:
1 - None

View File

@ -18,11 +18,10 @@
"use_pycharm": "n",
"use_docker": "n",
"postgresql_version": [
"12.3",
"11.8",
"10.8",
"9.6",
"9.5"
"13.2",
"12.6",
"11.11",
"10.16"
],
"js_task_runner": [
"None",

View File

@ -37,11 +37,10 @@ SUPPORTED_COMBINATIONS = [
{"use_pycharm": "n"},
{"use_docker": "y"},
{"use_docker": "n"},
{"postgresql_version": "12.3"},
{"postgresql_version": "11.8"},
{"postgresql_version": "10.8"},
{"postgresql_version": "9.6"},
{"postgresql_version": "9.5"},
{"postgresql_version": "13.2"},
{"postgresql_version": "12.6"},
{"postgresql_version": "11.11"},
{"postgresql_version": "10.16"},
{"cloud_provider": "AWS", "use_whitenoise": "y"},
{"cloud_provider": "AWS", "use_whitenoise": "n"},
{"cloud_provider": "GCP", "use_whitenoise": "y"},