diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 842145c..7f85bfd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,16 +18,16 @@ jobs: # matrix of build configs config: - cuda: 'none' - image: 'tlcpack/package-cpu:1d98bf9' + image: 'tlcpack/package-cpu:0b3b4c9' package_name: 'apache-tvm' - cuda: '10.2' - image: 'tlcpack/package-cu102:1d98bf9' + image: 'tlcpack/package-cu102:0b3b4c9' package_name: 'apache-tvm-cu102' - cuda: '11.3' - image: 'tlcpack/package-cu113:1d98bf9' + image: 'tlcpack/package-cu113:0b3b4c9' package_name: 'apache-tvm-cu113' - cuda: '11.6' - image: 'tlcpack/package-cu116:1d98bf9' + image: 'tlcpack/package-cu116:0b3b4c9' package_name: 'apache-tvm-cu116' runs-on: ubuntu-latest @@ -154,4 +154,4 @@ jobs: run: | set -eux python3 -m pip install github3.py - python3 wheel/wheel_upload.py --tag v0.7.dev1 tvm/python/dist \ No newline at end of file + python3 wheel/wheel_upload.py --tag v0.7.dev1 tvm/python/dist diff --git a/common/sync_package.py b/common/sync_package.py index c00680e..70f09ea 100644 --- a/common/sync_package.py +++ b/common/sync_package.py @@ -8,7 +8,7 @@ # Modify the following two settings during release # ----------------------------------------------------------- # Tag used for stable build. -__stable_build__ = "v0.9.0" +__stable_build__ = "v0.10.0" # ----------------------------------------------------------- def py_str(cstr): diff --git a/wheel/build_lib_osx.sh b/wheel/build_lib_osx.sh index b78a730..83c4046 100755 --- a/wheel/build_lib_osx.sh +++ b/wheel/build_lib_osx.sh @@ -8,7 +8,7 @@ rm -rf build mkdir -p build cd build -MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET:-10.11} +MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET:-10.13} cmake -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} \