Skip to content

Commit e43ebdd

Browse files
committed
Release v1.13.2
1 parent 9d54e0b commit e43ebdd

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
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__ = '1.13.1'
26+
__version__ = '1.13.2'

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = '1.13'
2828
# The full version, including alpha/beta/rc tags
29-
release = '1.13.1'
29+
release = '1.13.2'
3030

3131

3232
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@
1818
import glob
1919
from setuptools import Extension, setup, find_packages
2020

21+
22+
"""
23+
Release instruction:
24+
- Check that tests run correctly with all CI tools.
25+
- Change __version__ in setup.py, cornac/__init__.py, docs/source/conf.py.
26+
- Commit and release a version on GitHub, Actions will be triggered to build and upload to PyPI.
27+
- Update conda-forge feedstock with new version and SHA256 hash of the new .tar.gz archive on PyPI (optional), the conda-forge bot will detect a new version and create PR after a while.
28+
- Check on https://anaconda.org/conda-forge/cornac that new version is available for all platforms.
29+
"""
30+
31+
2132
try:
2233
import numpy as np
2334
except ImportError:
@@ -277,7 +288,7 @@ def extract_gcc_binaries():
277288

278289
setup(
279290
name="cornac",
280-
version="1.13.1",
291+
version="1.13.2",
281292
description="A Comparative Framework for Multimodal Recommender Systems",
282293
long_description=long_description,
283294
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)