Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan de Lara authored Mar 21, 2019
2 parents 0674bca + 9fb1129 commit 230f965
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ ENV/

# Pypi
/dist
=======

# datasets folder
data/

Expand Down
8 changes: 6 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
History
=======

0.1.0 (2018-05-29)
0.2.0 (2018-12-19)
------------------

* First release on PyPI.
* Second release on PyPI.
* Added Hierarchical clustering
* Added Louvain clustering
* Added Forward-backward embedding
* Added basic loaders and toy graphs
20 changes: 11 additions & 9 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
pip==18.1
pip==19.0.3
bumpversion==0.5.3
wheel==0.32.3
wheel==0.33.1
watchdog==0.9.0
flake8==3.6.0
tox==3.6.0
coverage==4.5.2
Sphinx==1.8.2
twine==1.12.1
flake8==3.7.7
tox==3.7.0
Sphinx==1.8.5
coverage==4.5.3
twine==1.13.0


pytest-runner==4.4
pytest==4.3.1

pytest==4.0.2
pytest-runner==4.2
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.2.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion sknetwork/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from sknetwork.loader import *
from sknetwork.clustering import *
from sknetwork.hierarchy import *
from sknetwork.embedding import *
from sknetwork.embedding import *
Empty file.
7 changes: 1 addition & 6 deletions sknetwork/toy_graphs/test/test_graph_imports.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
# -*- coding: utf-8 -*-
# test for graph_data.py
#
# Copyright 2018 Scikit-network Developers.
# Copyright 2018 Quentin Lutz <[email protected]>, Nathan de Lara <[email protected]>
#
# This file is part of Scikit-network.
# authors: Quentin Lutz <[email protected]>, Nathan de Lara <[email protected]>

import unittest
from sknetwork.toy_graphs.graph_data import karate_club_graph, star_wars_villains_graph


class TestGraphImport(unittest.TestCase):

def setUp(self):
Expand Down

0 comments on commit 230f965

Please sign in to comment.