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

shutup

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shutup - npm Package Compare versions

Comparing version
0.1.1
to
0.1.2
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: shutup
Version: 0.1.1
Version: 0.1.2
Summary: Stop python warnings, no matter what!

@@ -5,0 +5,0 @@ Author: Fred Israel

[tool.poetry]
name = "shutup"
version = "0.1.1"
version = "0.1.2"
description = "Stop python warnings, no matter what!"

@@ -5,0 +5,0 @@ authors = ["Fred Israel <fredpublico@gmail.com>"]

@@ -12,3 +12,3 @@ # -*- coding: utf-8 -*-

'name': 'shutup',
'version': '0.1.1',
'version': '0.1.2',
'description': 'Stop python warnings, no matter what!',

@@ -15,0 +15,0 @@ 'long_description': None,

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

__version__ = '0.1.1'
from importlib.metadata import version as _version
try: __version__ = _version(__name__)
except Exception: pass

@@ -7,3 +9,3 @@ def please():

def warn(message:str, category:str='', stacklevel:int=1, source:str=''): # need hints to work with pytorch
pass
pass # In the future, we can implement filters here. For now, just mute everything.
warnings.warn = warn