Skip to content

WEB: Formalize workgroups #49859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Dec 27, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions web/pandas/about/team.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,20 @@ Wes McKinney is the Benevolent Dictator for Life (BDFL).

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

## Code of conduct committee
## Workgroups

<ul>
{% for person in maintainers.coc %}
<li>{{ person }}</li>
{% endfor %}
</ul>
{% for workgroup in workgroups %}

## NumFOCUS committee
### {{ workgroup.name }}

<ul>
{% for person in maintainers.numfocus %}
<li>{{ person }}</li>
{% for person in maintainers.coc %}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be misreading but shouldn't this be workgroup.coc?

<li>{{ person }}{% if loop.first %} (lead){% endif %}</li>
{% endfor %}
</ul>

{% endfor %}

## Inactive maintainers

<ul>
Expand Down
40 changes: 30 additions & 10 deletions web/pandas/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,17 +101,37 @@ maintainers:
- jschendel
- charlesdong1991
- dsaxton
workgroups:
coc:
- Bijay Regmi
- Wuraola Oyewusi
- Мария Чакчурина
- Tom Augspurger
numfocus:
- Wes McKinney
- Jeff Reback
- Joris Van den Bossche
- Tom Augspurger
- Matthew Roeschke
name: Code of Conduct
responsibilities: "Make sure the pandas is the welcoming and inclusive community we want it to be. Keeping the CoC updated, and addressing violation reports."
members:
- Tom Augspurger
- Bijay Regmi
- Wuraola Oyewusi
- Мария Чакчурина
finance:
name: Finance
responsibilities: "Approve the project expenses."
members:
- Wes McKinney
- Jeff Reback
- Joris Van den Bossche
- Tom Augspurger
- Matthew Roeschke
infrastructure:
name: Infrastructure
responsibilities: "Keep the pandas infrastructure up and working. In particular the servers for the website, benchmark, CI and others needed."
members:
- Marc Garcia
- Matthew Roeschke
- Thomas Li
communications:
name: Communications
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."
members:
- Marco Gorelli
- Marc Garcia
sponsors:
active:
- name: "NumFOCUS"
Expand Down