Skip to content

Commit

Permalink
Use big_sur version instead of monterey
Browse files Browse the repository at this point in the history
  • Loading branch information
palonso committed Nov 4, 2023
1 parent 8d15a95 commit 62885c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyproject-tensorflow.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ test-command = "python -c 'import essentia; import essentia.standard; import ess
select = "*macosx_arm64*"

before-build = [
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done",
"PACKAGES=(eigen libyaml fftw [email protected] libsamplerate libtag chromaprint); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done",
"PACKAGES=(tensorflow); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done",
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done",
"PACKAGES=(eigen libyaml fftw [email protected] libsamplerate libtag chromaprint); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done",
"PACKAGES=(tensorflow); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done",
"brew link --force [email protected]",
"python waf configure --with-tensorflow --pkg-config-path=\"${PKG_CONFIG_PATH}\" --arch arm64 --no-msse",
"python waf",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ test-command = "python -c 'import essentia; import essentia.standard; import ess
select = "*macosx_arm64*"

before-build = [
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done",
"PACKAGES=(eigen libyaml fftw [email protected] libsamplerate libtag chromaprint); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done",
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done",
"PACKAGES=(eigen libyaml fftw [email protected] libsamplerate libtag chromaprint); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done",
"brew link --force [email protected]",
"python waf configure --pkg-config-path=\"${PKG_CONFIG_PATH}\" --arch arm64 --no-msse",
"python waf",
Expand Down

0 comments on commit 62885c0

Please sign in to comment.