Skip to content

Commit

Permalink
update style + remove f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelToman committed Jan 6, 2025
1 parent 0166b10 commit 0909536
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sanity_check_paths = {
}

sanity_check_commands = [
'python -c "import pyaudio; pyaudio.get_portaudio_version_text(); pyaudio.__version__"'
'python -c "import pyaudio; pyaudio.get_portaudio_version_text()"'
]

modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
Expand Down
4 changes: 2 additions & 2 deletions easybuild/easyconfigs/p/PyAV/PyAV-11.0.0-GCCcore-12.3.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ sanity_pip_check = True

exts_list = [
('av', version, {
'installopts': "--no-binary av",
'installopts': '--no-binary av',
'checksums': ['48223f000a252070f8e700ff634bb7fb3aa1b7bc7e450373029fbdd6f369ac31'],
}),
]

moduleclass = "vis"
moduleclass = 'vis'
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ exts_list = [
]

sanity_check_paths = {
'files': [f'bin/{name}'],
'files': ['bin/%(name)s'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}

sanity_check_commands = [f"{name} --help"]
sanity_check_commands = ['%(name)s --help']

moduleclass = 'ai'

0 comments on commit 0909536

Please sign in to comment.