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

cppython

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cppython - pypi Package Compare versions

Comparing version
0.7.1.dev9
to
0.7.1.dev10
+1
-3
cppython/console/interface.py

@@ -11,3 +11,2 @@ """A click CLI for CPPython interfacing

Interface,
InterfaceConfiguration,
ProjectConfiguration,

@@ -51,4 +50,3 @@ ProviderDataT,

configuration = InterfaceConfiguration()
self.interface = ConsoleInterface(configuration)
self.interface = ConsoleInterface()

@@ -55,0 +53,0 @@ plugin_builder = PluginBuilder("version_control", getLogger())

Metadata-Version: 2.1
Name: cppython
Version: 0.7.1.dev9
Version: 0.7.1.dev10
Summary: A Python management solution for C++ dependencies

@@ -5,0 +5,0 @@ License: MIT

@@ -19,3 +19,3 @@ [project]

]
version = "0.7.1.dev9"
version = "0.7.1.dev10"

@@ -22,0 +22,0 @@ [project.license-files]

@@ -5,3 +5,2 @@ """Test the integrations related to the internal interface implementation and the 'Interface' interface itself

import pytest
from cppython_core.schema import InterfaceConfiguration
from pytest_cppython.plugin import InterfaceIntegrationTests

@@ -16,5 +15,3 @@

@pytest.fixture(name="interface")
def fixture_interface(
self, interface_type: type[ConsoleInterface], interface_configuration: InterfaceConfiguration
) -> ConsoleInterface:
def fixture_interface(self, interface_type: type[ConsoleInterface]) -> ConsoleInterface:
"""Override of the plugin provided interface fixture.

@@ -24,3 +21,2 @@

interface_type: The input interface type
interface_configuration: Interface configuration for construction

@@ -30,3 +26,2 @@ Returns:

"""
configuration = InterfaceConfiguration()
return ConsoleInterface(configuration)
return ConsoleInterface()