Bump minor version and use NAPALM 3

This commit is contained in:
Brad Walker 2020-05-16 10:26:56 -06:00
parent 2bdb499b14
commit d2d0f2723f
5 changed files with 9 additions and 12 deletions

View File

@ -1,8 +1,8 @@
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
install:
- pip install tox-travis
- pip install coveralls

View File

@ -1,4 +1,3 @@
future
coveralls
pytest
pytest-cov

View File

@ -1,4 +1,4 @@
napalm==2.*
napalm>=3.0
paramiko
netmiko>=1.1.0
netmiko>=3.1.0
vyattaconfparser

View File

@ -11,7 +11,7 @@ __author__ = 'Piotr Pieprzycki <piotr.pieprzycki@dreamlab.pl>'
setup(
name="napalm-vyos",
version="0.1.6",
version="0.2.0",
packages=find_packages(),
author="Piotr Pieprzycki",
author_email="piotr.pieprzycki@dreamlab.pl",
@ -19,12 +19,10 @@ setup(
classifiers=[
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
],

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,py35
envlist = py36,py37,py38
[testenv]
deps =