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

objetto

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

objetto - npm Package Compare versions

Comparing version
1.27.0
to
1.28.0
+1
-4
objetto.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: objetto
Version: 1.27.0
Version: 1.28.0
Summary: Object-oriented framework for building smart applications and APIs

@@ -32,5 +32,2 @@ Home-page: https://github.com/brunonicko/objetto

.. image:: https://badge.fury.io/py/objetto.svg
:target: https://pypi.org/project/objetto/
`Objetto` is an opinionated object-oriented framework for building modular applications

@@ -37,0 +34,0 @@ and APIs.

+10
-1

@@ -10,2 +10,4 @@ # -*- coding: utf-8 -*-

from six import raise_from
from ._bases import Base

@@ -233,3 +235,10 @@ from ._constants import BASE_STRING_TYPES

return value
value = int(value)
try:
value = int(value)
except ValueError as e:
try:
value = int(float(value))
except ValueError:
raise_from(e, e)
raise e
if self.minimum is not None and value < self.minimum:

@@ -236,0 +245,0 @@ if self.clamp_minimum:

Metadata-Version: 2.1
Name: objetto
Version: 1.27.0
Version: 1.28.0
Summary: Object-oriented framework for building smart applications and APIs

@@ -32,5 +32,2 @@ Home-page: https://github.com/brunonicko/objetto

.. image:: https://badge.fury.io/py/objetto.svg
:target: https://pypi.org/project/objetto/
`Objetto` is an opinionated object-oriented framework for building modular applications

@@ -37,0 +34,0 @@ and APIs.

@@ -24,5 +24,2 @@ Objetto

.. image:: https://badge.fury.io/py/objetto.svg
:target: https://pypi.org/project/objetto/
`Objetto` is an opinionated object-oriented framework for building modular applications

@@ -29,0 +26,0 @@ and APIs.

@@ -8,3 +8,3 @@ import setuptools

name="objetto",
version="1.27.0",
version="1.28.0",
author="Bruno Nicko",

@@ -11,0 +11,0 @@ author_email="brunonicko@gmail.com",