Skip to content

Commit

Permalink
verify_ssl fix + Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
aaTarek authored and hezanathos committed Jun 9, 2023
1 parent c5cea0a commit c2ef30b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cyberwatch_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ def request(self, **kwargs) -> Generator[requests.models.Response, None, None]:
url=response.links["next"]["url"],
auth=self.__basic_auth(),
params=params,
timeout=self.timeout
timeout=self.timeout,
verify=self.verify_ssl
)
yield response

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='cyberwatch_api',
version='0.1.1',
version='0.2.0',
description='Python Api client for the Cyberwatch software',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit c2ef30b

Please sign in to comment.