Skip to content

Commit

Permalink
update depends version
Browse files Browse the repository at this point in the history
  • Loading branch information
cyjseagull committed Dec 12, 2024
1 parent 4298aaa commit e63be5f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
tags:
- 'v3.*.*'
branches:
- feature-milestone2
- main
release:
types: [prereleased]
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ext {
guavaVersion = "32.0.1-jre"
bcprovVersion = "1.78.1"
googleAutoServiceVersion = "1.1.1"
wedprGatewaySDKVersion = "1.0.0-SNAPSHOT"
wedprGatewaySDKVersion = "3.0.0-SNAPSHOT"
gsonVersion = "2.10.1"
servletApiVersion="4.0.1"
javaeeApiVersion="8.0.1"
Expand Down
4 changes: 2 additions & 2 deletions docker-files/jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ RUN chmod -R 777 /home/share/
RUN pip install --no-cache-dir -i https://pypi.mirrors.ustc.edu.cn/simple/ -r root/requirements.txt

# TODO: use the non-test pip after uploaded
RUN pip install --no-cache-dir -i https://test.pypi.org/simple/ wedpr-authenticator==1.0.0.dev-20241124
RUN pip install --no-cache-dir -i https://test.pypi.org/simple/ wedpr-ml-toolkit==1.0.0.dev-20241201
RUN pip install --no-cache-dir -i https://test.pypi.org/simple/ wedpr-authenticator
RUN pip install --no-cache-dir -i https://test.pypi.org/simple/ wedpr-ml-toolkit
2 changes: 2 additions & 0 deletions wedpr-builder/db/scripts/drop/db_drop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/sh
SHELL_FOLDER=$(cd $(dirname $0);pwd)
cd ${SHELL_FOLDER}

if [[ $# -lt 5 ]] ; then
echo "Usage: bash ${0} DB_IP DB_PORT DB_USER DB_PASSWORD DB_NAME"
Expand Down
2 changes: 2 additions & 0 deletions wedpr-builder/db/scripts/init/db_init.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/sh
SHELL_FOLDER=$(cd $(dirname $0);pwd)
cd ${SHELL_FOLDER}

if [[ $# -lt 5 ]] ; then
echo "Usage: bash ${0} DB_IP DB_PORT DB_USER DB_PASSWORD DB_NAME"
Expand Down
2 changes: 1 addition & 1 deletion wedpr-builder/wedpr_builder/config/wedpr_deploy_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def to_jupyter_sql(self):
return ""
jupyter_setting = "'%s'" % self.jupyter_infos.to_string()
utilities.log_info(f"* jupyter_setting: {jupyter_setting}")
sql = 'insert into \`wedpr_config_table\`(\`config_key\`, \`config_valule\`) values(\\\"jupyter_entrypoints\\\", %s);' % jupyter_setting
sql = 'insert into \`wedpr_config_table\`(\`config_key\`, \`config_value\`) values(\\\"jupyter_entrypoints\\\", %s);' % jupyter_setting
return sql

def __repr__(self):
Expand Down

0 comments on commit e63be5f

Please sign in to comment.