Skip to content

Commit

Permalink
Merged from snappi/main.
Browse files Browse the repository at this point in the history
  • Loading branch information
apratimmukherjee committed Feb 2, 2024
2 parents 347dad0 + 9e28dd7 commit a285ed9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gosnappi/gosnappi.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ type Api interface {

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

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


class Version:
models_version = "0.13.7"
version = "0.13.7"
models_version = "1.0.0"
version = "1.0.0"
package_name = "snappi"
protobuf_name = "otg"
go_package_name = "gosnappi"

0 comments on commit a285ed9

Please sign in to comment.