Skip to content

Commit

Permalink
fix setuptools issue by sticking to a single version
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Jan 20, 2025
1 parent 69f22a4 commit e6289fb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions easybuild/easyconfigs/r/ReFrame/ReFrame-4.3.3.eb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ exts_list = [
'preinstallopts': "export PATH=%(installdir)s/bin:$PATH && "
# use PyYAML 6.0.1 to solve Cython 3 incompatibility issues
"sed -i 's@PyYAML==6.0@PyYAML==6.0.1@' requirements.txt && "
# use the same setuptools version n the requirements.txt of the docs
# to prevent jsonschema from installating the latest setuptools as well
"echo \"setuptools==59.6.0; python_version == '3.6'\" >> docs/requirements.txt && "
"echo \"setuptools==67.8.0; python_version >= '3.7'\" >> docs/requirements.txt && "
"./bootstrap.sh +docs +pygelf && cp -r external %(installdir)s && "
"PYTHONPATH=%(builddir)s/reframe/reframe-%(version)s/external:$PYTHONPATH ",
'source_tmpl': 'v%(version)s.tar.gz',
Expand Down

0 comments on commit e6289fb

Please sign in to comment.