Skip to content
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
edcffd4
Prepare release 0.52.0: update version, dependencies, and Python 3.10…
vkarampudi Jul 6, 2026
abe8fc5
Update protobuf dependency range to >=6.0.0,<7.0.0
vkarampudi Jul 6, 2026
267f346
Fix TFMA import failure and test environment: add numpy<2.0.0 constra…
vkarampudi Jul 6, 2026
2b46c62
Fix EvalConfig import in tests and utilities and add pytest pythonpat…
vkarampudi Jul 6, 2026
76e9acd
Allow NumPy >= 2.1.0 on Python 3.13 to resolve ml-dtypes dependency
vkarampudi Jul 6, 2026
3d5e0c9
Remove unused tfma import in util_test.py to pass ruff linter
vkarampudi Jul 6, 2026
fcec3da
Update RELEASE.md files with complete 0.52.0 dependency changes
vkarampudi Jul 6, 2026
0f6a491
Align TFDV dependency constraint with TFX minor version convention (<…
vkarampudi Jul 6, 2026
88dd82a
Keep only Version 0.52.0 release notes in RELEASE.md files for releas…
vkarampudi Jul 6, 2026
dbc5236
Update build workflow to trigger on release/tags and build tensorboar…
vkarampudi Jul 6, 2026
30fcb4b
Ensure PyPI publishing only triggers when a release is published
vkarampudi Jul 6, 2026
848fd22
Update README compatibility tables for 0.52.0 release and fix markdow…
vkarampudi Jul 10, 2026
21bcc9d
Fix PyPI upload 404 by removing invalid repository_url and update dep…
vkarampudi Jul 10, 2026
fbbd36e
Merge branch 'r0.52.0' into r0.52.0
vkarampudi Jul 10, 2026
540b588
Eliminate tarfile corruption by building universal distributions in a…
vkarampudi Jul 10, 2026
07c9668
Merge branch 'tensorflow:r0.52.0' into r0.52.0
vkarampudi Jul 10, 2026
087a1d4
Use Python 3.12 in build workflow for future-proofing distribution pa…
vkarampudi Jul 10, 2026
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
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout
Expand All @@ -30,7 +27,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.12"

- name: Install python build dependencies
run: |
Expand All @@ -46,12 +43,12 @@ jobs:
- name: List and check wheels
run: |
pip install twine pkginfo>=1.11.0
${{ matrix.ls || 'ls -lh' }} wheelhouse/
ls -lh wheelhouse/
twine check wheelhouse/*
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.python-version }}
name: wheels
path: ./wheelhouse/*

upload_to_pypi:
Expand All @@ -68,7 +65,7 @@ jobs:
- name: Retrieve wheels
uses: actions/download-artifact@v4.1.8
with:
merge-multiple: true
name: wheels
path: wheels

- name: List the build artifacts
Expand Down
Loading