dire: Fix depends for new pythia version scheme (#26294)

Pythia version numbering was changed in #26255 from xyyy to x.yyy
This commit is contained in:
iarspider 2021-09-28 18:05:52 +02:00 committed by GitHub
parent 4f4984e313
commit a2c16356a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,9 @@ class Dire(Package):
depends_on('boost')
depends_on('lhapdf')
depends_on('hepmc')
depends_on('pythia8@8226:8244')
depends_on('pythia8@8.226:')
conflicts('pythia8@8.301:', msg='Dire is included in Pythia8 since version 8.301')
def install(self, spec, prefix):
configure_args = ['--prefix={0}'.format(prefix)]