Skip to content

Commit c54ce8e

Browse files
WEB: Formalize workgroups (#49859)
1 parent 0971f55 commit c54ce8e

File tree

2 files changed

+48
-20
lines changed

2 files changed

+48
-20
lines changed

web/pandas/about/team.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,26 @@ Wes McKinney is the Benevolent Dictator for Life (BDFL).
4444

4545
The project governance is available in the [project governance page](governance.html).
4646

47-
## Code of conduct committee
47+
## Workgroups
4848

49-
<ul>
50-
{% for person in maintainers.coc %}
51-
<li>{{ person }}</li>
52-
{% endfor %}
53-
</ul>
49+
{% for k, workgroup in workgroups.items() %}
5450

55-
## NumFOCUS committee
51+
### {{ workgroup.name }}
5652

5753
<ul>
58-
{% for person in maintainers.numfocus %}
59-
<li>{{ person }}</li>
60-
{% endfor %}
54+
<li><b>Contact:</b> <a href="mailto:{{ workgroup.contact }}">{{ workgroup.contact }}</a></li>
55+
<li><b>Responsibilities:</b> {{ workgroup.responsibilities }}</li>
56+
<li><b>Members:</b>
57+
<ul>
58+
{% for person in workgroup.members %}
59+
<li>{{ person }}{% if loop.first %} (lead){% endif %}</li>
60+
{% endfor %}
61+
</ul>
62+
</li>
6163
</ul>
6264

65+
{% endfor %}
66+
6367
## Inactive maintainers
6468

6569
<ul>

web/pandas/config.yml

+34-10
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,41 @@ maintainers:
102102
- jschendel
103103
- charlesdong1991
104104
- dsaxton
105+
workgroups:
105106
coc:
106-
- Bijay Regmi
107-
- Wuraola Oyewusi
108-
- Мария Чакчурина
109-
- Tom Augspurger
110-
numfocus:
111-
- Wes McKinney
112-
- Jeff Reback
113-
- Joris Van den Bossche
114-
- Tom Augspurger
115-
- Matthew Roeschke
107+
name: Code of Conduct
108+
109+
responsibilities: "Make sure pandas is the welcoming and inclusive community we want it to be. Keeping the CoC updated, and addressing violation reports."
110+
members:
111+
- Tom Augspurger
112+
- Bijay Regmi
113+
- Wuraola Oyewusi
114+
- Мария Чакчурина
115+
finance:
116+
name: Finance
117+
118+
responsibilities: "Approve the project expenses."
119+
members:
120+
- Wes McKinney
121+
- Jeff Reback
122+
- Joris Van den Bossche
123+
- Tom Augspurger
124+
- Matthew Roeschke
125+
infrastructure:
126+
name: Infrastructure
127+
128+
responsibilities: "Keep the pandas infrastructure up and working. In particular the servers for the website, benchmarks, CI and others needed."
129+
members:
130+
- Marc Garcia
131+
- Matthew Roeschke
132+
- Thomas Li
133+
communications:
134+
name: Communications
135+
136+
responsibilities: "Share relevant information with the broader community, mainly via our social networks, as well as being the main point of contact between NumFOCUS and the core team."
137+
members:
138+
- Marco Gorelli
139+
- Marc Garcia
116140
sponsors:
117141
active:
118142
- name: "NumFOCUS"

0 commit comments

Comments
 (0)