-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
WEB: Improving the sponsors in the web, and adding CZI #31046
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,31 +11,50 @@ health and sustainability of the project. Visit numfocus.org for more informatio | |
Donations to _pandas_ are managed by NumFOCUS. For donors in the United States, your gift is tax-deductible | ||
to the extent provided by law. As with any donation, you should consult with your tax adviser about your particular tax situation. | ||
|
||
## Tidelift | ||
## Become a sponsor | ||
|
||
_pandas_ is part of the [Tidelift subscription](https://tidelift.com/subscription/pkg/pypi-pandas?utm_source=pypi-pandas&utm_medium=referral&utm_campaign=readme). | ||
You can support pandas by becoming a Tidelift subscriber. | ||
As a free and open source project, _pandas_ relies on the support of the community of users for its development. | ||
If you work for an organization that uses and benefits from _pandas_, please consider supporting pandas. There | ||
are different ways, such as employing people to work on pandas, funds the project, or becoming a | ||
[NumFOCUS sponsor](https://numfocus.org/sponsors) to support the broader ecosystem. Please contact us at | ||
[[email protected]](mailto:[email protected]) to discuss. | ||
|
||
## Institutional partners | ||
|
||
Institutional Partners are companies and universities that support the project by employing contributors. | ||
Current Institutional Partners include: | ||
Institutional partners are companies and universities that support the project by employing contributors. | ||
Current institutional partners include: | ||
|
||
<ul> | ||
{% for company in partners.active if company.employs %} | ||
<li><a href="{{ company.url }}">{{ company.name }}</a> ({{ company.employs }})</li> | ||
{% for company in sponsors.active if company.kind == "partner" %} | ||
<li><a href="{{ company.url }}">{{ company.name }}</a>: {{ company.description }}</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
## Sponsors | ||
|
||
Sponsors are organizations that provide funding for pandas. Current sponsors include: | ||
|
||
<ul> | ||
{% for company in sponsors.active if company.kind == "regular" %} | ||
<li><a href="{{ company.url }}">{{ company.name }}</a>: {{ company.description }}</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
## In-kind sponsors | ||
|
||
- [OVH](https://us.ovhcloud.com/): Hosting | ||
- [Indeed](https://opensource.indeedeng.io/): Logo and website design | ||
In-kind sponsors are organizations that support pandas development with goods or services. | ||
Current in-kind sponsors include: | ||
|
||
<ul> | ||
{% for company in sponsors.inkind %} | ||
<li><a href="{{ company.url }}">{{ company.name }}</a>: {{ company.description }}</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
## Past institutional partners | ||
|
||
<ul> | ||
{% for company in partners.past %} | ||
{% for company in sponsors.past if company.kind == "partner" %} | ||
<li><a href="{{ company.url }}">{{ company.name }}</a></li> | ||
{% endfor %} | ||
</ul> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,30 +99,50 @@ maintainers: | |
- Wes McKinney | ||
- Jeff Reback | ||
- Joris Van den Bossche | ||
partners: | ||
sponsors: | ||
active: | ||
- name: "NumFOCUS" | ||
url: https://numfocus.org/ | ||
logo: /static/img/partners/numfocus.svg | ||
kind: numfocus | ||
- name: "Anaconda" | ||
url: https://www.anaconda.com/ | ||
logo: /static/img/partners/anaconda.svg | ||
employs: "Tom Augspurger, Brock Mendel" | ||
kind: partner | ||
description: "Tom Augspurger, Brock Mendel" | ||
- name: "Two Sigma" | ||
url: https://www.twosigma.com/ | ||
logo: /static/img/partners/two_sigma.svg | ||
employs: "Phillip Cloud, Jeff Reback" | ||
kind: partner | ||
description: "Phillip Cloud, Jeff Reback" | ||
- name: "RStudio" | ||
url: https://www.rstudio.com/ | ||
logo: /static/img/partners/r_studio.svg | ||
employs: "Wes McKinney" | ||
kind: partner | ||
description: "Wes McKinney" | ||
- name: "Ursa Labs" | ||
url: https://ursalabs.org/ | ||
logo: /static/img/partners/ursa_labs.svg | ||
employs: "Wes McKinney, Joris Van den Bossche" | ||
kind: partner | ||
description: "Wes McKinney, Joris Van den Bossche" | ||
- name: "Tidelift" | ||
url: https://tidelift.com | ||
logo: /static/img/partners/tidelift.svg | ||
kind: regular | ||
description: "<i>pandas</i> is part of the <a href=\"https://tidelift.com/subscription/pkg/pypi-pandas?utm_source=pypi-pandas&utm_medium=referral&utm_campaign=readme\">Tidelift subscription</a>. You can support pandas by becoming a Tidelift subscriber." | ||
- name: "Chan Zuckerberg Initiative" | ||
url: https://chanzuckerberg.com/ | ||
logo: /static/img/partners/czi.svg | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this be pulled from the web rather than included in our repo? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's surely an option. My preference is to copy the image, since it's quite small, and we have control and certainty about its content (it won't break if CZI renames the file, or we won't get a logo with a santa hat for xmas, if they decide this looks cool in their website...). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd rather pull from the web; one less file in the repo and on the flip side if they update we aren't out of date There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we do that, we should do it for all the sponsors that have the logo we need online. Doing it just for CZI doesn't make a lot of sense. I can remove CZI from this PR, so we can get the rest of the styling and cleaning merged, and we can work on the logos and add CZI later. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh didn't realize we did this for others. OK for now then |
||
kind: regular | ||
description: "<i>pandas</i> is funded by the Essential Open Source Software for Science program of the Chan Zuckerberg Initiative. The funding is used for general maintainance, improve extension types, and a efficient string type." | ||
inkind: # not included in active so they don't appear in the home page | ||
- name: "OVH" | ||
url: https://us.ovhcloud.com/ | ||
description: "Website and documentation hosting." | ||
- name: "Indeed" | ||
url: https://opensource.indeedeng.io/ | ||
description: "<i>pandas</i> logo design" | ||
past: | ||
- name: "Paris-Saclay Center for Data Science" | ||
url: https://www.datascience-paris-saclay.fr/ | ||
kind: partner |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"funding" instead of "funds", to be consistent with "employing" and "becoming"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, thanks!