Skip to content

Commit

Permalink
Update auto generated go snappi
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 20, 2023
1 parent c116432 commit 07644e4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gosnappi/gosnappi.go
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ func (api *gosnappiApi) NewGetVersionResponse() GetVersionResponse {

func (api *gosnappiApi) GetLocalVersion() Version {
if api.versionMeta.localVersion == nil {
api.versionMeta.localVersion = NewVersion().SetApiSpecVersion("0.11.6").SetSdkVersion("0.11.11")
api.versionMeta.localVersion = NewVersion().SetApiSpecVersion("0.11.6").SetSdkVersion("0.11.12")
}

return api.versionMeta.localVersion
Expand Down
14 changes: 8 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
--prefer-binary
requests
protobuf~=3.15.0 ; python_version <= '3.6'
protobuf~=3.20.1 ; python_version > '3.6'
PyYAML
grpcio~=1.44.0 ; python_version > '2.7'
grpcio~=1.35.0 ; python_version == '2.7'
grpcio==1.44.0 ; python_version > '2.7'
grpcio==1.35.0 ; python_version == '2.7'
grpcio-tools==1.44.0 ; python_version > '2.7'
grpcio-tools==1.35.0 ; python_version == '2.7'
protobuf==3.15.0 ; python_version <= '3.6'
protobuf==3.20.1 ; python_version > '3.6'
semantic_version
requests
urllib3
PyYAML
2 changes: 1 addition & 1 deletion snappi/snappi.py
Original file line number Diff line number Diff line change
Expand Up @@ -87030,7 +87030,7 @@ class Api(object):
def __init__(self, **kwargs):
self._version_meta = self.version()
self._version_meta.api_spec_version = "0.11.6"
self._version_meta.sdk_version = "0.11.11"
self._version_meta.sdk_version = "0.11.12"
self._version_check = kwargs.get("version_check")
if self._version_check is None:
self._version_check = False
Expand Down

0 comments on commit 07644e4

Please sign in to comment.