Skip to content

Commit 357c2d3

Browse files
committed
Install exact tfx-bsl missing external binaries inline bypassing PyPI via Git Master
1 parent f2a40c5 commit 357c2d3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/conda-build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,11 @@ jobs:
7474
- name: Install wheel and dependencies
7575
shell: bash -l {0}
7676
run: |
77+
export TFX_DEPENDENCY_SELECTOR=GIT_MASTER
7778
python -m pip install "apache-beam[gcp]>=2.53,<3" "pandas>=1.0,<3" "numpy>=1.22.0"
78-
python -m pip install "tensorflow-metadata>=1.17.1"
79-
python -m pip install "tfx-bsl>=1.17.1" --no-deps
79+
python -m pip install git+https://github.com/tensorflow/metadata.git@master --no-deps
80+
# Bypasses PyPI lack of uncompiled prebuilt wheels over modern setups stably
81+
python -m pip install git+https://github.com/tensorflow/tfx-bsl.git@master --no-deps
8082
python -m pip install "tensorflow>=2.21,<2.22"
8183
python -m pip install "absl-py>=0.9,<2.0.0" "joblib>=1.2.0" "pyarrow>=14" "pyfarmhash>=0.2.2,<0.4" "six>=1.12,<2" "dill" "scipy" "scikit-learn"
8284
python -m pip install "protobuf==6.31.1" --force-reinstall

0 commit comments

Comments
 (0)