Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
# -*- coding: utf-8 -*- # Copyright (c) 2015 - 2025 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing the pip configuration page. """ from eric7 import Preferences from eric7.PipInterface.Pip import Pip from .ConfigurationPageBase import ConfigurationPageBase from .Ui_PipPage import Ui_PipPage class PipPage(ConfigurationPageBase, Ui_PipPage): """ Class implementing the pip configuration page. """ def __init__(self): """ Constructor """ super().__init__() self.setupUi(self) self.setObjectName("PipPage") self.indexLabel.setText( self.tr( "<b>Note:</b> Leave empty to use the default index URL (" '<a href="{0}">{0}</a>).' ).format(Pip.DefaultPyPiUrl) ) self.safetyDbMirrorLabel.setText( self.tr( "<b>Note:</b> Leave empty to use the default Safety DB URL ({0})." ).format(Preferences.Prefs.pipDefaults["VulnerabilityDbMirror"]) ) # set initial values self.indexEdit.setText(Preferences.getPip("PipSearchIndex")) self.vulnerabilityGroup.setChecked( Preferences.getPip("VulnerabilityCheckEnabled") ) safetyDbUrl = Preferences.getPip("VulnerabilityDbMirror") if safetyDbUrl == Preferences.Prefs.pipDefaults["VulnerabilityDbMirror"]: safetyDbUrl = "" self.safetyDbMirrorEdit.setText(safetyDbUrl) self.validitySpinBox.setValue( Preferences.getPip("VulnerabilityDbCacheValidity") // 3600 ) # seconds converted to hours self.noGlobalsCheckBox.setChecked( Preferences.getPip("ExcludeGlobalEnvironments") ) self.noCondaCheckBox.setChecked(Preferences.getPip("ExcludeCondaEnvironments")) self.initColour( "DependencyHighlightColor", self.searchMarkerColourButton, Preferences.getPip, ) def save(self): """ Public slot to save the pip configuration. """ safetyDbUrl = self.safetyDbMirrorEdit.text().strip() if not safetyDbUrl: safetyDbUrl = Preferences.Prefs.pipDefaults["VulnerabilityDbMirror"] safetyDbUrl = safetyDbUrl.replace("\\", "/") if not safetyDbUrl.endswith("/"): safetyDbUrl += "/" Preferences.setPip("PipSearchIndex", self.indexEdit.text().strip()) Preferences.setPip( "VulnerabilityCheckEnabled", self.vulnerabilityGroup.isChecked() ) Preferences.setPip("VulnerabilityDbMirror", safetyDbUrl) Preferences.setPip( "VulnerabilityDbCacheValidity", self.validitySpinBox.value() * 3600 ) # hours converted to seconds Preferences.setPip( "ExcludeGlobalEnvironments", self.noGlobalsCheckBox.isChecked() ) Preferences.setPip("ExcludeCondaEnvironments", self.noCondaCheckBox.isChecked()) self.saveColours(Preferences.setPip) def create(_dlg): """ Module function to create the configuration page. @param _dlg reference to the configuration dialog (unused) @type ConfigurationDialog @return reference to the instantiated page @rtype ConfigurationPageBase """ page = PipPage() return page