Skip to content

Commit

Permalink
Merge pull request #572 from maciejkula/v1_16
Browse files Browse the repository at this point in the history
Bump version to v1.16.
  • Loading branch information
maciejkula committed Nov 27, 2020
2 parents 445a91c + 1022acd commit 25a6ad4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [1.16][2020-11-27]

### Addded
- Set the `LIGHTFM_NO_CFLAGS` environment variable when building LightFM to prevent it from setting
`-ffast-math` or `-march=native` compiler flags.

### Changed
- `predict` now returns float32 predictions.

## [1.15][2018-05-26]
### Added
- Added a check that there is no overlap between test and train in `predict_ranks` (thanks to [@artdgn](https://github.com/artdgn)).
Expand Down
2 changes: 1 addition & 1 deletion lightfm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
except NameError:
from .lightfm import LightFM

__version__ = "1.15"
__version__ = "1.16"

__all__ = ["LightFM", "datasets", "evaluation"]
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# coding=utf-8
import os
import pathlib
import subprocess
import sys
import textwrap
Expand Down Expand Up @@ -157,10 +158,13 @@ def run(self):
"win"
)

long_description = pathlib.Path(__file__).parent.joinpath("README.md").read_text()

setup(
name="lightfm",
version=version,
description="LightFM recommendation model",
long_description=long_description,
url="https://github.com/lyst/lightfm",
download_url="https://github.com/lyst/lightfm/tarball/{}".format(version),
packages=["lightfm", "lightfm.datasets"],
Expand All @@ -172,7 +176,7 @@ def run(self):
author_email="data@ly.st",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
Expand Down

0 comments on commit 25a6ad4

Please sign in to comment.