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

gigantum

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gigantum - npm Package Compare versions

Comparing version
1.1.2
to
1.1.3
+1
-1
gigantum.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: gigantum
Version: 1.1.2
Version: 1.1.3
Summary: CLI for the Gigantum Platform

@@ -5,0 +5,0 @@ Home-page: https://github.com/gigantum/gigantum-cli

@@ -1,2 +0,2 @@

docker==4.2.1
docker==4.3.1
six==1.12.0
# Gigantum CLI Version
__version__ = "1.1.2"
__version__ = "1.1.3"

@@ -16,3 +16,11 @@ import sys

# Temporary fix due to docker 2.5.0.0 and docker-py failing when container doesn't exist
# See https://github.com/docker/docker-py/issues/2696
if platform.system() == 'Windows':
from pywintypes import error as TempDockerError
else:
class TempDockerError(OSError):
pass
def _cleanup_containers() -> None:

@@ -45,2 +53,6 @@ """Method to clean up gigantum managed containers, stopping if needed.

pass
except (requests.exceptions.ChunkedEncodingError, TempDockerError):
# Temporary fix due to docker 2.5.0.0 and docker-py failing when container doesn't exist
# See https://github.com/docker/docker-py/issues/2696
pass

@@ -55,2 +67,6 @@ try:

pass
except (requests.exceptions.ChunkedEncodingError, TempDockerError):
# Temporary fix due to docker 2.5.0.0 and docker-py failing when container doesn't exist
# See https://github.com/docker/docker-py/issues/2696
pass

@@ -57,0 +73,0 @@

Metadata-Version: 2.1
Name: gigantum
Version: 1.1.2
Version: 1.1.3
Summary: CLI for the Gigantum Platform

@@ -5,0 +5,0 @@ Home-page: https://github.com/gigantum/gigantum-cli

# docker currently mandates a specific version range for requests (which we use)
# Please ensure that requests remains required if you bump the docker version!
docker==4.2.1
docker==4.3.1
six==1.12.0