Skip to content

Commit 25a6ad4

Browse files
authored
Merge pull request #572 from maciejkula/v1_16
Bump version to v1.16.
2 parents 445a91c + 1022acd commit 25a6ad4

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

changelog.md

Lines changed: 9 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 5 additions & 1 deletion
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,13 @@ def run(self):
157158
"win"
158159
)
159160

161+
long_description = pathlib.Path(__file__).parent.joinpath("README.md").read_text()
162+
160163
setup(
161164
name="lightfm",
162165
version=version,
163166
description="LightFM recommendation model",
167+
long_description=long_description,
164168
url="https://github.com/lyst/lightfm",
165169
download_url="https://github.com/lyst/lightfm/tarball/{}".format(version),
166170
packages=["lightfm", "lightfm.datasets"],
@@ -172,7 +176,7 @@ def run(self):
172176
author_email="data@ly.st",
173177
license="MIT",
174178
classifiers=[
175-
"Development Status :: 3 - Alpha",
179+
"Development Status :: 5 - Production/Stable",
176180
"License :: OSI Approved :: MIT License",
177181
"Topic :: Scientific/Engineering :: Artificial Intelligence",
178182
],

0 commit comments

Comments
 (0)