Skip to content

Commit

Permalink
Merge pull request #2 from napalm-automation-community/develop
Browse files Browse the repository at this point in the history
Release 2.0.2
  • Loading branch information
bewing authored Feb 13, 2018
2 parents ef4b27c + b939f4a commit 43db858
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ nosetests.xml
coverage.xml
*,cover
.hypothesis/
report.json

# Translations
*.mo
Expand Down
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
install:
- pip install tox-travis
- pip install coveralls
deploy:
provider: pypi
user: bewing
on:
tags: true
branch: master
password:
secure: B1T2RHXIN3WFu7mdlz4ZkRuCIfuitlL9NTP4/Ia9zCxBb96fu8Rfa3TU3NoRGzXN0iOf47jm9AYeuj05CNCMOii0lBfapGeKlyucapThdtxpkmX5TLr80TI+QWUtj4n1JSWGFZke4TUEUSr4MC7/9FAmPdLJTIwhmXjImgWnjWMXgSpEAbSEvXJWDM1TajKRF5SgCfP+GYN7jJTTAHOJ3oZSLocR6SDm2D7LWc8p3EksPurXrIytAyPkVWkvgrl2IFVYxjXNjDNiALzi4JIDY0JdW89z9WLI8zbHLCjyg5WLSPUGcL/4IEjcyfQZ8sEIKn4/knEumqIVgvoLmwWElg/GqJ6WhS/yRwK3ULplles+iSZO1s26NG8uOB7ZRONsnSSz+/CJxAzUt/ASy6AbiFt0waX/U+xX1/smWCgWDCJENYELH41KgA/zf1kwfThG8JEv7si9/NoTamOggHIihRbAcS1jzc3BXmP+gTFT/nunePVjkyO9O+EMy9ZuI65o/Tw9nGkOUlafmqbM879zPM6fwMdYw+3UoS11OJ/ZtP621EW/lH/Xaww/G5ps25sxa6c2/S7j7q0lcnfSzdTA6S3hM363cDKVFr3hJ0dq596G+8L95SUpwOXxo3twFJmnog96IXLezMuSqdHhIuc7ylC/AwFInJimKbGerqa2cws=
script:
- tox
after_success:
- coveralls
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
[![PyPI](https://img.shields.io/pypi/v/napalm-mos.svg)](https://pypi.python.org/pypi/napalm-mos)
[![PyPI](https://img.shields.io/pypi/dm/napalm-mos.svg)](https://pypi.python.org/pypi/napalm-mos)
[![Build Status](https://travis-ci.org/napalm-automation/napalm-mos.svg?branch=master)](https://travis-ci.org/napalm-automation/napalm-mos)
[![Coverage Status](https://coveralls.io/repos/github/napalm-automation/napalm-mos/badge.svg?branch=master)](https://coveralls.io/github/napalm-automation/napalm-mos)
[![Build Status](https://travis-ci.org/napalm-automation-community/napalm-mos.svg?branch=master)](https://travis-ci.org/napalm-automation-community/napalm-mos)
[![Coverage Status](https://coveralls.io/repos/github/napalm-automation-community/napalm-mos/badge.svg?branch=master)](https://coveralls.io/github/napalm-automation-community/napalm-mos)


# napalm-mos

This repository is a candidate for addition to the Github napalm-automation project,
pending internal business and legal discussion.
2 changes: 1 addition & 1 deletion napalm_mos/mos.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def _load_config(self, filename=None, config=None, replace=False):
config.insert(0, "configure")
config = "\n".join(config) + "\n"
else:
config = "configure\n" + config
config = "configure\n" + config + "\n"
fd.write(config.encode('utf-8'))
fd.flush()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="napalm-mos",
version="2.0.1",
version="2.0.2",
packages=find_packages(),
author="Benny Holmgren, Brandon Ewing",
author_email="[email protected], [email protected]",
Expand Down

0 comments on commit 43db858

Please sign in to comment.