Skip to content

Commit 6a68e35

Browse files
committed
Bump version to v1.16.
Update changelong. Add long description to setup.py.
1 parent 445a91c commit 6a68e35

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.16][2020-11-27]
4+
5+
### Addded
6+
- Set the `LIGHTFM_NO_CFLAGS` environment variable when building LightFM to prevent it from setting
7+
`-ffast-math` or `-march=native` compiler flags.
8+
9+
### Changed
10+
- `predict` now returns float32 predictions.
11+
312
## [1.15][2018-05-26]
413
### Added
514
- Added a check that there is no overlap between test and train in `predict_ranks` (thanks to [@artdgn](https://github.com/artdgn)).

lightfm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
except NameError:
44
from .lightfm import LightFM
55

6-
__version__ = "1.15"
6+
__version__ = "1.16"
77

88
__all__ = ["LightFM", "datasets", "evaluation"]

setup.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# coding=utf-8
22
import os
3+
import pathlib
34
import subprocess
45
import sys
56
import textwrap
@@ -157,10 +158,15 @@ def run(self):
157158
"win"
158159
)
159160

161+
long_description = (pathlib.Path(__file__).parent
162+
.joinpath("README.md")
163+
.read_text())
164+
160165
setup(
161166
name="lightfm",
162167
version=version,
163168
description="LightFM recommendation model",
169+
long_description=long_description,
164170
url="https://github.com/lyst/lightfm",
165171
download_url="https://github.com/lyst/lightfm/tarball/{}".format(version),
166172
packages=["lightfm", "lightfm.datasets"],
@@ -172,7 +178,7 @@ def run(self):
172178
author_email="[email protected]",
173179
license="MIT",
174180
classifiers=[
175-
"Development Status :: 3 - Alpha",
181+
"Development Status :: 5 - Production/Stable",
176182
"License :: OSI Approved :: MIT License",
177183
"Topic :: Scientific/Engineering :: Artificial Intelligence",
178184
],

0 commit comments

Comments
 (0)