Skip to content

Commit

Permalink
classy: test: reverting to test on py 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusTorrado committed Mar 4, 2025
1 parent 31a9a81 commit d551fd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
os: ubuntu-latest
python-version: 3.x
mpi: openmpi
cobaya_skip: polychord
cobaya_skip: classy, polychord
- name: "OS X Python 3.8 (with classy)"
os: macos-latest
python-version: 3.8
mpi: openmpi
cobaya_skip: classy, polychord
cobaya_skip: polychord
- name: "Windows Python 3.12"
os: windows-latest
python-version: 3.12
Expand Down
4 changes: 2 additions & 2 deletions cobaya/theories/camb/camb.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,8 +979,8 @@ def install(cls, path=None, code=True, no_progress_bars=False, **_kwargs):
cwd=camb_path, stdout=PIPE, stderr=PIPE)
out, err = process_make.communicate()
if process_make.returncode:
log.info(out.decode())
log.info(err.decode())
log.info(out.decode("utf-8"))
log.info(err.decode("utf-8"))
gcc_check = check_gcc_version(cls._camb_min_gcc_version, error_returns=False)
if not gcc_check:
cause = (" Possible cause: it looks like `gcc` does not have the correct "
Expand Down
4 changes: 2 additions & 2 deletions cobaya/theories/classy/classy.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,8 +840,8 @@ def install(cls, path=None, code=True, no_progress_bars=False, **_kwargs):
log.info(out)
log.info(err)
if process_make.returncode:
log.info(out)
log.info(err)
log.info(out.decode("utf-8"))
log.info(err.decode("utf-8"))
log.error("Compilation failed!")
return False
return True

0 comments on commit d551fd4

Please sign in to comment.