Skip to content

Commit

Permalink
Fix version referencing error
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTitu committed Aug 1, 2024
1 parent 29129f4 commit 4f5d242
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from sysconfig import get_platform
import platform
import os
from src.release.version import SDK_VERSION

try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
Expand Down Expand Up @@ -44,7 +43,7 @@ def get_shared_library_data_to_include():

setup(
name="onepassword",
version=SDK_VERSION,
version="0.1.0-beta.12",
author="1Password",
description="The 1Password Python SDK offers programmatic read access to your secrets in 1Password in an interface native to Python.",
url="https://github.com/1Password/onepassword-sdk-python",
Expand Down
3 changes: 1 addition & 2 deletions src/onepassword/defaults.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import platform
from src.release.version import SDK_BUILD_NUMBER

SDK_LANGUAGE = "Python"
SDK_VERSION = SDK_BUILD_NUMBER
SDK_VERSION = "0010012"
DEFAULT_INTEGRATION_NAME = "Unknown"
DEFAULT_INTEGRATION_VERSION = "Unknown"
DEFAULT_REQUEST_LIBRARY = "net/http"
Expand Down

0 comments on commit 4f5d242

Please sign in to comment.