Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 7 additions & 16 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,25 +66,12 @@ jobs:
python -m pip install numpy>=1.22.0
python -m pip install --upgrade pip build wheel "setuptools<69.3"

- name: Build the package
- name: Build and install package
shell: bash -l {0}
run: |
python -m build --wheel --no-isolation

- name: Install wheel and dependencies
shell: bash -l {0}
run: |
export TFX_DEPENDENCY_SELECTOR=GIT_MASTER
export USE_BAZEL_VERSION=7.7.0
python -m pip install "apache-beam[gcp]>=2.53,<3" "pandas>=1.0,<3" "numpy>=1.22.0"
python -m pip install git+https://github.com/tensorflow/metadata.git@master --no-deps
# Bypasses PyPI lack of uncompiled prebuilt wheels over modern setups stably
python -m pip install git+https://github.com/tensorflow/tfx-bsl.git@master --no-deps
python -m pip install "tensorflow>=2.21,<2.22"
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"
python -m pip install "protobuf==6.31.1" --force-reinstall
python -m pip install dist/*.whl --no-deps
python -m pip install pytest
WHEEL_PATH=$(ls dist/*.whl)
python -m pip install "${WHEEL_PATH}[all,test]"

- name: Run tests
shell: bash -l {0}
Expand Down Expand Up @@ -136,4 +123,8 @@ jobs:
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.9
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: wheels/
verify-metadata: true
verbose: true
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# TensorFlow Data Validation

[![Python](https://img.shields.io/badge/python%7C3.9%7C3.10%7C3.11-blue)](https://github.com/tensorflow/data-validation)
[![Python](https://img.shields.io/badge/python%7C3.10%7C3.11%7C3.12%7C3.13-blue)](https://github.com/tensorflow/data-validation)
[![PyPI](https://badge.fury.io/py/tensorflow-data-validation.svg)](https://badge.fury.io/py/tensorflow-data-validation)
[![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://www.tensorflow.org/tfx/data_validation/api_docs/python/tfdv)

Expand Down Expand Up @@ -172,7 +172,8 @@ other *untested* combinations may also work.

tensorflow-data-validation | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tensorflow-transform | tfx-bsl
------------------------------------------------------------------------------------- | ---------------- | ------- | ----------------- | ------------------- | -------------------- | -------
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | n/a | 1.17.1
[GitHub master](https://github.com/tensorflow/data-validation/blob/master/RELEASE.md) | 2.65.0 | 14.0.0 | nightly (2.x) | 1.21.0 | n/a | 1.21.0
[1.21.0](https://github.com/tensorflow/data-validation/blob/v1.21.0/RELEASE.md) | 2.65.0 | 14.0.0 | 2.21 | 1.21.0 | n/a | 1.21.0
[1.17.0](https://github.com/tensorflow/data-validation/blob/v1.17.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | n/a | 1.17.1
[1.16.1](https://github.com/tensorflow/data-validation/blob/v1.16.1/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.1 | n/a | 1.16.1
[1.16.0](https://github.com/tensorflow/data-validation/blob/v1.16.0/RELEASE.md) | 2.59.0 | 10.0.1 | 2.16 | 1.16.0 | n/a | 1.16.0
Expand Down
Loading
Loading