Skip to content

Commit 53d6b6b

Browse files
committed
More fixes for pip install
1 parent 90913c1 commit 53d6b6b

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

scripts/build/stamp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [[ -z ${INSTDIR} ]]; then
44
. "${HOME}/tespEnv"
55
fi
66

7-
ver="1.3.3"
7+
ver="1.3.5"
88

99
echo
1010
echo "Stamping TESP $ver, if you want to change the version, edit this file."

scripts/build/tesp_pypi.id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ tables 3.8.0
210210
tabulate 0.9.0
211211
tenacity 8.2.3
212212
termcolor 2.3.0
213-
tesp-support 1.3.2 /home/tesp/tesp/repository/tesp/src/tesp_support
213+
tesp-support 1.3.5 /home/tesp/tesp/repository/tesp/src/tesp_support
214214
text-unidecode 1.3
215215
threadpoolctl 3.2.0
216216
tomli 2.0.1

scripts/tespInstall.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ echo "Install TESP home directory"
2525
echo "TESP home dirctory is $WORKDIR"
2626

2727
cat > "$HOME/tespEnv" << EOF
28-
. $VIRTUAL_ENV/bin/activate
28+
. $HOME/.tvenv/bin/activate
2929
3030
# TESP exports
3131
export TESPDIR=$WORKDIR
@@ -72,11 +72,14 @@ python3 -m venv "$HOME/.tvenv" --prompt TESP
7272
source "$HOME/tespEnv"
7373

7474
echo "Installing Python Libraries..."
75-
which python > "$HOME/tesp_pypi.log" 2>&1
75+
which python > "$HOME/tesp.log" 2>&1
7676
pip install --upgrade pip >> "$HOME/tesp.log" 2>&1
7777

78-
git clone --no-checkout main https://github.com/pnnl/tesp "$TESPDIR"
78+
echo "Installing TESP empty repo..."
79+
git clone --no-checkout https://github.com/pnnl/tesp "$TESPDIR"
7980
cd "$TESPDIR" || exit
81+
82+
echo "Installing Python Libraries..."
8083
git checkout HEAD requirements.txt
8184
pip install -r "$TESPDIR/requirements.txt" >> "$HOME/tesp.log" 2>&1
8285

scripts/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.3
1+
1.3.5

src/tesp_support/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.3
1+
1.3.5

0 commit comments

Comments
 (0)