Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion l10n/requirements-l10n.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Babel==2.16.0
Babel==2.18.0
6 changes: 3 additions & 3 deletions requirements-desktop.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Desktop simulation dependencies
pyscard==2.3.1
pygame==2.5.2
numpy==2.2.6
opencv-python==4.12.0.88
pygame==2.6.1
numpy==2.4.3
opencv-python==4.13.0.92
2 changes: 1 addition & 1 deletion requirements-raspi.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
spidev==3.5
spidev==3.8
python-periphery==2.4.1
pyscard==2.3.1
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
embit==0.8.0
Pillow==10.4.0
Pillow==12.1.1
pyzbar @ https://github.com/seedsigner/pyzbar/archive/c3c237821c6a20b17953efe59b90df0b514a1c03.zip
qrcode==7.3.1
qrcode==8.2
colorama==0.4.6 ; platform_system == "Windows"
urtypes @ https://github.com/selfcustody/urtypes/archive/7fb280eab3b3563dfc57d2733b0bf5cbc0a96a6a.zip
pycryptodomex==3.23.0
Expand All @@ -12,11 +12,11 @@ pyscard==2.3.1
ecdsa==0.19.1
pyaes==1.6.1
cryptography==46.0.5
pyopenssl==25.1.0
typing_extensions==4.14.1
certifi==2025.7.14
pyopenssl==25.3.0
typing_extensions==4.15.0
certifi==2026.2.25
six==1.17.0
cffi==1.17.1
pycparser==2.22
smbus2==0.4.3 ; platform_system != "Windows"
cffi==2.0.0
pycparser==3.0
smbus2==0.6.0 ; platform_system != "Windows"
shamir-mnemonic==0.3.0
18 changes: 9 additions & 9 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
coverage==7.6.12
pytest==7.4.2
pytest-cov==4.1.0
iniconfig==2.1.0
packaging==25.0
coverage==7.13.4
pytest==9.0.2
pytest-cov==7.0.0
iniconfig==2.3.0
packaging==26.0
pluggy==1.6.0
exceptiongroup==1.3.0
tomli==2.2.1
importlib-metadata==8.7.0
typing-extensions==4.14.1
exceptiongroup==1.3.1
tomli==2.4.0
importlib-metadata==8.7.1
typing-extensions==4.15.0
zipp==3.23.0
colorama==0.4.6
4 changes: 2 additions & 2 deletions tests/screenshot_generator/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def _translations_available() -> bool:
)


def pytest_ignore_collect(path, config):
if not _translations_available() and "screenshot_generator" in str(path):
def pytest_ignore_collect(collection_path, config):
if not _translations_available() and "screenshot_generator" in str(collection_path):
return True


Expand Down