Skip to content

Commit 3acae45

Browse files
authored
Improve latex (#53)
* replace infegal by leqslant * index * fix * remove * fix yml * misspelling * fix issues * fix link * doc * fix req * fix
1 parent 5d2706f commit 3acae45

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+357
-496
lines changed

.github/workflows/documentation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: python -m pip install -r requirements-dev.txt
3636

3737
- name: Cache pip
38-
uses: actions/cache@v2
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.cache/pip
4141
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}
@@ -52,7 +52,7 @@ jobs:
5252
export PYTHONPATH=
5353
5454
- name: test notebooks
55-
run: python -m pytest _unittests/ut_xrun_doc/test_documentation_notebook.py --durations=10
55+
run: SCIPY_ARRAY_API=1 python -m pytest _unittests/ut_xrun_doc/test_documentation_notebook.py --durations=10
5656

5757
- name: Upload coverage reports to Codecov
5858
uses: codecov/codecov-action@v3
@@ -68,7 +68,7 @@ jobs:
6868
run: cp CHANGELOGS* ./_doc
6969

7070
- name: Documentation
71-
run: python -m sphinx ./_doc ./dist/html -n -w doc.txt
71+
run: SCIPY_ARRAY_API=1 python -m sphinx ./_doc ./dist/html -n -w doc.txt
7272

7373
- name: Summary
7474
run: cat doc.txt
@@ -86,6 +86,6 @@ jobs:
8686
exit 1
8787
fi
8888
89-
- uses: actions/upload-artifact@v3
89+
- uses: actions/upload-artifact@v4
9090
with:
9191
path: ./dist/html/**

.github/workflows/wheels-any.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
- name: build wheel
2525
run: python -m pip wheel .
2626

27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
path: ./mlstatpy*.whl

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ prof
1818
temp_*
1919
.ipynb_checkpoints
2020
_doc/CHANGELOGS.rst
21+
_doc/sg_execution_times.rst
2122
_doc/LICENSE.txt
2223
_doc/auto_examples/*
2324
_doc/examples/_cache/*

CHANGELOGS.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ Change Logs
44
0.5.0
55
+++++
66

7+
0.4.0
8+
+++++
9+
710
* :pr:`42`: quantization
811
* :pr:`39`: refactoring, use black, better documentation
9-
10-
0.4.0
11-
=====
1212
* :pr:`32`: Improves usability of distance_matching_graphs_paths (2021-08-10)
1313
* :pr:`31`: Links to notebooks are broken, notebooks slides are not working. (2021-03-31)
1414
* :pr:`30`: Fixes #26, implements a compact architecture (2021-01-23)
@@ -28,4 +28,3 @@ Change Logs
2828
* :pr:`9`: fix unittest on wikipedia_dump after a change on wikipedia website (2018-04-01)
2929
* :pr:`4`: implémentation la complétion en C++ (2016-09-25)
3030
* :pr:`1`: ajouter les petits exposés finance... (2016-06-29)
31-

_doc/api/data.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
Source de données
33
=================
44

5-
.. contents::
6-
:local:
7-
:depth: 2
8-
95
Wikipédia
106
+++++++++
117

_doc/api/graph.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
Graphes
33
=======
44

5-
.. contents::
6-
:local:
7-
:depth: 2
8-
95
Distance
106
++++++++
117

_doc/api/image.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
Image
33
=====
44

5-
.. contents::
6-
:local:
7-
:depth: 2
8-
95
Conversion
106
++++++++++
117

_doc/api/ml.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
Machine Learning
33
================
44

5-
.. contents::
6-
:local:
7-
:depth: 2
8-
95
Matrices
106
++++++++
117

_doc/api/optim.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
Optimisation
33
================
44

5-
.. contents::
6-
:local:
7-
:depth: 2
8-
95
Gradient
106
++++++++
117

_doc/api/text.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
Traitement du langage naturel
22
=============================
33

4-
.. contents::
5-
:local:
6-
:depth: 2
7-
84
Complétion
95
++++++++++
106

0 commit comments

Comments
 (0)