Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

apd

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apd - pypi Package Compare versions

Comparing version
0.8.0
to
0.8.1
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: apd
Version: 0.8.0
Version: 0.8.1
Summary: Tool to access the Analysis production Data

@@ -5,0 +5,0 @@ License: BSD-3-Clause

Metadata-Version: 2.1
Name: apd
Version: 0.8.0
Version: 0.8.1
Summary: Tool to access the Analysis production Data

@@ -5,0 +5,0 @@ License: BSD-3-Clause

@@ -45,3 +45,3 @@ ###############################################################################

timeout=10,
headers={"Authorization": f"Bearer {os.environ['CI_JOB_JWT_V2']}"},
headers={"Authorization": f"Bearer {os.environ['LBAP_CI_JOB_JWT']}"},
)

@@ -48,0 +48,0 @@ if not r.ok:

@@ -95,3 +95,3 @@ ###############################################################################

"""Login to the Analysis Productions endpoint"""
if "CI_JOB_JWT_V2" in os.environ and "LBAP_TOKENS_FILE" not in os.environ:
if "LBAP_CI_JOB_JWT" in os.environ and "LBAP_TOKENS_FILE" not in os.environ:
_, token_file = tempfile.mkstemp(prefix="apd-", suffix=".json")

@@ -110,3 +110,3 @@ os.environ["LBAP_TOKENS_FILE"] = token_file

# Ensure GitLab CI jobs exit if something goes wrong
if "CI_JOB_JWT_V2" in os.environ:
if "LBAP_CI_JOB_JWT" in os.environ:
print("exit 42")

@@ -113,0 +113,0 @@ raise