Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
1c664ab
update to 3.13
willingc Jul 14, 2025
a29a814
Fix enum by wrapping functool paritial
willingc Jul 14, 2025
7cd8290
Update black version
willingc Jul 14, 2025
a0ad469
remove commented out code
willingc Jul 14, 2025
26b9853
remove commented out code
willingc Jul 14, 2025
462ad0f
update python version in github action workflow
willingc Jul 14, 2025
608837d
fix black errors
willingc Jul 14, 2025
c6ad36c
set quote for black
willingc Jul 14, 2025
c453af1
fix ruff errors
willingc Jul 14, 2025
20b5b99
update action for imageio
willingc Jul 14, 2025
2d8d75a
Update the new test to mock properly the attribute for 3.10
willingc Jul 14, 2025
6784bec
reenable ffmpeg stuff in CI and update mock
willingc Jul 14, 2025
bec8ad5
Update wrap enum method and test
willingc Jul 14, 2025
445ad3a
skip simulation tests
willingc Jul 15, 2025
2fe8a9f
skip simulation tests correctly this time
willingc Jul 15, 2025
8b0762d
Add A004 to ruff lint ignore since we want math.pow
willingc Jul 15, 2025
b899d2a
Add comment about ruff target version
willingc Jul 15, 2025
d87d4a9
Make qt version more explicit
willingc Jul 15, 2025
55b49d4
make qt in tox more explicit
willingc Jul 15, 2025
c44fae7
Update napari_animation/_enum_compat.py
willingc Jul 21, 2025
0c7deb9
update typing
willingc Jul 21, 2025
f819f70
apply review changes
willingc Jul 21, 2025
f6516ca
capitalization is hard
willingc Jul 21, 2025
4788fe1
troubleshooting
willingc Jul 21, 2025
7b5f065
make test matrix similar to original file
willingc Jul 21, 2025
663e84d
additional tox changes back to initial state
willingc Jul 22, 2025
6ad9f0e
change caps for pyside
willingc Jul 22, 2025
b6c848c
pin pytest-qt to 4.4 for pyside
willingc Jul 22, 2025
90499db
remove mac-13 and macosintel
willingc Jul 22, 2025
43f348b
remove macos python3.10 from PySide2 CI testing
willingc Jul 22, 2025
698a339
drop pyside2 on 3.10 temporarily
willingc Jul 22, 2025
af6b3b7
stop failing fast
willingc Jul 22, 2025
b286862
remove env
willingc Jul 22, 2025
515b86d
Add in peter solution for pyside
willingc Jul 22, 2025
de5ee3d
add qt version to test name
willingc Jul 22, 2025
f95f759
Test removing the nested guard for enum member availability
willingc Jul 22, 2025
b9ae48e
Improve naming of guards for enum member
willingc Jul 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add in peter solution for pyside
  • Loading branch information
willingc committed Jul 22, 2025
commit 515b86d4bc7566dfb27bd6fe7f604262d0d86832
9 changes: 8 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = py{310,311,312,313}-{linux,macos,windows}-pyqt
envlist = py{310,311,312,313}-{linux,macos,windows}-pyqt, py{310}-{linux,windows}-pyside

[gh-actions]
python =
Expand Down Expand Up @@ -39,6 +39,13 @@ deps =
{[testenv]deps}
napari[pyqt5]

[testenv:py{310}-{linux,windows}-pyside]
deps =
{[testenv]deps}
napari[pyside2]
pytest-qt < 4.5.0
lxml_html_clean # should only be needed till napari 0.5.0

[testenv:ruff]
skip_install = True
deps = pre-commit
Expand Down
Loading