Skip to content

Commit

Permalink
Upgrade canary to 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfliu committed Nov 5, 2023
1 parent ed712aa commit b2f2efe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/canary-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
working-directory: canary
run: |
set -x
if [[ $(./gradlew -b bom.gradle --configuration runtimeClassPath | grep FAILED | wc -l) -gt 0 ]]; then false; fi
if [[ $(./gradlew -b bom.gradle dep --configuration runtimeClassPath | grep FAILED | wc -l) -gt 0 ]]; then false; fi
- name: Test MXNet
working-directory: canary
run: |
Expand Down
2 changes: 1 addition & 1 deletion canary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def engine = getEnv("DJL_ENGINE", "pytorch-native-auto")
def os = getOsName()
def arch = System.getProperty("os.arch") == "amd64" ? "x86_64" : System.getProperty("os.arch")
def stagingRepo = getEnv("DJL_STAGING", null)
def ptVersion = getEnv("PT_VERSION", "1.13.1")
def ptVersion = getEnv("PT_VERSION", "2.0.1")

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ systemProp.org.gradle.internal.http.connectionTimeout=60000
# FIXME: Workaround gradle publish issue: https://github.com/gradle/gradle/issues/11308
systemProp.org.gradle.internal.publish.checksums.insecure=true

djl_version=0.24.0
djl_version=0.25.0
commons_cli_version=1.5.0
log4j_slf4j_version=2.19.0
slf4j_simple_version=1.7.36
Expand Down

0 comments on commit b2f2efe

Please sign in to comment.