-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,7 +109,7 @@ ENV/ | |
|
||
# Pypi | ||
/dist | ||
======= | ||
|
||
# datasets folder | ||
data/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): | ||
|