Skip to content

Commit 991b046

Browse files
author
Dr. X
authored
Merge pull request #238 from networktocode/release-0.20-new
release 0.20.1
2 parents 1e57e51 + b992d0a commit 991b046

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/)
1212
### Fixed
1313
### Security
1414

15+
## [0.20.1]
16+
17+
### Fixed
18+
19+
- Tox pipeline black linting issue.
20+
1521
## [0.20.0]
1622

1723
### Fixed

pyntc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
except ImportError:
1212
from ConfigParser import SafeConfigParser
1313

14-
__version__ = "0.20.0"
14+
__version__ = "0.20.1"
1515

1616
LIB_PATH_ENV_VAR = "PYNTC_CONF"
1717
LIB_PATH_DEFAULT = "~/.ntc.conf"

pyntc/devices/f5_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _check_md5sum(self, filename, checksum):
6969
def _file_copy_local_file_exists(filepath):
7070
return os.path.isfile(filepath)
7171

72-
def _file_copy_local_md5(self, filepath, blocksize=2 ** 20):
72+
def _file_copy_local_md5(self, filepath, blocksize=2**20):
7373
if self._file_copy_local_file_exists(filepath):
7474
m = hashlib.md5() # nosec
7575
with open(filepath, "rb") as f:

pyntc/devices/jnpr_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def __init__(self, host, username, password, *args, **kwargs): # noqa: D403
4545
def _file_copy_local_file_exists(self, filepath):
4646
return os.path.isfile(filepath)
4747

48-
def _file_copy_local_md5(self, filepath, blocksize=2 ** 20):
48+
def _file_copy_local_md5(self, filepath, blocksize=2**20):
4949
if self._file_copy_local_file_exists(filepath):
5050
m = hashlib.md5() # nosec
5151
with open(filepath, "rb") as f:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
44

55
[tool.poetry]
66
name = "pyntc"
7-
version = "0.20.0"
7+
version = "0.20.1"
88
description = "SDK to simplify common workflows for Network Devices."
99
authors = ["NTC <[email protected]>"]
1010
readme = "README.md"

0 commit comments

Comments
 (0)