Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit cf6a30e

Browse files
committed
Merge pull request #12 from andrewsg/legacy-update
Update runtime to 1.9.22
2 parents fbdb114 + 66dd169 commit cf6a30e

5,572 files changed

Lines changed: 35915 additions & 714113 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

python_vm_runtime/RELEASE_NOTES

Lines changed: 2 additions & 2858 deletions
Large diffs are not rendered by default.

python_vm_runtime/VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
release: "1.9.15"
2-
timestamp: 1413915397
1+
release: "1.9.22"
2+
timestamp: 1431461849
33
api_versions: ['1']
44
supported_api_versions:
55
python:

python_vm_runtime/api_server.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import os
2525
import sys
26+
import time
2627

2728
sys_path = sys.path
2829
try:
@@ -34,6 +35,11 @@
3435
sys.path = sys_path
3536

3637
wrapper_util.reject_old_python_versions((2, 5))
38+
if sys.version_info < (2, 6):
39+
sys.stderr.write(
40+
'WARNING: In an upcoming release the SDK will no longer support Python'
41+
' 2.5. Users should upgrade to Python 2.6 or higher.\n')
42+
time.sleep(1)
3743

3844

3945

python_vm_runtime/appcfg.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import os
2525
import sys
26+
import time
2627

2728
sys_path = sys.path
2829
try:
@@ -34,6 +35,11 @@
3435
sys.path = sys_path
3536

3637
wrapper_util.reject_old_python_versions((2, 5))
38+
if sys.version_info < (2, 6):
39+
sys.stderr.write(
40+
'WARNING: In an upcoming release the SDK will no longer support Python'
41+
' 2.5. Users should upgrade to Python 2.6 or higher.\n')
42+
time.sleep(1)
3743

3844

3945

python_vm_runtime/backends_conversion.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import os
2525
import sys
26+
import time
2627

2728
sys_path = sys.path
2829
try:
@@ -34,6 +35,11 @@
3435
sys.path = sys_path
3536

3637
wrapper_util.reject_old_python_versions((2, 5))
38+
if sys.version_info < (2, 6):
39+
sys.stderr.write(
40+
'WARNING: In an upcoming release the SDK will no longer support Python'
41+
' 2.5. Users should upgrade to Python 2.6 or higher.\n')
42+
time.sleep(1)
3743

3844

3945

python_vm_runtime/bulkload_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import os
2525
import sys
26+
import time
2627

2728
sys_path = sys.path
2829
try:
@@ -34,6 +35,11 @@
3435
sys.path = sys_path
3536

3637
wrapper_util.reject_old_python_versions((2, 5))
38+
if sys.version_info < (2, 6):
39+
sys.stderr.write(
40+
'WARNING: In an upcoming release the SDK will no longer support Python'
41+
' 2.5. Users should upgrade to Python 2.6 or higher.\n')
42+
time.sleep(1)
3743

3844

3945

python_vm_runtime/bulkloader.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import os
2525
import sys
26+
import time
2627

2728
sys_path = sys.path
2829
try:
@@ -34,6 +35,11 @@
3435
sys.path = sys_path
3536

3637
wrapper_util.reject_old_python_versions((2, 5))
38+
if sys.version_info < (2, 6):
39+
sys.stderr.write(
40+
'WARNING: In an upcoming release the SDK will no longer support Python'
41+
' 2.5. Users should upgrade to Python 2.6 or higher.\n')
42+
time.sleep(1)
3743

3844

3945

python_vm_runtime/demos/php/guestbook/app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
application: guestbook
22
version: 1
3-
runtime: php
3+
runtime: php55
44
api_version: 1
55

66
handlers:
@@ -15,4 +15,4 @@ env_variables:
1515
PRODUCTION_CLOUD_SQL_INSTANCE: '/cloudsql/guestbook:my-cloudsql-instance'
1616
PRODUCTION_DB_USERNAME: ''
1717
PRODUCTION_DB_PASSWORD: ''
18-
PRODUCTION_DB_NAME: 'guestbook'
18+
PRODUCTION_DB_NAME: 'guestbook'

python_vm_runtime/demos/php/minishell/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
application: shell-php
22
version: 1
3-
runtime: php
3+
runtime: php55
44
api_version: 1
55

66
handlers:

python_vm_runtime/demos/php/mod_rewrite/app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
application: mod_rewrite_simulator
1+
application: mod-rewrite-simulator
22
version: 1
3-
runtime: php
3+
runtime: php55
44
api_version: 1
55

66
handlers:

0 commit comments

Comments
 (0)