Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
laxmareddyp authored Feb 13, 2024
1 parent d6d0fe0 commit 93295e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions official/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def _get_requirements(is_nightly=False):

if project_name == 'tf-models-nightly':
install_requires, dependency_links = _get_requirements(is_nightly=True)
version_split = version.split(".")
version_split = version.split('.')
version_split[1] = str(int(version_split[1]) + 1)
version = ".".join(version_split)
version = '.'.join(version_split)
version += '.dev' + datetime.datetime.now().strftime('%Y%m%d')
install_requires.append('tf-nightly')
install_requires.append('tensorflow-text-nightly')
Expand Down

0 comments on commit 93295e4

Please sign in to comment.