Skip to content

Commit c6ed595

Browse files
committed
Forced pip to install quietly.
1 parent 05403ab commit c6ed595

File tree

4 files changed

+29
-25
lines changed

4 files changed

+29
-25
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "scripts/jsonschema"]
2+
path = scripts/jsonschema
3+
url = https://github.com/jpmckinney/pupa-ruby.git

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
setup:
2-
pip install -r scripts/requirements-test.txt
2+
pip install --quiet -r scripts/requirements-test.txt
33

44
validate: setup ## Validate data
5-
@echo Validation command not yet implemented.
5+
python scripts/jsonvalidate.py
66

77
json: setup ## Generate JSON from YAML
88
python scripts/yaml2json.py < data/committees.yml > outputs/committees.json

data/committees.yml

+23-23
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
subclassification: standing-policy
5151
other_names:
5252
- name: General Government Committee
53-
end_date: 2007-03
53+
end_date: '2007-03'
5454
identifiers:
5555
- scheme: tmmis_code
5656
identifier: GM
@@ -84,10 +84,10 @@
8484
founding_date: '1997'
8585
other_names:
8686
- name: Etobicoke Community Council
87-
end_date: 2004-07
88-
start_date: 2001-07
87+
end_date: '2004-07'
88+
start_date: '2001-07'
8989
- name: Toronto West Community Council
90-
end_date: 2001-07
90+
end_date: '2001-07'
9191
start_date: '1997'
9292
- name: West Community Council
9393
- name: North York Community Council
@@ -97,7 +97,7 @@
9797
founding_date: '1997'
9898
other_names:
9999
- name: Toronto North Community Council
100-
end_date: 2004-07
100+
end_date: '2004-07'
101101
start_date: '1997'
102102
- name: North Community Council
103103
- name: Scarborough Community Council
@@ -120,19 +120,19 @@
120120
classification: committee
121121
extras:
122122
subclassification: council-advisory-body
123-
founding_date: 2011-05-19
124-
dissolution_date: 2018-11-30
123+
founding_date: '2011-05-19'
124+
dissolution_date: '2018-11-30'
125125
- name: Affordable Housing Committee
126126
classification: executive
127127
- name: Bid Award Panel
128-
founding_date: 2017-01-01
128+
founding_date: '2017-01-01'
129129
identifiers:
130130
- scheme: tmmis_code
131131
identifier: BA
132132
other_names:
133133
- name: Bid Committee
134134
- name: Bid Committee
135-
dissolution_date: 2017-01-01
135+
dissolution_date: '2017-01-01'
136136
identifiers:
137137
- scheme: tmmis_code
138138
identifier: BD
@@ -141,7 +141,7 @@
141141
other_names:
142142
- name: Civic Theatres Toronto
143143
note: short
144-
founding_date: 2015-07-09
144+
founding_date: '2015-07-09'
145145
- name: Board of Directors of the Sony Centre for the Performing Arts
146146
classification: agency
147147
other_names:
@@ -190,16 +190,16 @@
190190
classification: committee
191191
extras:
192192
subclassification: council-advisory-body
193-
founding_date: 2015-02-11
194-
dissolution_date: 2018-11-30
193+
founding_date: '2015-02-11'
194+
dissolution_date: '2018-11-30'
195195
- name: Debenture Committee
196196
- name: Disability, Access and Inclusion Advisory Committee
197197
identifiers:
198198
- scheme: tmmis_code
199199
identifier: DI
200200
other_names:
201201
- name: Disability Issues Committee
202-
end_date: 2015-07-07
202+
end_date: '2015-07-07'
203203
- name: Employee and Labour Relations Committee
204204
classification: executive
205205
- name: Exhibition Place Official Plan Amendment Subcommittee
@@ -208,8 +208,8 @@
208208
classification: committee
209209
extras:
210210
subclassification: council-advisory-body
211-
founding_date: 2015-02-11
212-
dissolution_date: 2018-11-30
211+
founding_date: '2015-02-11'
212+
dissolution_date: '2018-11-30'
213213
- name: George Bell Arena Nominating Panel
214214
- name: Graffiti Panel
215215
- name: Interview Subcommittee for Board of Health
@@ -239,24 +239,24 @@
239239
classification: committee
240240
extras:
241241
subclassification: council-advisory-body
242-
founding_date: 2015-02-11
243-
dissolution_date: 2018-11-30
242+
founding_date: '2015-02-11'
243+
dissolution_date: '2018-11-30'
244244
- name: Toronto Film, Television and Digital Media Board
245245
classification: committee
246246
extras:
247247
subclassification: council-advisory-body
248-
founding_date: 2015-02-11
249-
dissolution_date: 2018-11-30
248+
founding_date: '2015-02-11'
249+
dissolution_date: '2018-11-30'
250250
other_names:
251251
- name: Film, Television and Commercial Production Industry Committee
252-
start_date: 2015-02-11
253-
end_date: 2015-07-07
252+
start_date: '2015-02-11'
253+
end_date: '2015-07-07'
254254
- name: Toronto Music Industry Advisory Council
255255
classification: committee
256256
extras:
257257
subclassification: council-advisory-body
258-
founding_date: 2015-02-11
259-
dissolution_date: 2018-11-30
258+
founding_date: '2015-02-11'
259+
dissolution_date: '2018-11-30'
260260
- name: Toronto Preservation Board
261261
- name: Heritage Toronto
262262
classification: agency

scripts/jsonschema

Submodule jsonschema added at b57bd8d

0 commit comments

Comments
 (0)