Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: appengine/isolate/app.yaml

Issue 1481573002: Update jinja2 to master (between 2.8 and 2.8.1); fix urlencode bug. (Closed) Base URL: git@github.com:luci/luci-py.git@1_tools
Patch Set: Add import hack Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « appengine/gce-backend/app.yaml ('k') | appengine/isolate/module-backend.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 application: isolateserver-dev 1 application: isolateserver-dev
2 module: default 2 module: default
3 version: 1 3 version: 1
4 runtime: python27 4 runtime: python27
5 api_version: 1 5 api_version: 1
6 threadsafe: true 6 threadsafe: true
7 7
8 instance_class: F4 8 instance_class: F4
9 automatic_scaling: 9 automatic_scaling:
10 min_idle_instances: 2 10 min_idle_instances: 2
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 includes: 57 includes:
58 - components/auth 58 - components/auth
59 - components/ereporter2 59 - components/ereporter2
60 - components/static_third_party.yaml 60 - components/static_third_party.yaml
61 61
62 # https://developers.google.com/appengine/docs/python/tools/libraries27 62 # https://developers.google.com/appengine/docs/python/tools/libraries27
63 # As the doc says, serious applications should specify the third party versions. 63 # As the doc says, serious applications should specify the third party versions.
64 libraries: 64 libraries:
65 - name: endpoints 65 - name: endpoints
66 version: "1.0" 66 version: "1.0"
67 - name: jinja2
68 version: "2.6"
69 - name: pycrypto 67 - name: pycrypto
70 version: "2.6" 68 version: "2.6"
71 - name: webapp2 69 - name: webapp2
72 version: "2.5.2" 70 version: "2.5.2"
73 - name: webob 71 - name: webob
74 version: "1.2.3" 72 version: "1.2.3"
75 - name: yaml 73 - name: yaml
76 version: "3.10" 74 version: "3.10"
77 75
78 skip_files: 76 skip_files:
79 # Test and tools. 77 # Test and tools.
80 - support/ 78 - support/
81 - ^tests/ 79 - ^tests/
82 - ^tools/ 80 - ^tools/
83 - test_.+ 81 - test_.+
84 - .+_test\.py$ 82 - .+_test\.py$
85 # Junk files. 83 # Junk files.
86 - ^(.*/)?\..* 84 - ^(.*/)?\..*
87 - .+\.orig$ 85 - .+\.orig$
88 - .+\.rej$ 86 - .+\.rej$
89 - ^(.*/)?#.*# 87 - ^(.*/)?#.*#
90 - .+~ 88 - .+~
91 - .+\.py[co] 89 - .+\.py[co]
92 - ^[A-Z]+$ 90 - ^[A-Z]+$
93 - ^[A-Z]+\.[a-z]+$ 91 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « appengine/gce-backend/app.yaml ('k') | appengine/isolate/module-backend.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698