Skip to content

Commit 708741d

Browse files
committed
Release v2.3.3
1 parent 9c7cb97 commit 708741d

File tree

3 files changed

+27
-26
lines changed

3 files changed

+27
-26
lines changed

cornac/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
# Also importable from root
2424
from .experiment import Experiment
2525

26-
__version__ = '2.3.2'
26+
__version__ = "2.3.3"

docs/source/conf.py

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,20 @@
1212
#
1313
import os
1414
import sys
15-
sys.path.append(os.path.abspath('../..'))
15+
16+
sys.path.append(os.path.abspath("../.."))
1617

1718

1819
# -- Project information -----------------------------------------------------
1920

20-
project = 'Cornac'
21-
copyright = '2023, Preferred.AI'
22-
author = 'Preferred.AI'
21+
project = "Cornac"
22+
copyright = "2023, Preferred.AI"
23+
author = "Preferred.AI"
2324

2425
# The short X.Y version
25-
version = '2.3'
26+
version = "2.3"
2627
# The full version, including alpha/beta/rc tags
27-
release = '2.3.2'
28+
release = "2.3.3"
2829

2930

3031
# -- General configuration ---------------------------------------------------
@@ -33,36 +34,36 @@
3334
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3435
# ones.
3536
extensions = [
36-
'sphinx.ext.autodoc',
37-
'sphinx.ext.intersphinx',
38-
'sphinx.ext.ifconfig',
39-
'sphinx.ext.viewcode',
40-
'sphinx.ext.autosummary',
41-
'sphinx.ext.doctest',
42-
'sphinx.ext.todo',
43-
'sphinx.ext.coverage',
44-
'sphinx.ext.mathjax',
45-
'sphinx.ext.napoleon',
46-
'sphinx_design',
47-
'myst_parser',
48-
'sphinx_copybutton'
37+
"sphinx.ext.autodoc",
38+
"sphinx.ext.intersphinx",
39+
"sphinx.ext.ifconfig",
40+
"sphinx.ext.viewcode",
41+
"sphinx.ext.autosummary",
42+
"sphinx.ext.doctest",
43+
"sphinx.ext.todo",
44+
"sphinx.ext.coverage",
45+
"sphinx.ext.mathjax",
46+
"sphinx.ext.napoleon",
47+
"sphinx_design",
48+
"myst_parser",
49+
"sphinx_copybutton",
4950
]
5051

5152
# Add any paths that contain templates here, relative to this directory.
52-
templates_path = ['_templates']
53+
templates_path = ["_templates"]
5354

5455
# List of patterns, relative to source directory, that match files and
5556
# directories to ignore when looking for source files.
5657
# This pattern also affects html_static_path and html_extra_path.
57-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
58+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
5859

5960

6061
# -- Options for HTML output -------------------------------------------------
6162

6263
# The theme to use for HTML and HTML Help pages. See the documentation for
6364
# a list of builtin themes.
6465
#
65-
html_theme = 'pydata_sphinx_theme'
66+
html_theme = "pydata_sphinx_theme"
6667

6768
# Add any paths that contain custom static files (such as style sheets) here,
6869
# relative to this directory. They are copied after the builtin static files,
@@ -104,7 +105,7 @@
104105
"**": ["page-toc", "sourcelink"],
105106
"index": [],
106107
"models/index": [],
107-
}
108+
},
108109
}
109110

110111
html_sidebars = {
@@ -115,4 +116,4 @@
115116
# -- Options for intersphinx extension ---------------------------------------
116117

117118
# Example configuration for intersphinx: refer to the Python standard library.
118-
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
119+
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010

1111
[project]
1212
name = "cornac"
13-
version = "2.3.2"
13+
version = "2.3.3"
1414
description = "A Comparative Framework for Multimodal Recommender Systems"
1515
readme = "README.md"
1616
dependencies = [

0 commit comments

Comments
 (0)