-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GitHub Action for Nightly #1309
Conversation
pip_build.py
Outdated
@@ -45,14 +46,36 @@ | |||
] | |||
|
|||
|
|||
def build(): | |||
def export_version_string(version, is_nightly=False, rc_index=None): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copied from keras
repo pip_build.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! A few comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one last comment! Looks good to me after it is resolved.
Oh also I think the
|
Fixed it and also tested locally. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good just minor nits!
It has been failing since keras-team#1309, see https://github.com/keras-team/keras-nlp/actions/runs/6819858177/job/18547841938 I believe what is happening is that newly pinned nightly only had linux wheels for 3.9. And our publish to pypi flow did not specify the python version. https://pypi.org/project/tensorflow-text-nightly/2.16.0.dev20231107/#files Doing a few things here: - Updating the pinned package to a version where tensorflow-text-nightly has support for python 3.9, 3.10, and 3.11 on linux. - Fixing out publish to pypi workflow to set the python version like other workflow versions. - Some other cleanups for consistency with our github actions.
It has been failing since #1309, see https://github.com/keras-team/keras-nlp/actions/runs/6819858177/job/18547841938 I believe what is happening is that newly pinned nightly only had linux wheels for 3.9. And our publish to pypi flow did not specify the python version. https://pypi.org/project/tensorflow-text-nightly/2.16.0.dev20231107/#files Doing a few things here: - Updating the pinned package to a version where tensorflow-text-nightly has support for python 3.9, 3.10, and 3.11 on linux. - Fixing out publish to pypi workflow to set the python version like other workflow versions. - Some other cleanups for consistency with our github actions.
* Add GitHub Action for Nightly * Add GitHub Action for Nightly * Add GitHub Action for Nightly * Move tf-nightly pin to 11/4 * Move tf-nightly pin to 11/7
It has been failing since keras-team#1309, see https://github.com/keras-team/keras-nlp/actions/runs/6819858177/job/18547841938 I believe what is happening is that newly pinned nightly only had linux wheels for 3.9. And our publish to pypi flow did not specify the python version. https://pypi.org/project/tensorflow-text-nightly/2.16.0.dev20231107/#files Doing a few things here: - Updating the pinned package to a version where tensorflow-text-nightly has support for python 3.9, 3.10, and 3.11 on linux. - Fixing out publish to pypi workflow to set the python version like other workflow versions. - Some other cleanups for consistency with our github actions.
* Add GitHub Action for Nightly * Add GitHub Action for Nightly * Add GitHub Action for Nightly * Move tf-nightly pin to 11/4 * Move tf-nightly pin to 11/7
No description provided.