Skip to content

Commit cf44d66

Browse files
authored
Merge pull request #6 from yeger00/release
Release
2 parents 2de2baa + 1becff3 commit cf44d66

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

.travis.yml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
dist: xenial # required for Python >= 3.7
1+
dist: xenial
22
language: python
33
python:
4-
- "2.7"
5-
- "3.6"
6-
- "3.7"
7-
# command to install dependencies
4+
- '2.7'
5+
- '3.6'
6+
- '3.7'
87
install:
9-
- pip install -r requirements.txt
10-
# command to run tests
8+
- pip install -r requirements.txt
119
script:
12-
- pytest
13-
script:
14-
- pylint --rcfile=.pylintrc graphdiff/graphdiff.py
10+
- pylint --rcfile=.pylintrc graphdiff/graphdiff.py
11+
deploy:
12+
provider: pypi
13+
user: yeger00@gmail.com
14+
password:
15+
secure: B9TXEl+jBxXZ4pt3OdWcUo3OwSLOG+UlC5VRjtul4Z92IYppIvc38AAjG79faSRPX5weXNEkteZirwlIZHlmGLzZsxAlWHvmtct8Zwh7NqtWXILkhuhmLNY6NdsxwNdvDX25kO14P+G/zcx9floWXetmIRAcbHUuO0cCtoFl+HGOLtZ+klSBknUmOM7bSlDPNgJ0dAK/ArVAEOlN/sZ7zoIJFd+BLmt6HhBnG+hLplIJNpDfN57jbgPbUF3m0XppJIL8os/akAganwuVUgVO3tE4BDn7CgmfPh4AjPCScse9KUmblBp2ZvzEDwLuNHzgXT0+Mmil4boq6H4Ns/yMH7aiIHHKhwpgzHCgnaFmXwAzhAcwsv9qO7+xCCWmfETglN3APHjG73Cf7/LKp33ckKNt46dX2JRZXd6o2zB0l065YLCtAWkor0TtMj3QYttiwL+Odur+tAk3/ME1k9PHmZFWTQQ/GyCl+nAZ7uhmtpCVleJbxSluMjq1Y4cPBIar17oVhUfGcWVZB5HPXk0PJ49e0f7xrI3yw93JknTsbDSpdF3MHekeH0Qe596D1vEaPPjBoE0QLlyYW9yziPeFC1uAA2Pk5mfPwXci3BsY798L0ZxyCIf6XSuHChEffCKDmt9vYy6GNNsFXYNirjMhuTkYipQdUC6j/6ydocdb18o=
16+
on:
17+
tags: true

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,18 @@ Debian / Ubuntu:
99
sudo apt-get install libgraph-easy-perl
1010
```
1111
## Install
12+
13+
### From source
1214
```
1315
git clone https://github.com/yeger00/graph-diff
1416
pip install -e .
1517
```
1618

19+
### From PyPI
20+
```
21+
pip install graphdiff
22+
```
23+
1724
## Generate and view diff
1825
```
1926
cat samples/before.dot | graph-easy --as boxart

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run_tests(self):
2222

2323
setup(
2424
name="graphdiff",
25-
version="0.0.1",
25+
version="0.0.2",
2626
author="Avi Yeger",
2727
author_email="yeger00@gmail.com",
2828
description="",

0 commit comments

Comments
 (0)