Skip to content
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

Manually add all contributors #19

Merged
merged 3 commits into from
Oct 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ entries are sorted in descending chronological order.
Unreleased
==========

Added
-----
- all-contributors section to README. Added manually due to `lack of rst support in the cli, bot <https://github.com/all-contributors/all-contributors-cli/issues/300>`_, but see `PR 301 there <https://github.com/all-contributors/all-contributors-cli/pull/301>`_.

[0.1.13] - 2021-10-10
=====================

Added
-----
- This project now keeps a changelog.
23 changes: 23 additions & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Thanks goes to these wonderful people (`emoji key <https://allcontributors.org/docs/en/emoji-key>`_):

.. raw:: html

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tr>
<td align="center"><a href = "https://github.com/vaipatel"><img src="https://avatars.githubusercontent.com/u/6489594?v=4" width="100px;" alt=""/><br /><sub><b>Vaibhav Patel</b></sub></a></td>
<td align="center"><a href="https://www.ntnu.edu/employees/hakon.w.anes"><img src="https://avatars.githubusercontent.com/u/12139781?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Håkon Wiik Ånes</b></sub></a><br /><a href="https://github.com/all-contributors/all-contributors/commits?author=hakonanes" title="Documentation">📖</a> <a href="#tool-hakonanes" title="Tools">🔧</a> <a href="#infra-hakonanes" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#maintenance-hakonanes" title="Maintenance">🚧</a></td>
</tr>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the `all-contributors <https://allcontributors.org>`_ specification.
Contributions of any kind are welcome!

This list is maintained manually until such time that the all-contributors bot supports rst. A possibly fix may be coming in `PR 301 there <https://github.com/all-contributors/all-contributors-cli/pull/301>`_.
9 changes: 8 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,11 @@ they can now be submitted to various commonly used statistical procedures like
Principal Components Analysis and various kinds of regression for further
analysis.

**(This file was autogenerated from README_for_docs.rst by running `make README_for_gh` in the docs directory)**
Contributors ✨
===============

.. include:: CONTRIBUTORS.rst


|
| **(This file was autogenerated from README_for_docs.rst by running `make README_for_gh` in the docs directory)**
6 changes: 6 additions & 0 deletions README_for_docs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,9 @@ With the shapes lying in a high-dimensional linear space after preprocessing,
they can now be submitted to various commonly used statistical procedures like
Principal Components Analysis and various kinds of regression for further
analysis.

Contributors ✨
===============

.. include:: CONTRIBUTORS.rst

2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ help:
README_for_gh:
@echo "Building docs for GitHub"
@cp ../README_for_docs.rst ../$(README_FOR_GH)
echo "\n**(This file was autogenerated from README_for_docs.rst by running \`make README_for_gh\` in the docs directory)**" >> ../$(README_FOR_GH)
echo "\n|\n| **(This file was autogenerated from README_for_docs.rst by running \`make README_for_gh\` in the docs directory)**" >> ../$(README_FOR_GH)
sed -i '' -e '/^ :meth:/ d' ../$(README_FOR_GH)

# Catch-all target: route all unknown targets to Sphinx using the new
Expand Down