Skip to content

Commit 4f5d242

Browse files
committed
Fix version referencing error
1 parent 29129f4 commit 4f5d242

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from sysconfig import get_platform
33
import platform
44
import os
5-
from src.release.version import SDK_VERSION
65

76
try:
87
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
@@ -44,7 +43,7 @@ def get_shared_library_data_to_include():
4443

4544
setup(
4645
name="onepassword",
47-
version=SDK_VERSION,
46+
version="0.1.0-beta.12",
4847
author="1Password",
4948
description="The 1Password Python SDK offers programmatic read access to your secrets in 1Password in an interface native to Python.",
5049
url="https://github.com/1Password/onepassword-sdk-python",

src/onepassword/defaults.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import platform
2-
from src.release.version import SDK_BUILD_NUMBER
32

43
SDK_LANGUAGE = "Python"
5-
SDK_VERSION = SDK_BUILD_NUMBER
4+
SDK_VERSION = "0010012"
65
DEFAULT_INTEGRATION_NAME = "Unknown"
76
DEFAULT_INTEGRATION_VERSION = "Unknown"
87
DEFAULT_REQUEST_LIBRARY = "net/http"

0 commit comments

Comments
 (0)