This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 462
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require Python 3.6 + Changes to CI configuration (#452)
* Change build_*_env jobs to pull base image of current "tag" instead of "master" image * Change nightly flow so build_*_env jobs now gated by build_base (so change in previous bullet works in nightly) * Bugfix in CheckpointDataStore: Call to object.__init__ with parameters * Disabling unstable Doom A3C and ACER golden tests
- Loading branch information
Showing
7 changed files
with
46 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,14 +66,7 @@ | |
|
||
if not using_GPU: | ||
if not slim_package: | ||
# For linux wth no GPU, we install the Intel optimized version of TensorFlow | ||
if sys.platform == "linux" or sys.platform == "linux2": | ||
# CI: limiting version to 1.13.1 due to | ||
# https://github.com/tensorflow/tensorflow/issues/29617 | ||
# (reproduced with intel-tensorflow 1.14.0 but not with 1.13.1) | ||
install_requires.append('intel-tensorflow==1.13.1') | ||
else: | ||
install_requires.append('tensorflow>=1.9.0,<=1.14.0') | ||
install_requires.append('tensorflow>=1.9.0,<=1.14.0') | ||
extras['mxnet'] = ['mxnet-mkl>=1.3.0'] | ||
else: | ||
if not slim_package: | ||
|
@@ -94,7 +87,7 @@ | |
author='Intel AI Lab', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
python_requires=">=3.5.*", | ||
python_requires=">=3.6.*", | ||
install_requires=install_requires, | ||
extras_require=extras, | ||
package_data={'rl_coach': ['dashboard_components/*.css', | ||
|