Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Py3 support #1

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ omit =
setup.py
rdyn/__main__.py
rdyn/test/*
rdyn/alg/RDyn.py

[report]
exclude_lines =
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

before_install:
- pip install pytest pytest-cov
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ In order to generate a dynamic graph of 1000 nodes for 1000 iterations applying
```bash
python rdyn 1000 1000 True
```
The minimum number of nodes allowed is 1000.

## As python library

Expand Down Expand Up @@ -149,5 +148,6 @@ RDyn is written in python and requires the following package to run:
- python>=2.7.11
- networkx==1.11
- numpy==1.11.1
- scipy==0.17.0
- tqdm
- six
- future
2 changes: 1 addition & 1 deletion rdyn/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from rdyn.alg.RDyn import RDyn
from rdyn.alg.RDyn_v2 import RDynV2 as RDyn
2 changes: 1 addition & 1 deletion rdyn/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from rdyn.alg.RDyn import main
from rdyn.alg.RDyn_v2 import main

main()
Loading