Skip to content

Commit

Permalink
Merge pull request #302 from networktocode/main
Browse files Browse the repository at this point in the history
Main to develop
  • Loading branch information
jeffkala authored Nov 28, 2023
2 parents d060ae1 + 5f263ad commit 2208b8c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 5 additions & 0 deletions docs/admin/release_notes/version_1_0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# v1.0 Release Notes

## [1.0.1] 11-2023

### Fixed
- [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.

## [1.0.0] 04-2023

### Added
Expand Down
6 changes: 1 addition & 5 deletions pyntc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import warnings
from importlib import metadata

from .devices import supported_devices
from .errors import ConfFileNotFoundError, DeviceNameNotFoundError, UnsupportedDeviceError
Expand All @@ -11,11 +12,6 @@
except ImportError:
from ConfigParser import SafeConfigParser

try:
from importlib import metadata
except ImportError:
# Python version < 3.8
import importlib_metadata as metadata

__version__ = metadata.version(__name__)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyntc"
version = "1.0.0"
version = "1.0.1"
description = "SDK to simplify common workflows for Network Devices."
authors = ["Network to Code, LLC <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 2208b8c

Please sign in to comment.