Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: glue-viz/glue-qt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.3
Choose a base ref
...
head repository: glue-viz/glue-qt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 7 files changed
  • 4 contributors

Commits on Feb 27, 2025

  1. Update CHANGELOG

    astrofrog authored and github-actions[bot] committed Feb 27, 2025
    Copy the full SHA
    919a98a View commit details
  2. TST: remove python_export tests for viewers already covered in glue-core

    dhomeier committed Feb 27, 2025
    Copy the full SHA
    bfc619b View commit details
  3. Merge pull request #30 from dhomeier/untest_python_export

    Remove python_export tests for viewers already covered in glue-core
    astrofrog authored Feb 27, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9946c6d View commit details
  4. Provide rounded value to self._play_timer.setInterval

    nabobalis committed Feb 27, 2025
    Copy the full SHA
    be4180a View commit details
  5. Merge pull request #27 from nabobalis/main

    Provide int to self._play_timer.setInterval
    astrofrog authored Feb 27, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fe1868d View commit details
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Full changelog

## v0.3.3 - 2025-02-27

<!-- Release notes generated using configuration in .github/release.yml at main -->
### What's Changed

#### Bug Fixes

* Fix import and segfault in test suite by @astrofrog in https://github.com/glue-viz/glue-qt/pull/25

#### Other Changes

* Pin pytest to <8.3.3 as the test suite currently segfaults with 8.3.3 by @astrofrog in https://github.com/glue-viz/glue-qt/pull/24
* Add glue-core to dev-deps and Python 3.13 envs to CI; compatibility with glue 1.22 BaseViewer by @dhomeier in https://github.com/glue-viz/glue-qt/pull/26

**Full Changelog**: https://github.com/glue-viz/glue-qt/compare/v0.3.2...v0.3.3

## v0.3.2 - 2024-08-19

<!-- Release notes generated using configuration in .github/release.yml at main -->
2 changes: 1 addition & 1 deletion glue_qt/viewers/common/data_slice_widget.py
Original file line number Diff line number Diff line change
@@ -160,7 +160,7 @@ def _adjust_play(self, action):
self._play_timer.stop()
else:
self._play_timer.start()
self._play_timer.setInterval(500 / abs(self._play_speed))
self._play_timer.setInterval(round(500 / abs(self._play_speed)))

def _play_slice(self):
if self._play_speed > 0:
63 changes: 0 additions & 63 deletions glue_qt/viewers/histogram/tests/test_python_export.py

This file was deleted.

141 changes: 0 additions & 141 deletions glue_qt/viewers/image/tests/test_python_export.py

This file was deleted.

62 changes: 0 additions & 62 deletions glue_qt/viewers/matplotlib/tests/test_python_export.py

This file was deleted.

89 changes: 0 additions & 89 deletions glue_qt/viewers/profile/tests/test_python_export.py

This file was deleted.

Loading