Skip to content

Commit a9f7dd5

Browse files
committed
delete cells
1 parent 11edf1b commit a9f7dd5

File tree

5 files changed

+43
-69
lines changed

5 files changed

+43
-69
lines changed

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
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-
'm2r',
34+
'sphinx_mdinclude',
3535
'nbsphinx',
3636
'sphinx.ext.autodoc',
3737
'sphinx.ext.githubpages',
@@ -78,7 +78,7 @@
7878
#
7979
# This is also used if you do content translation via gettext catalogs.
8080
# Usually you set "language" from the command line for these cases.
81-
language = None
81+
language = 'en'
8282

8383
# List of patterns, relative to source directory, that match files and
8484
# directories to ignore when looking for source files.
@@ -97,7 +97,7 @@
9797
# a list of builtin themes.
9898
#
9999
html_theme = 'sphinx_rtd_theme'
100-
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
100+
# html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
101101

102102
# Readthedocs additions
103103
html_context = {

pyproject.toml

Lines changed: 35 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -54,61 +54,60 @@ version = {attr = 'copulas.__version__'}
5454

5555
[project.optional-dependencies]
5656
tutorials = [
57-
'markupsafe<=2.0.1',
58-
"scikit-learn>=0.24;python_version<'3.12'",
59-
"scikit-learn>=1.3.1;python_version>='3.12'",
60-
'jupyter>=1.0.0,<2',
57+
'markupsafe >= 2.0.1',
58+
"scikit-learn >= 0.24;python_version<'3.12'",
59+
"scikit-learn >= 1.3.1;python_version >= '3.12'",
60+
'jupyter >= 1.0.0',
6161
]
6262
test = [
6363
'copulas[tutorials]',
64-
'pytest>=6.2.5,<7',
65-
'pytest-cov>=2.6.0,<3',
66-
'pytest-rerunfailures>=10.3,<15',
67-
'rundoc>=0.4.3,<0.5',
68-
'tomli>=2.0.0,<3',
64+
'pytest >= 6.2.5',
65+
'pytest-cov >= 2.6.0',
66+
'pytest-rerunfailures >= 10.3',
67+
'rundoc >= 0.4.3',
68+
'tomli >= 2.0.0',
6969
]
7070
dev = [
7171
'copulas[tutorials, test]',
7272

7373
# general
74-
'pip>=9.0.1',
75-
'build>=1.0.0,<2',
76-
'bump-my-version>=0.18.3,<1',
77-
'watchdog>=1.0.1,<5',
74+
'pip >= 9.0.1',
75+
'build >= 1.0.0',
76+
'bump-my-version >= 0.18.3',
77+
'watchdog >= 1.0.1',
7878

7979
# docs
80-
'm2r>=0.2.0,<0.3',
81-
'nbsphinx>=0.5.0,<0.7',
82-
'Sphinx>=1.7.1,<3',
83-
'sphinx_rtd_theme>=0.2.4,<0.5',
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-
91-
# Jinja2>=3 makes the sphinx theme fail
92-
"Jinja2>=2,<3;python_version<'3.12'",
93-
"Jinja2>=2,<4;python_version>='3.12'",
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",
9493

9594
# style check
96-
'ruff>=0.3.2,<1',
95+
'ruff >= 0.3.2',
9796

9897
# distribute on PyPI
99-
'twine>=1.10.0,<4',
100-
'wheel>=0.30.0',
98+
'twine >= 1.10.0',
99+
'wheel >= 0.30.0',
101100

102101
# Advanced testing
103-
'coverage>=4.5.1,<6',
104-
'tox>=2.9.1,<4',
102+
'coverage >= 4.5.1',
103+
'tox >= 2.9.1',
105104
'invoke',
106105

107106
# Large scale evaluation
108-
'urllib3>=1.20,<1.26',
109-
'tabulate>=0.8.3,<0.9',
110-
'boto3>=1.7.47,<1.10',
111-
'docutils>=0.10,<0.15'
107+
'urllib3 >= 1.20',
108+
'tabulate >= 0.8.3',
109+
'boto3 >= 1.7.47',
110+
'docutils >= 0.10'
112111
]
113112

114113
[tool.isort]

tutorials/00_Quickstart.ipynb

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11290,13 +11290,6 @@
1129011290
"source": [
1129111291
"new_samples = new_copula.sample(num_samples)"
1129211292
]
11293-
},
11294-
{
11295-
"cell_type": "code",
11296-
"execution_count": null,
11297-
"metadata": {},
11298-
"outputs": [],
11299-
"source": []
1130011293
}
1130111294
],
1130211295
"metadata": {
@@ -11315,7 +11308,7 @@
1131511308
"name": "python",
1131611309
"nbconvert_exporter": "python",
1131711310
"pygments_lexer": "ipython3",
11318-
"version": "3.11.5"
11311+
"version": "3.9.20"
1131911312
}
1132011313
},
1132111314
"nbformat": 4,

tutorials/02_Univariate_Distributions.ipynb

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14233,9 +14233,7 @@
1423314233
{
1423414234
"cell_type": "code",
1423514235
"execution_count": 24,
14236-
"metadata": {
14237-
"scrolled": false
14238-
},
14236+
"metadata": {},
1423914237
"outputs": [],
1424014238
"source": [
1424114239
"synth_data = pd.DataFrame()\n",
@@ -14386,9 +14384,7 @@
1438614384
{
1438714385
"cell_type": "code",
1438814386
"execution_count": 27,
14389-
"metadata": {
14390-
"scrolled": false
14391-
},
14387+
"metadata": {},
1439214388
"outputs": [
1439314389
{
1439414390
"data": {
@@ -35147,13 +35143,6 @@
3514735143
"\n",
3514835144
"univariate.to_dict()"
3514935145
]
35150-
},
35151-
{
35152-
"cell_type": "code",
35153-
"execution_count": null,
35154-
"metadata": {},
35155-
"outputs": [],
35156-
"source": []
3515735146
}
3515835147
],
3515935148
"metadata": {
@@ -35172,7 +35161,7 @@
3517235161
"name": "python",
3517335162
"nbconvert_exporter": "python",
3517435163
"pygments_lexer": "ipython3",
35175-
"version": "3.11.5"
35164+
"version": "3.9.20"
3517635165
}
3517735166
},
3517835167
"nbformat": 4,

tutorials/03_Multivariate_Distributions.ipynb

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48080,13 +48080,6 @@
4808048080
"source": [
4808148081
"scatter_3d(direct_samples, title='D-Vine')"
4808248082
]
48083-
},
48084-
{
48085-
"cell_type": "code",
48086-
"execution_count": null,
48087-
"metadata": {},
48088-
"outputs": [],
48089-
"source": []
4809048083
}
4809148084
],
4809248085
"metadata": {
@@ -48105,7 +48098,7 @@
4810548098
"name": "python",
4810648099
"nbconvert_exporter": "python",
4810748100
"pygments_lexer": "ipython3",
48108-
"version": "3.11.5"
48101+
"version": "3.9.20"
4810948102
}
4811048103
},
4811148104
"nbformat": 4,

0 commit comments

Comments
 (0)