Changeset 27614


Ignore:
Timestamp:
02/24/23 12:27:39 (2 years ago)
Author:
jdquinn
Message:

CHG: Removed sed call that changed python -> python3; clean up

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/packagers/linux/package-issm-linux-binaries-python-3.sh

    r27613 r27614  
    134134        export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured
    135135
    136         # Ensure that runme.py uses Python 3 interpreter
    137         sed -i "s|/usr/bin/env python|/usr/bin/python3|g" ./runme.py
    138 
    139136        # Run tests, redirecting output to logfile and suppressing output to console
    140137        ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1
  • issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh

    r27613 r27614  
    140140        export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured
    141141
    142         # Ensure that runme.py uses Python 3 interpreter
    143         sed -i '' "s|/usr/bin/env python|/usr/bin/env python3|g" ./runme.py
    144 
    145142        # Run tests, redirecting output to logfile and suppressing output to console
    146143        ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1
  • issm/trunk-jpl/test/NightlyRun/test257.py

    r27465 r27614  
    11#Test Name: SquareShelfSMBarma
    2 from __future__ import division  # TODO: Remove this import after ISSM is updated to use Python 3 by default
    32import numpy as np
    43from model import *
Note: See TracChangeset for help on using the changeset viewer.