Commit 5dc78114 authored by Chen Chen's avatar Chen Chen Committed by A. Unique TensorFlower
Browse files

Change the version of tf models nightly pip to 2.3.0 and the required...

Change the version of tf models nightly pip to 2.3.0 and the required tensorflow package for non-nightly pip to tensorflow>=2.3.0.

PiperOrigin-RevId: 324656938
parent f1b3f22c
...@@ -20,7 +20,7 @@ import sys ...@@ -20,7 +20,7 @@ import sys
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
version = '2.2.0' version = '2.3.0'
project_name = 'tf-models-official' project_name = 'tf-models-official'
...@@ -60,7 +60,7 @@ if project_name == 'tf-models-nightly': ...@@ -60,7 +60,7 @@ if project_name == 'tf-models-nightly':
version += '.dev' + datetime.datetime.now().strftime('%Y%m%d') version += '.dev' + datetime.datetime.now().strftime('%Y%m%d')
install_requires.append('tf-nightly') install_requires.append('tf-nightly')
else: else:
install_requires.append('tensorflow>=2.2.0') install_requires.append('tensorflow>=2.3.0')
print('install_requires: ', install_requires) print('install_requires: ', install_requires)
print('dependency_links: ', dependency_links) print('dependency_links: ', dependency_links)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment