Skip to content

Commit

Permalink
update CHANGELOG.md and other file before release
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug committed Sep 30, 2017
1 parent 632fd5c commit 267b44a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
Current
=======

VERSION 1.0.5 (in development)
==============================

VERSION 1.0.4
=============

Date: 20/09/17

Enhancements
------------

* Added possibility to load a dataset from a pandas dataframe
* Added Precision and Recall examples to the FAQ (Maher Malaeb)
* Added a kNN algorithm with normalization by z-score (Hengji Liu)
* kNN algorithms now use heapq instead of list.sort() (computation time
enhancement for large datasets).

Fixes
-----

* Prediciont.__str__() when r_ui is None
* GridSearch for dict parameters is now working as expected

VERSION 1.0.3
=============
Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)


### Temporary headline:

The [Mangaki recommendation challenge](http://research.mangaki.fr/2017/07/18/mangaki-data-challenge-en/) is on! Have fun using Surprise!


Surprise
========

Expand Down
3 changes: 0 additions & 3 deletions examples/load_from_dataframe.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
This module descibes how to load a dataset from a pandas dataframe.
WARNING: this feature is only available in the latest version, so if you have
installed surprise with pip this is not available. Please clone the repo and
install it (see guidelines on the README).
"""

from __future__ import (absolute_import, division, print_function,
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"""
Release instruction:
mktmpenv (Python version should not matter)
Remove 'WARNING...' (load_from_dataframe.py)
pip install numpy cython pypandoc
pip install numpy cython pypandoc twine
python setup.py sdist
twine upload dist/blabla.tar.gz [-r testpypi]
"""
Expand All @@ -24,7 +23,7 @@
else:
USE_CYTHON = True

__version__ = '1.0.3'
__version__ = '1.0.4'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 267b44a

Please sign in to comment.