Skip to content

Commit 8a9449d

Browse files
committed
add pandas
1 parent 88a9da4 commit 8a9449d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/openstudio-server-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
if: |
132132
github.ref == 'refs/heads/master' ||
133133
github.ref == 'refs/heads/develop' ||
134-
github.ref == 'refs/heads/custom_gems'
134+
github.ref == 'refs/heads/3.10.0-pandas'
135135
shell: bash
136136
run: ./docker/deployment/scripts/deploy_docker_github_actions.sh
137137
env:

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ RUN apt-get update && apt-get install -y wget gnupg lsb-release \
5050
nodejs \
5151
procps \
5252
python3-numpy \
53+
python3-pandas \
5354
tar \
5455
unzip \
5556
wget \

docker/deployment/scripts/deploy_docker_github_actions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ elif [ "${GITHUB_REF}" == "refs/heads/master" ]; then
1414
# Currently setting this to setup_github_actions to test upload.
1515
elif [ "${GITHUB_REF}" == "refs/heads/setup_github_actions" ]; then
1616
IMAGETAG=experimental
17-
elif [ "${GITHUB_REF}" == "refs/heads/custom_gems" ]; then
18-
IMAGETAG="3.10.0"
17+
elif [ "${GITHUB_REF}" == "refs/heads/3.10.0-pandas" ]; then
18+
IMAGETAG="3.10.0-pandas"
1919
fi
2020

2121
if [ "${IMAGETAG}" != "skip" ]; then

server/app/lib/openstudio_server/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ module OpenstudioServer
77
Version = '3.10.0'.freeze
88
# format should be ^.*\-{1}[a-z]+[0-9]+
99
# for example: -rc1, -beta6, -customusecase0
10-
VERSION_EXT = ''.freeze # with preceding - or +
10+
VERSION_EXT = '-pandas'.freeze # with preceding - or +
1111
OS_SHA = '86d7e215a1'.freeze
1212
end

0 commit comments

Comments
 (0)