Skip to content

Commit 2e735e0

Browse files
committed
Release version 0.5
1 parent b54600f commit 2e735e0

4 files changed

Lines changed: 21 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ after_success: coveralls
1818
deploy:
1919
provider: pypi
2020
user: rafguns
21-
password:
22-
secure: RCP8uJP9y4avKdRC1A5fkQFi00Ssgfn9gwhVpEoDVR0JkaZ+Ei9ZnseTPLbydeFxZmO1FwF7aR8ISdArjjvYxtYWmhjVLtTpkWQKvk/avT5rFNsR33eiZtzCOScJqXtrexF8IlRL4rYEKz2JA+kLnCVrfhTyx8jwdDZccC2bfH8=
21+
password: secure: RCP8uJP9y4avKdRC1A5fkQFi00Ssgfn9gwhVpEoDVR0JkaZ+Ei9ZnseTPLbydeFxZmO1FwF7aR8ISdArjjvYxtYWmhjVLtTpkWQKvk/avT5rFNsR33eiZtzCOScJqXtrexF8IlRL4rYEKz2JA+kLnCVrfhTyx8jwdDZccC2bfH8=
2322
skip_existing: true
2423
on:
2524
tags: true

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Changelog
2+
=========
3+
4+
**Note**: I only started keeping this changelog from version 0.5 onwards.
5+
6+
Version 0.5
7+
-----------
8+
9+
- Python 3.8 officially supported!
10+
11+
- Behind-the-scenes work: testing is now done with pytest and tox, formatting is done by black, and we are based on the latest version of networkx (2.4).
12+
13+
- The Community predictor is now easier to use, also because its optional dependency (`python-louvain <https://github.com/taynaud/python-louvain>`_) is now on PyPI. If you want to use it, install as follows:
14+
15+
$ pip install linkpred[all]
16+
17+
- Some bug fixes.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ While some predictors are fairly straightforward (e.g., if two people have a lar
1919
Installation
2020
------------
2121

22-
**linkpred** (on master) works under Python 3.6 and 3.7. Version 0.4.1 was the last to support versions 3.4 and 3.5.
22+
**linkpred** (v0.5 and later) works under Python 3.6, 3.7, and 3.8. Version 0.4.1 was the last to support versions 3.4 and 3.5.
2323
It depends on:
2424

2525
- matplotlib
@@ -29,7 +29,7 @@ It depends on:
2929
- scipy
3030
- smokesignal
3131

32-
You should be able to install linkpred and its dependencies using pip (``pip install linkpred`` or ``python -m pip install linkpred``). If youdo not yet have Python installed, I recommend starting with `Anaconda <https://www.continuum.io/downloads>`_, which includes optimized versions of packages like numpy.
32+
You should be able to install linkpred and its dependencies using pip (``pip install linkpred`` or ``python -m pip install linkpred``). If you do not yet have Python installed, I recommend starting with `Anaconda <https://www.continuum.io/downloads>`_, which includes optimized versions of packages like numpy. If you want to use the Community predictor, which relies on community structure of the network, make sure you also have the `python-louvain <https://github.com/taynaud/python-louvain>`_ package by installing with ``pip install linkpred[all]``.
3333

3434

3535
Example usage as command-line tool

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name="linkpred",
7-
version="0.4.1",
7+
version="0.5",
88
url="http://github.com/rafguns/linkpred/",
99
license="New BSD License",
1010
author="Raf Guns",

0 commit comments

Comments
 (0)