Changeset 27614
- Timestamp:
- 02/24/23 12:27:39 (2 years ago)
- 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 134 134 export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured 135 135 136 # Ensure that runme.py uses Python 3 interpreter137 sed -i "s|/usr/bin/env python|/usr/bin/python3|g" ./runme.py138 139 136 # Run tests, redirecting output to logfile and suppressing output to console 140 137 ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1 -
issm/trunk-jpl/packagers/mac/package-issm-mac-binaries-python-3.sh
r27613 r27614 140 140 export PYTHONUNBUFFERED=1 # We don't want Python to buffer output, otherwise issm.exe output is not captured 141 141 142 # Ensure that runme.py uses Python 3 interpreter143 sed -i '' "s|/usr/bin/env python|/usr/bin/env python3|g" ./runme.py144 145 142 # Run tests, redirecting output to logfile and suppressing output to console 146 143 ./runme.py ${PYTHON_NROPTIONS} &> python.log 2>&1 -
issm/trunk-jpl/test/NightlyRun/test257.py
r27465 r27614 1 1 #Test Name: SquareShelfSMBarma 2 from __future__ import division # TODO: Remove this import after ISSM is updated to use Python 3 by default3 2 import numpy as np 4 3 from model import *
Note:
See TracChangeset
for help on using the changeset viewer.