-
-
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, funding 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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 comment
The 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 comment
The 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 comment
The 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 comment
The 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