Skip to content

Commit

Permalink
Merge branch 'master' into fix-978
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitin Kr authored Dec 12, 2019
2 parents 7857999 + a34463e commit 49da973
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
10 changes: 10 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Release 2.3.1 - 10 December 2019
### Features Added
- None

### Bugs fixed:
- Handled a check for pending Junos OS or package installation #966
- Fixed MetaPathLoader support only for jnpr.junos* modules #977
- Fixed huge tree XML support #975
- Fixed Junos sax parser issue for filter_xml broken #969

## Release 2.3.0 - 27 September 2019
### Features Added
- TableView extended for vty/cli unstructured command #950
Expand Down
9 changes: 5 additions & 4 deletions lib/jnpr/junos/op/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@

class MetaPathFinder(object):
def find_module(self, fullname, path=None):
mod = fullname.split('.')[-1]
if mod in [os.path.splitext(i)[0] for i in os.listdir(
os.path.dirname(__file__))]:
return MetaPathLoader()
if fullname.startswith('jnpr.junos'):
mod = fullname.split('.')[-1]
if mod in [os.path.splitext(i)[0] for i in os.listdir(
os.path.dirname(__file__))]:
return MetaPathLoader()


class MetaPathLoader(object):
Expand Down
4 changes: 2 additions & 2 deletions lib/jnpr/junos/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION = "2.3.1.dev0"
DATE = "2019-Sep-27"
VERSION = "2.3.2.dev0"
DATE = "2019-Dec-10"

# Augment with the internal version if present
try:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
setup(
name="junos-eznc",
namespace_packages=['jnpr'],
version="2.3.1.dev0",
version="2.3.2.dev0",
author="Jeremy Schulman, Nitin Kumar, Rick Sherman, Stacy Smith",
author_email="[email protected]",
description=("Junos 'EZ' automation for non-programmers"),
Expand Down

0 comments on commit 49da973

Please sign in to comment.