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

Side by Side Diff: appengine/swarming/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/machine_provider/app.yaml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 application: swarmingserver 1 application: swarmingserver
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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 - warmup 79 - warmup
80 80
81 includes: 81 includes:
82 - components/auth 82 - components/auth
83 - components/ereporter2 83 - components/ereporter2
84 - components/static_third_party.yaml 84 - components/static_third_party.yaml
85 85
86 libraries: 86 libraries:
87 - name: endpoints 87 - name: endpoints
88 version: "1.0" 88 version: "1.0"
89 - name: jinja2
90 version: "2.6"
91 - name: pycrypto 89 - name: pycrypto
92 version: "2.6" 90 version: "2.6"
93 - name: webapp2 91 - name: webapp2
94 version: "2.5.2" 92 version: "2.5.2"
95 - name: webob 93 - name: webob
96 version: "1.2.3" 94 version: "1.2.3"
97 - name: yaml 95 - name: yaml
98 version: "3.10" 96 version: "3.10"
99 97
100 skip_files: 98 skip_files:
101 # Test and tools. 99 # Test and tools.
102 - support/ 100 - support/
103 - ^tests/ 101 - ^tests/
104 - ^tools/ 102 - ^tools/
105 - test_.+ 103 - test_.+
106 - .+_test\.py$ 104 - .+_test\.py$
107 # Junk files. 105 # Junk files.
108 - ^(.*/)?\..* 106 - ^(.*/)?\..*
109 - .+\.orig$ 107 - .+\.orig$
110 - .+\.rej$ 108 - .+\.rej$
111 - ^(.*/)?#.*# 109 - ^(.*/)?#.*#
112 - .+~ 110 - .+~
113 - .+\.py[co] 111 - .+\.py[co]
114 # Doc, readme and license. 112 # Doc, readme and license.
115 - ^doc/ 113 - ^doc/
116 - ^[A-Z]+$ 114 - ^[A-Z]+$
117 - ^[A-Z]+\.[a-z]+$ 115 - ^[A-Z]+\.[a-z]+$
OLDNEW
« no previous file with comments | « appengine/machine_provider/app.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698