Skip to content

Commit cf07419

Browse files
committed
0.55.6
1 parent 9ec4854 commit cf07419

35 files changed

Lines changed: 364 additions & 111 deletions

.DS_Store

2 KB
Binary file not shown.

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/python_package.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generate_from_openapi.py

100644100755
File mode changed.

mist_openapi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 4ee057410f45f51b85af299a2c99e963ea331c44
1+
Subproject commit 9635b1dd705fad07553d1ab8a7630a4276f9caea

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "mistapi"
10-
version = "0.54.4"
10+
version = "0.55.6"
1111
authors = [{name="Thomas Munzer", email="tmunzer@juniper.net"}]
1212
description = "Python package to simplify the Mist System APIs usage"
1313
keywords = ["Mist", "Juniper", "API"]
14-
license = {text = "MIT"}
14+
license = {text = "MIT License"}
1515
readme = "README.md"
1616
requires-python = ">=3.10"
1717
classifiers = [
@@ -24,9 +24,9 @@ classifiers = [
2424
"Development Status :: 4 - Beta"
2525
]
2626
dependencies = [
27+
'python-dotenv',
2728
'requests > 2.24',
2829
'tabulate > 0.8.5',
29-
'python-dotenv < 0.17',
3030
'deprecation > 2.0.0'
3131
]
3232

src/mistapi/__api_session.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,7 @@ def create_api_token(self, token_name: str = None) -> APIResponse:
724724
api response for the POST /api/v1/self/apitokens request
725725
"""
726726
logger.debug("apisession:create_api_token")
727+
body={}
727728
if token_name:
728729
body = {"name": token_name}
729730
logger.info(

src/mistapi/__version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.54.4"
1+
__version__ = "0.55.6"
22
__author__ = "Thomas Munzer <tmunzer@juniper.net>"

0 commit comments

Comments
 (0)