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
19 changes: 11 additions & 8 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,23 @@ jobs:

- name: install python dependencies
run: |
pip install --upgrade pip setuptools wheel numpy pyarrow build twine
pip install --no-build-isolation .
pip install --upgrade pip build twine
pip install .

- name: build sdist
- name: build wheel
run: |
python -m build --sdist --wheel --no-isolation -o wheelhouse
python -m build --wheel -o wheelhouse

- name: List and check sdist
- name: List and check wheel
run: |
ls -lh wheelhouse/
twine check wheelhouse/*

- name: Upload sdist
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: wheels
path: ./wheelhouse/*.tar.gz
path: ./wheelhouse/*.whl

upload_to_pypi:
name: Upload to PyPI
Expand All @@ -74,6 +74,9 @@ jobs:
ls -lAs wheels/

- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.9
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: wheels/
verify-metadata: false
verbose: true
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ combinations may also work.

|tensorflow-model-analysis |apache-beam[gcp]|pyarrow |tensorflow |tensorflow-metadata |tfx-bsl |
|------------------------------------------------------------------------------------ |----------------|----------|-------------------|--------------------|----------|
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | 1.17.1 |
|[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.65.0 | 14.0.1 | nightly (2.x) | 1.21.0 | 1.21.0 |
|[0.52.0](https://github.com/tensorflow/model-analysis/blob/v0.52.0/RELEASE.md) | 2.65.0 | 14.0.1 | 2.21 | 1.21.0 | 1.21.0 |
|[0.48.0](https://github.com/tensorflow/model-analysis/blob/v0.48.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | 1.17.1 |
|[0.47.1](https://github.com/tensorflow/model-analysis/blob/v0.47.1/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1 |
|[0.47.0](https://github.com/tensorflow/model-analysis/blob/v0.47.0/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1 |
Expand Down
19 changes: 19 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@

## Major Features and Improvements

* N/A

## Bug fixes and other Changes

* N/A

## Breaking Changes

* N/A

## Deprecations

* N/A

# Version 0.52.0

## Major Features and Improvements

* Adds official support for Python 3.12 and 3.13.
* Drops support for Python 3.9.
* Depends on `tensorflow>=2.21.0,<2.22.0`.
Expand Down Expand Up @@ -38,6 +56,7 @@
* Python 3.9 is no longer supported. The minimum supported Python version is now 3.10.

## Deprecations
* N/A

# Version 0.48.0

Expand Down
3 changes: 2 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ combinations may also work.

tensorflow-model-analysis | apache-beam[gcp] | pyarrow | tensorflow | tensorflow-metadata | tfx-bsl
------------------------------------------------------------------------------------ | ---------------- | ------- | ------------- | ------------------- | -------
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.65.0 | 10.0.1 | nightly (2.x) | 1.17.1 | 1.17.1
[GitHub master](https://github.com/tensorflow/model-analysis/blob/master/RELEASE.md) | 2.65.0 | 14.0.1 | nightly (2.x) | 1.21.0 | 1.21.0
[0.52.0](https://github.com/tensorflow/model-analysis/blob/v0.52.0/RELEASE.md) | 2.65.0 | 14.0.1 | 2.21 | 1.21.0 | 1.21.0
[0.48.0](https://github.com/tensorflow/model-analysis/blob/v0.48.0/RELEASE.md) | 2.65.0 | 10.0.1 | 2.17 | 1.17.1 | 1.17.1
[0.47.1](https://github.com/tensorflow/model-analysis/blob/v0.47.1/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1
[0.47.0](https://github.com/tensorflow/model-analysis/blob/v0.47.0/RELEASE.md) | 2.60.0 | 10.0.1 | 2.16 | 1.16.1 | 1.16.1
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,14 +335,14 @@ def select_constraint(default, nightly=None, git_master=None):
"tensorflow-estimator>=2.10",
"tensorflow-metadata"
+ select_constraint(
default="@git+https://github.com/tensorflow/metadata@master",
nightly=">=1.18.0.dev",
default=">=1.21.0,<1.22.0",
nightly=">=1.22.0.dev",
git_master="@git+https://github.com/tensorflow/metadata@master",
),
"tfx-bsl"
+ select_constraint(
default="@git+https://github.com/tensorflow/tfx-bsl@master",
nightly=">=1.18.0.dev",
default=">=1.21.0,<1.22.0",
nightly=">=1.22.0.dev",
git_master="@git+https://github.com/tensorflow/tfx-bsl@master",
),
"tf-keras",
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_model_analysis/notebook/jupyter/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tensorflow_model_analysis",
"version": "0.49.0.dev",
"version": "0.53.0.dev",
"homepage": "https://github.com/tensorflow/model-analysis",
"bugs": "https://github.com/tensorflow/model-analysis/issues",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_model_analysis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

# Version string for this release of TFMA.
# Note that setup.py reads and uses this version.
VERSION = "0.49.0.dev"
VERSION = "0.53.0.dev"
Loading