Back to Pandas

Team

web/pandas/about/team.md

3.1.0.dev03.9 KB
Original Source

Team

Contributors

pandas is made with love by more than 2,000 volunteer contributors.

If you want to support pandas development, you can find information in the [donations page]({{ base_url }}donate.html).

Active maintainers

<div class="card-group maintainers"> {% for username in maintainers.active %} {% set person = maintainers.github_info.get(username) %} <div class="card">
        <div class="card-body">
            <h6 class="card-title">
                {% if person.blog %}
                    <a href="{{ person.blog }}">
                        {{ person.name or person.login }}
                    </a>
                {% else %}
                    {{ person.name or person.login }}
                {% endif %}
            </h6>
            <p class="card-text small"><a href="{{ person.html_url }}">{{ person.login }}</a></p>
        </div>
    </div>
{% endfor %}
</div>

Maintainers of pandas-stubs

<div class="card-group maintainers"> {% for username in maintainers.pandasstubs %} {% set person = maintainers.github_info.get(username) %} <div class="card">
        <div class="card-body">
            <h6 class="card-title">
                {% if person.blog %}
                    <a href="{{ person.blog }}">
                        {{ person.name or person.login }}
                    </a>
                {% else %}
                    {{ person.name or person.login }}
                {% endif %}
            </h6>
            <p class="card-text small"><a href="{{ person.html_url }}">{{ person.login }}</a></p>
        </div>
    </div>
{% endfor %}
</div>

Diversity and Inclusion

pandas expressly welcomes and encourages contributions from anyone who faces under-representation, discrimination in the technology industry or anyone willing to increase the diversity of our team. We have identified visible gaps and obstacles in sustaining diversity and inclusion in the open-source communities and we are proactive in increasing the diversity of our team. We have a [code of conduct]({{ base_url }}community/coc.html) to ensure a friendly and welcoming environment. Please send an email to pandas-code-of-conduct-committee, if you think we can do a better job at achieving this goal.

Governance

The project governance is available in the [project governance page]({{ base_url }}about/governance.html).

Workgroups

{% for k, workgroup in workgroups.items() %}

{{ workgroup.name }}

<ul> <li><b>Contact:</b> <a id="{{ workgroup.name|replace(' ', '-') }}" href="mailto:asp.{{ workgroup.contact }}">asp.{{ workgroup.contact }}</a> <script TYPE="text/javascript"> var mail_tag_id = '{{ workgroup.name|replace(' ', '-') }}'; var mail_tag_element = document.getElementById( mail_tag_id ); mail_tag_element.innerHTML = mail_tag_element.innerHTML.replace(/^asp./, ""); mail_tag_element.setAttribute('href', "mailto:"+mail_tag_element.innerHTML); </script> </li> <li><b>Responsibilities:</b> {{ workgroup.responsibilities }}</li> <li><b>Members:</b> <ul> {% for person in workgroup.members %} <li>{{ person }}{% if loop.first %} (lead){% endif %}</li> {% endfor %} </ul> </li> </ul>

{% endfor %}

Inactive maintainers

<ul> {% for username in maintainers.inactive %} {% set person = maintainers.github_info.get(username) %} <li> <a href="{{ person.blog or person.html_url }}"> {{ person.name or person.login }} </a> </li> {% endfor %} </ul>