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

Update setup.py install_requires from gtextfsm->textfsm #150

Closed
wants to merge 5 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
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ install:
- python setup.py install
- pip install -r requirements.txt
- cd ..
- wget https://pypi.python.org/packages/source/g/gtextfsm/gtextfsm-0.2.1.tar.gz
- tar -xzvf gtextfsm-0.2.1.tar.gz
- cd gtextfsm-0.2.1
- python setup.py install
- cd ..
- export PYTHONPATH=$PYTHONPATH:/home/travis/build/networktocode/ntc-templates/gtextfsm-0.2.1/textfsm
- pip install textfsm
- pip install ansible==1.9.2
- pip install terminal
- git clone https://github.com/networktocode/ntc-ansible.git
Expand Down
2 changes: 1 addition & 1 deletion ntc_templates/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""ntc_templates - Parse raw output from network devices and return structured data."""

__version__ = '1.0.0'
__version__ = '1.0.1'
4 changes: 2 additions & 2 deletions ntc_templates/parse.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""ntc_templates.parse."""
import os
import sys
from textfsm.clitable import CliTableError
import textfsm.clitable as clitable
from clitable import CliTableError
import clitable as clitable


def _get_template_dir():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
'author_email': '[email protected]',
'url': 'https://github.com/networktocode/ntc-templates',
'install_requires': [
'gtextfsm',
'textfsm',
'terminal',
],
'classifiers': ['Development Status :: 4 - Beta',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[tox]
tox]
envlist = py27
skipsdist=true

Expand All @@ -11,7 +11,7 @@ deps =
pytest
PyYAML
netmiko
gtextfsm
textfsm
ansible==1.9.2
terminal

Expand Down