Skip to content

Commit

Permalink
fix exts opts
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelToman committed Jan 6, 2025
1 parent eb029f3 commit fa95514
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,19 @@ configopts += '-DWITH_CUDNN=ON '
configopts += '-DENABLE_CPU_DISPATCH=OFF '

exts_defaultclass = 'PythonPackage'
exts_default_options = {
'source_urls': [PYPI_SOURCE],
'download_dep_fail': True,
'use_pip': True,
'sanity_pip_check': True,
'installopts': '',
'runtest': False,
}

exts_list = [
('ctranslate2', version, {
'runtest': False,
'sources': ['CTranslate2-%(version)s.tar.gz'],
'start_dir': 'python',
'use_pip': True,
'checksums': ['f3040c7c3da5dde022fdc16906c279f3f936c6e79f3df8f998c908bb01a77cfe'],
}),
]
Expand Down

0 comments on commit fa95514

Please sign in to comment.