Skip to content

Commit 97028bb

Browse files
committed
fix mdinclude
1 parent 182d8ed commit 97028bb

File tree

6 files changed

+31
-30
lines changed

6 files changed

+31
-30
lines changed

INSTALL.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,4 @@ git checkout -b <your-branch-name>
5757
make install-develp
5858
```
5959

60-
For more details about how to contribute to the project please visit the [Contributing Guide](
61-
CONTRIBUTING.rst).
60+
For more details about how to contribute to the project please visit the [Contributing Guide](https://github.com/sdv-dev/copulas/blob/main/CONTRIBUTING.rst).

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
# Add any Sphinx extension module names here, as strings. They can be
3232
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
3333
extensions = [
34-
'sphinx_mdinclude',
3534
'nbsphinx',
3635
'sphinx.ext.autodoc',
3736
'sphinx.ext.githubpages',
3837
'sphinx.ext.viewcode',
3938
'sphinx.ext.napoleon',
4039
'sphinx.ext.todo',
4140
'sphinx.ext.coverage',
42-
'sphinx.ext.mathjax'
41+
'sphinx.ext.mathjax',
42+
'myst_parser',
4343
]
4444

4545
# Add any paths that contain templates here, relative to this directory.
@@ -113,7 +113,7 @@
113113
# documentation.
114114
html_theme_options = {
115115
'collapse_navigation': False,
116-
'display_version': False,
116+
'version_selector': False,
117117
}
118118

119119
# Add any paths that contain custom static files (such as style sheets) here,

docs/history.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.. mdinclude:: ../HISTORY.md
1+
.. include:: ../HISTORY.md
2+
:parser: myst_parser.sphinx_

docs/index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
.. mdinclude:: ../README.md
1+
.. include:: ../README.md
2+
:parser: myst_parser.sphinx_
23
:end-line: 48
34

45
.. toctree::
@@ -21,7 +22,7 @@
2122
:caption: Advanced Usage
2223
:maxdepth: 2
2324

24-
tutorials/04_Syntehtic_Data_for_Machine_Learning
25+
tutorials/04_Synthetic_Data_for_Machine_Learning
2526

2627
.. toctree::
2728
:caption: Resources

docs/install.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.. mdinclude:: ../INSTALL.md
1+
.. include:: ../INSTALL.md
2+
:parser: myst_parser.sphinx_

pyproject.toml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -77,37 +77,36 @@ dev = [
7777
'watchdog >= 1.0.1',
7878

7979
# docs
80-
'sphinx-mdinclude >= 0.6.2',
81-
'nbsphinx >= 0.7.0',
82-
'Sphinx >= 1.7.1',
83-
'sphinx_rtd_theme >= 0.2.4',
84-
'sphinxcontrib_applehelp >= 1.0.8',
85-
'sphinxcontrib-devhelp >= 1.0.6',
86-
'sphinxcontrib-htmlhelp >= 2.0.5',
87-
'sphinxcontrib_serializinghtml >= 1.1.10',
88-
'sphinxcontrib_qthelp >= 1.0.7',
89-
'alabaster >= 0.7.13',
90-
'lxml-html-clean >= 0.4.1',
91-
92-
"Jinja2 >= 2",
80+
'nbsphinx >= 0.9.7, <0.10',
81+
'Sphinx >= 7.4.7, <7.5',
82+
'sphinx_rtd_theme >= 3.0.2, <3.1',
83+
'sphinxcontrib_applehelp >= 2.0.0, <2.1',
84+
'sphinxcontrib-devhelp >= 2.0.0, <2.1',
85+
'sphinxcontrib-htmlhelp >= 2.1.0, <2.2',
86+
'sphinxcontrib_serializinghtml >= 2.0.0, <2.1',
87+
'sphinxcontrib_qthelp >= 2.0.0, <2.1',
88+
'alabaster >= 0.7.16, <0.8',
89+
'lxml-html-clean >= 0.4.1, <0.5',
90+
'Jinja2 >= 3.1.6, <3.2',
91+
'myst_parser >= 3.0.1, <4.1',
9392

9493
# style check
95-
'ruff >= 0.3.2',
94+
'ruff >= 0.3.2, <1',
9695

9796
# distribute on PyPI
98-
'twine >= 1.10.0',
97+
'twine >= 1.10.0, <4',
9998
'wheel >= 0.30.0',
10099

101100
# Advanced testing
102-
'coverage >= 4.5.1',
103-
'tox >= 2.9.1',
101+
'coverage >= 7.7.1, <7.8',
102+
'tox >= 2.9.1,<4',
104103
'invoke',
105104

106105
# Large scale evaluation
107-
'urllib3 >= 1.20',
108-
'tabulate >= 0.8.3',
109-
'boto3 >= 1.7.47',
110-
'docutils >= 0.10'
106+
'urllib3 >= 1.26.20, <2.4',
107+
'tabulate >= 0.9.0, <0.10',
108+
'boto3 >= 1.37.18, <1.38',
109+
'docutils >= 0.21.2, <0.22'
111110
]
112111

113112
[tool.isort]

0 commit comments

Comments
 (0)