Skip to content

Commit e50d646

Browse files
Gui-FernandesBRjuliomachad0phmbressanLucas-Prates
authored
DOC: improvements to developers documentation (#732)
* DOC: improvements to developers documentation * MNT: git rename a few files from the root directory * DOC: more upgrades to development docs * DEV: create script to delete local branches that no longer exist on remote * DOC: I followed the step by step, looked at other parts of the documentation, and didn't find anything to correct or improve. I think it's fine as it is. I added a model to requirements.txt, which was missing when I ran the make html command. * DOC: Update developer docs on sphinx building. * DOC: Clarify testing structure on testing docs. * DOC: Re-run docs requirements freeze. * DOC: Introduce Conflicts Guideline and update First PR. * DOC: fixing typos on development docs. * DOC: Solve review comments of dev docs. * DOC: final touches to developers documentation * DOC: update cSpell configuration to enable additional file types * DEV: move docker ignore file --------- Co-authored-by: Julio Machado <[email protected]> Co-authored-by: Pedro Bressan <[email protected]> Co-authored-by: Lucas de Oliveira Prates <[email protected]>
1 parent d0c0f61 commit e50d646

23 files changed

+699
-361
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/clear-local-branches.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Delete local branches that no longer exists on remote (windows command line)
2+
git branch -vv | Where-Object { $_ -match 'gone\]' } | ForEach-Object { $_.Trim().Split()[0] } | ForEach-Object { git branch -D $_ }

.vscode/settings.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"python.testing.unittestEnabled": false,
66
"python.testing.pytestEnabled": true,
77
"autoDocstring.docstringFormat": "numpy",
8-
"cSpell.enableFiletypes": [
9-
"python",
10-
"jupyter",
11-
"markdown",
12-
"restructuredtext"
13-
],
8+
"cSpell.enabledFileTypes": {
9+
"plaintext": true,
10+
"python": true,
11+
"jupyter": true,
12+
"markdown": true,
13+
"tex": true,
14+
"rst": true
15+
},
1416
"cSpell.language": "en-US",
1517
"cSpell.words": [
1618
"Abdulklech",
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"sphinx.ext.napoleon",
4141
"sphinx.ext.viewcode",
4242
"sphinx.ext.mathjax",
43+
"sphinx_tabs.tabs",
4344
"sphinx_copybutton",
4445
"sphinx_design",
4546
"jupyter_sphinx",

0 commit comments

Comments
 (0)