Skip to content

Commit 6ad3186

Browse files
committed
Release 1.0.1
1 parent d060ae1 commit 6ad3186

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

docs/admin/release_notes/version_1_0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# v1.0 Release Notes
22

3+
## [1.0.1] 11-2023
4+
5+
### Fixed
6+
- [300](https://github.com/networktocode/pyntc/pull/300) Fixed default port value handling for `aireos, asa, ios` drivers, dropped python 3.7 support, updated pyeapi dependency, refreshed poetry dependencies.
7+
38
## [1.0.0] 04-2023
49

510
### Added

pyntc/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import os
44
import warnings
5+
from importlib import metadata
56

67
from .devices import supported_devices
78
from .errors import ConfFileNotFoundError, DeviceNameNotFoundError, UnsupportedDeviceError
@@ -11,11 +12,6 @@
1112
except ImportError:
1213
from ConfigParser import SafeConfigParser
1314

14-
try:
15-
from importlib import metadata
16-
except ImportError:
17-
# Python version < 3.8
18-
import importlib_metadata as metadata
1915

2016
__version__ = metadata.version(__name__)
2117

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyntc"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "SDK to simplify common workflows for Network Devices."
55
authors = ["Network to Code, LLC <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)