Skip to content

[MRG] Updates contributing style #12998

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 1 commit into from
Jan 17, 2019
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
40 changes: 20 additions & 20 deletions doc/developers/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -385,28 +385,28 @@ and Cython optimizations.
sections.

Continuous Integration (CI)
............................

* Travis is used for testing on Linux platforms
* Appveyor is used for testing on Windows platforms
* CircleCI is used to build the docs for viewing, for linting with flake8, and
for testing with PyPy on Linux

Please note that if one of the following markers appear in the latest commit
message, the following actions are taken.

====================== ===================
Commit Message Marker Action Taken by CI
---------------------- -------------------
[scipy-dev] Add a Travis build with our dependencies (numpy, scipy, etc ...) development builds
[ci skip] CI is skipped completely
[doc skip] Docs are not built
[doc quick] Docs built, but excludes example gallery plots
[doc build] Docs built including example gallery plots
====================== ===================
^^^^^^^^^^^^^^^^^^^^^^^^^^^

* Travis is used for testing on Linux platforms
* Appveyor is used for testing on Windows platforms
* CircleCI is used to build the docs for viewing, for linting with flake8, and
for testing with PyPy on Linux

Please note that if one of the following markers appear in the latest commit
message, the following actions are taken.

====================== ===================
Commit Message Marker Action Taken by CI
---------------------- -------------------
[scipy-dev] Add a Travis build with our dependencies (numpy, scipy, etc ...) development builds
[ci skip] CI is skipped completely
[doc skip] Docs are not built
[doc quick] Docs built, but excludes example gallery plots
[doc build] Docs built including example gallery plots
====================== ===================

Stalled pull requests
......................
^^^^^^^^^^^^^^^^^^^^^

As contributing a feature can be a lengthy process, some
pull requests appear inactive but unfinished. In such a case, taking
Expand Down
14 changes: 10 additions & 4 deletions doc/themes/scikit-learn/static/nature.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ div.body h6 {

div.body h1,
div.body h2,
div.body h3 {
div.body h3,
div.body h4 {
padding: 10px;
text-align: center;
border-radius: 10px;
Expand All @@ -513,7 +514,8 @@ div.body h3 {
}

div.body h2,
div.body h3 {
div.body h3,
div.body h4 {
text-align: left;
}

Expand All @@ -537,9 +539,13 @@ div.body h3 {
background-color: #eee;
padding: 5px;
border-radius: 10px;

}
div.body h4 { font-size: 110%; background-color: #F4F4F4; }
div.body h4 {
font-size: 110%;
background-color: #F4F4F4;
padding: 5px;
border-radius: 10px;
}
div.body h5 { font-size: 100%; background-color: #F4F4F4; }
div.body h6 { font-size: 100%; background-color: #F4F4F4; }

Expand Down