Pydm

Latest version: v1.27.0

Safety actively analyzes 723576 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 12

2.0

------------------------
PyDM 1.7 is intended to be the final minor version in the 1.0 series. The next non-bugfix release will almost definitely be 2.0, which will be centered around big changes to the flow of data between PyDM plugins and widgets. This will allow us to support sources of _structured data_, where multiple pieces of data are all sent as a single structure. This will allow us to support a whole new set of control system protocols, like [EPICS7's PVAccess](https://epics-controls.org/resources-and-support/base/epics-7/).

This will be a big overhaul, and there will be some breaking changes to the way things work - mostly in the data plugin department, but a few other places too. We'll publish migration guides to help you get any custom data plugins and widgets you have up in running in 2.0. Another change to be aware of is that we will be ending support for Python2.7 - all v2.0-and-up releases will only support Python 3.6 and higher.

Our plan is to have a separate '2.0' branch of the PyDM repository available (probably with pre-release tagged versions) for a few months, and let the user community try it out before finally merging it in and releasing 2.0 proper. Stay tuned!

1.27.0

What's Changed
This patch adds a few new features to Base Plot and Archive Time Plot along with some bug fixes. We added labels on crosshairs for Time Plots, Archive Time Plots and Waveform Plots and fixed how crosshairs were working. We addressed an issue with dynamically switching a channel on a PyDMWidget.

This update also adds another slew of changes that are needed for PySide6 support in PyDM. _(Note that Pyside6 support is currently still in progress and will be fully enabled in a future release. Using Pyside6 will also be an optional feature and should not effect how PyDM currently uses PyQt5.)_

Enhancements
* ENH: Adds Labels to Timeplot Crosshair by YektaY in https://github.com/slaclab/pydm/pull/1173
* ENH: Infinite line extension for PyDMArchiverTimePlot by YektaY in https://github.com/slaclab/pydm/pull/1167
* ENH: ArchiveTimePlot Fetch Data on X-Axis Change by zdomke in https://github.com/slaclab/pydm/pull/1172

Bug Fixes
* BUG: properly remove error bars in time plot's clearCurves by shilorigins in https://github.com/slaclab/pydm/pull/1217
* FIX: Don't attempt a disconnect on the value signal if the widget is being destroyed by jbellister-slac in https://github.com/slaclab/pydm/pull/1218
* FIX: Ensure previous instance of display class is fully cleaned up after reloading it by jbellister-slac in https://github.com/slaclab/pydm/pull/1209
* FIX: Fixing bug with updateXAxis def by zdomke in https://github.com/slaclab/pydm/pull/1216
* BUG: connect BasePlotAxisItem auto-range methods to the linked ViewBox auto-range methods by shilorigins in https://github.com/slaclab/pydm/pull/1212
* FIX: Disconnect the value signal when removing a listener from a connection by jbellister-slac in https://github.com/slaclab/pydm/pull/1208

Maintenance:
* MNT: temp fix for building pyca from git causing gh-actions tests to fail. by nstelter-slac in https://github.com/slaclab/pydm/pull/1211
* MNT: appease newer python by not using enum to index into tuple by nstelter-slac in https://github.com/slaclab/pydm/pull/1200
* MNT: instruct users to use conda from Miniforge for it's better licensing. by nstelter-slac in https://github.com/slaclab/pydm/pull/1205
* MNT: switch from python2 style super() calls to python3 by nstelter-slac in https://github.com/slaclab/pydm/pull/1202

PySide6 Changes:
* MNT: make sure we pass a weak ref of the current object to widget_destroyed by nstelter-slac in https://github.com/slaclab/pydm/pull/1189
* MNT: update enum-button widget's button-group to use proper clicked signal, avoid pyside6 error by nstelter-slac in https://github.com/slaclab/pydm/pull/1196
* MNT: stop high-dpi setting warning on pyside6(qt6) by nstelter-slac in https://github.com/slaclab/pydm/pull/1198
* MNT: pyside6 just throws an IndexError instead when connecting to value_signals not overloaded with the specified type by nstelter-slac in https://github.com/slaclab/pydm/pull/1197
* MNT: On pyside6 use == for signal comparison (can't use .signal like in pyqt5) by nstelter-slac in https://github.com/slaclab/pydm/pull/1199
* MNT: Move some calls to children classes to stop pyside6 throwing an error about __init__ in classes that use multiple inheritence. by nstelter-slac in https://github.com/slaclab/pydm/pull/1181
* TST: fix error during tests on pyside6 with c++ internal object deletion by nstelter-slac in https://github.com/slaclab/pydm/pull/1215

**Full Changelog**: https://github.com/slaclab/pydm/compare/v1.26.0...v1.27.0

1.26.0

What's Changed

This patch adds some bug fixes related to the ErrorBarItems of ArchiverPlotCurveItem widgets, and the added ability to reference start angle and span angles of PyDMDrawingArc based widgets with their widget-rules (for example, they can now be set by PVs). This update also adds some general maintenance patches to PyDM's setup and GitHub, a highlight being the switch from setup.py to pyproject.toml.

This update also adds a slew of changes that are needed for PySide6 support in PyDM. _(Note that Pyside6 support is currently still in progress and will be fully enabled in a future release. Using Pyside6 will also be an optional feature and should not effect how PyDM currently uses PyQt5.)_

Maintenance:
* Migrate to pyproject.toml by jbellister-slac in https://github.com/slaclab/pydm/pull/1184
* MNT: update issues and feature request page on github, make it apply a tag to the issues automatically by nstelter-slac in https://github.com/slaclab/pydm/pull/1170
* MNT: stop install wrong pyca package through pip, and enabled psp test which uses pyca's psp library by nstelter-slac in https://github.com/slaclab/pydm/pull/1136
* FIX: changes to publish-to-pypi.yml by YektaY in https://github.com/slaclab/pydm/pull/1165
* MNT: fix github actions windows tests from failing randomly: maybe windows is slow, try waiting a few seconds longer by nstelter-slac in https://github.com/slaclab/pydm/pull/1201
* STY: fix minor spelling mistakes by nstelter-slac in https://github.com/slaclab/pydm/pull/1182

Bug Fixes:
* FIX: Set log mode and link/unlink ArchivePlotCurveItem.ErrorBarItems by zdomke in https://github.com/slaclab/pydm/pull/1168

Enhancements:
* ENH: add two rules to PyDMDrawingPie widget by jjanice in https://github.com/slaclab/pydm/pull/1185

PySide6 Changes:
* MNT: remove widget classes inheritance from enum, as preperation for qt6 enum support by nstelter-slac in https://github.com/slaclab/pydm/pull/1154
* Support both pyqt5 pyside6 enums by nstelter-slac in https://github.com/slaclab/pydm/pull/1155
* ENH: Add Pyside6 compatible UI file compilation by nstelter-slac in https://github.com/slaclab/pydm/pull/1163
* MNT: make RULE_PROPERTIES work with pyside6 by nstelter-slac in https://github.com/slaclab/pydm/pull/1161
* MNT: switch signal type overloading to use syntax that works for both pyqt5 and pyside6 by nstelter-slac in https://github.com/slaclab/pydm/pull/1164
* TST: some changes to tests for pyside6, also set about page font width to bold (which is same as having 75) by nstelter-slac in https://github.com/slaclab/pydm/pull/1176
* MNT: in tests, access style pixmaps using StandardPixmap by nstelter-slac in https://github.com/slaclab/pydm/pull/1187
* TST: fix segfault issue during symbol editor test on pyside6 by nstelter-slac in https://github.com/slaclab/pydm/pull/1190
* MNT: '|' is only supported way to combine macros in qt6, and still works also for qt5 by nstelter-slac in https://github.com/slaclab/pydm/pull/1175
* MNT: Be sure we use Qt.PenStyle enums for setting pen style, not ints. by nstelter-slac in https://github.com/slaclab/pydm/pull/1188
* MNT: use the correct signal for comboboxes in the camviewer example, stops error on pyside6 by nstelter-slac in https://github.com/slaclab/pydm/pull/1192
* TST: use QSlider.TickPosition values in slider tests (errors when use ints on pyside6) by nstelter-slac in https://github.com/slaclab/pydm/pull/1191


New Contributors
* jjanice made their first contribution in https://github.com/slaclab/pydm/pull/1185

**Full Changelog**: https://github.com/slaclab/pydm/compare/v1.25.2...v1.25.3

1.25.2

What's Changed
This update adds a host of bug fixes and maintenance work to PyDM. Included is a fix for loading widgets in QtDesigner when PyDM is installed from PyPI, a fix for indexing into a NTTable's array of np.integer types, a fix for using a PyDMSlider with floating point values, and an improved doc page on setup and contributing for developers.

This update also adds new options for stdout and stderr output from subprocesses launched by PyDMShellCommand widgets, and fixes the issue of these subprocess temporarily freezing when outputting a large amount.

New Features
* ENH/FIX: shell command output options by ZLLentz in https://github.com/slaclab/pydm/pull/1138
* ENH: make main window menubar action for 'Enter Fullscreen' toggle to 'Exit Fullscreen' when in fullscreen view. by nstelter-slac in https://github.com/slaclab/pydm/pull/1128

Docs
* DOC: add page about custom menu actions by nstelter-slac in https://github.com/slaclab/pydm/pull/1123
* DOC: Update docs for contributing by nstelter-slac in https://github.com/slaclab/pydm/pull/1134
* DOC: new contributing file is meant to be rst file, not md (this messes with rendering on gh) by nstelter-slac in https://github.com/slaclab/pydm/pull/1157
* DOC: format table correctly in CONTRIBUTING doc by nstelter-slac in https://github.com/slaclab/pydm/pull/1162

Maintenance
* DEV: don't use mambaforge installers in github actions setup by nstelter-slac in https://github.com/slaclab/pydm/pull/1126
* MNT: fix error when using numpy 2+ by nstelter-slac in https://github.com/slaclab/pydm/pull/1140
* DEP: Remove References to Deprecated QVariant by zdomke in https://github.com/slaclab/pydm/pull/1141
* MNT: stop warnings during tests from using deprecated .command property by nstelter-slac in https://github.com/slaclab/pydm/pull/1143
* MNT: make gh actions setup use conda and pip to install packages by nstelter-slac in https://github.com/slaclab/pydm/pull/1150
* DEP: Remove Deprecated QVariant Checks by zdomke in https://github.com/slaclab/pydm/pull/1153
* MNT: Update versions of checkout and setup-miniconda actions by jbellister-slac in https://github.com/slaclab/pydm/pull/1158
* MNT: make gh-actions timeout and fail at 30 mins (instead of 6 hour default) by nstelter-slac in https://github.com/slaclab/pydm/pull/1160
* MNT: Pyside6/Qt6 Upgrade Pt 1 by nstelter-slac in https://github.com/slaclab/pydm/pull/1139
* MNT: Replace PyQt-specific sip library with wrapper provided by pyqt by nstelter-slac in https://github.com/slaclab/pydm/pull/1142
* MNT: remove usage of QWIDGETSIZE_MAX macro, since only PyQt defines it and not PySide by nstelter-slac in https://github.com/slaclab/pydm/pull/1148
* TST: add tests for objects the use PyDMPrimitiveWidget's RULE_PROPERTIES by nstelter-slac in https://github.com/slaclab/pydm/pull/1151

Bug Fixes
* BUG: fix issue where designer doesn't load pydm widgets when pydm is installed from PyPI using pip by nstelter-slac in https://github.com/slaclab/pydm/pull/1132
* FIX: Store Data for FormulaCurveItem with Constant Value by zdomke in https://github.com/slaclab/pydm/pull/1124
* FIX: Check Validity of QAbstractTableModel Classes by zdomke in https://github.com/slaclab/pydm/pull/1122
* FIX: maintain reference to related displays to avoid gc by ZLLentz in https://github.com/slaclab/pydm/pull/1137
* FIX: Small change to addess a valueError in PyDMSlider when they are being dragged by YektaY in https://github.com/slaclab/pydm/pull/1147
* BUG: Add a case in p4p_plugin_component.py for Numpy integers. by slactjohnson in https://github.com/slaclab/pydm/pull/1120

New Contributors
* slactjohnson made their first contribution in https://github.com/slaclab/pydm/pull/1120

**Full Changelog**: https://github.com/slaclab/pydm/compare/v1.25.1...v1.25.2

1.25.1

What's Changed
A small release to update publish-to-pypi.yml file

Bug Fix
* FIX: changes to publish-to-pypi.yml by YektaY in https://github.com/slaclab/pydm/pull/1117

**Full Changelog**: https://github.com/slaclab/pydm/compare/v1.25.0...v1.25.1

1.25.0

What's Changed
This update provides a slew of changes to the pydm plots including updates to the PyDMArchiverTimePlot. This update also fixes a couple bugs in the PyDMSlider, so now the slider handle is draggable.

New Features
* ENH/DEV: Formula Viewer for Archive Viewer by aksharsarvesh in https://github.com/slaclab/pydm/pull/1095
* ENH: Import/Export FormulaCurveItem Objects by aksharsarvesh in https://github.com/slaclab/pydm/pull/1102
* ENH: Axes Handling and Hiding in Multi Axis Plots by aksharsarvesh in https://github.com/slaclab/pydm/pull/1097
* ENH: Import/Export Plot Config by aksharsarvesh in https://github.com/slaclab/pydm/pull/1101
* ENH: Added a slot to capture units received from the PyDMChannel by aksharsarvesh in https://github.com/slaclab/pydm/pull/1110
* ENH: ArchivePlotCurveItem Connection Status by zdomke in https://github.com/slaclab/pydm/pull/1108
* ENH: FormulaCurveItem Connection Status by zdomke in https://github.com/slaclab/pydm/pull/1111
* ENH: Add Manual XRange Change Signal by zdomke in https://github.com/slaclab/pydm/pull/1116

Maintenance
* Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows by dependabot in https://github.com/slaclab/pydm/pull/1109

Bug Fixes
* FIX: Unlinking a curve from an axis now removes it from the legend by aksharsarvesh in https://github.com/slaclab/pydm/pull/1112
* FIX: Addressed two bugs on the slider. Middle click to see PV name and click and drag on the slider handle by YektaY in https://github.com/slaclab/pydm/pull/1115

New Contributors
* dependabot made their first contribution in https://github.com/slaclab/pydm/pull/1109

**Full Changelog**: https://github.com/slaclab/pydm/compare/v1.24.1...v1.25.0

Page 1 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.