You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

fdce

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fdce - pypi Package Compare versions

Comparing version
0.1.0a2
to
0.1.1a0
fdce/_extension/_fdce.cpython-310-x86_64-linux-gnu.so

Sorry, the diff of this file is not supported yet

+3
-13

@@ -13,17 +13,7 @@ import os

# C Extensions
USE_EXTENSIONS = os.getenv("FDCE_EXTENSIONS", None)
extensions = [
Extension("fdce._extension._fdce", ["fdce/_extension/_fdce.c"]),
]
if USE_EXTENSIONS == "1" or USE_EXTENSIONS is None:
USE_EXTENSIONS = True
if USE_EXTENSIONS == "0":
USE_EXTENSIONS = False
extensions = []
if USE_EXTENSIONS:
extensions = [
Extension("fdce._extension._fdce", ["fdce/_extension/_fdce.c"]),
]
class ExtBuilder(build_ext):

@@ -30,0 +20,0 @@ """This class allows C extension building to fail."""

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

__version__ = "0.1.0"
__version__ = "0.1.1"
Metadata-Version: 2.1
Name: fdce
Version: 0.1.0a2
Version: 0.1.1a0
Summary: Finite difference coefficients estimator

@@ -8,9 +8,8 @@ License: MIT

Author-email: jorge.morgadov@gmail.com
Requires-Python: >=3.7,<4.0
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: numpy (>=1.22.0,<2.0.0)
[tool.poetry]
name = "fdce"
version = "0.1.0-alpha.2"
version = "0.1.1-alpha.0"
description = "Finite difference coefficients estimator"
authors = ["Jorge Morgado Vega <jorge.morgadov@gmail.com>"]
license = "MIT"
include = [
{ path = "fdce/_extension/*.so", format = "wheel" }
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
numpy = "^1.22.0"

@@ -22,3 +25,3 @@

[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"