File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 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 ) ).
Original file line number Diff line number Diff line change 33except NameError :
44 from .lightfm import LightFM
55
6- __version__ = "1.15 "
6+ __version__ = "1.16 "
77
88__all__ = ["LightFM" , "datasets" , "evaluation" ]
Original file line number Diff line number Diff line change 11# coding=utf-8
22import os
3+ import pathlib
34import subprocess
45import sys
56import 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+
160163setup (
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 ],
You can’t perform that action at this time.
0 commit comments