1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

broaden supported package versions (#50)

* broaden supported package versions.
* fix mxnet variants.
Also back-out tuple deprecation change introduced in prior commit.
* correct CI image deployment on master branch merge.
This commit is contained in:
Scott Leishman
2018-11-15 05:29:49 -08:00
committed by Gal Novik
parent 6d40ad1650
commit fe6857eabd
3 changed files with 25 additions and 25 deletions

View File

@@ -315,11 +315,11 @@ jobs:
TAG=$(git describe --tags --always --dirty) TAG=$(git describe --tags --always --dirty)
docker pull ${REGISTRY}/coach-base:${TAG} docker pull ${REGISTRY}/coach-base:${TAG}
docker tag ${REGISTRY}/coach-base:${TAG} coach-base:${MASTER_BRANCH} docker tag ${REGISTRY}/coach-base:${TAG} ${REGISTRY}/coach-base:${MASTER_BRANCH}
docker push ${REGISTRY}/coach-base:${MASTER_BRANCH} docker push ${REGISTRY}/coach-base:${MASTER_BRANCH}
docker pull ${REGISTRY}/coach:${TAG} docker pull ${REGISTRY}/coach:${TAG}
docker tag ${REGISTRY}/coach:${TAG} coach:${MASTER_BRANCH} docker tag ${REGISTRY}/coach:${TAG} ${REGISTRY}/coach:${MASTER_BRANCH}
docker push ${REGISTRY}/coach:${MASTER_BRANCH} docker push ${REGISTRY}/coach:${MASTER_BRANCH}
workflows: workflows:

View File

@@ -1,18 +1,18 @@
annoy==1.8.3 annoy>=1.8.3
Pillow==4.3.0 Pillow>=4.3.0
matplotlib==2.0.2 matplotlib>=2.0.2
numpy==1.14.5 numpy>=1.14.5
pandas==0.22.0 pandas>=0.22.0
pygame==1.9.3 pygame>=1.9.3
PyOpenGL==3.1.0 PyOpenGL>=3.1.0
scipy==0.19.0 scipy>=0.19.0
scikit-image==0.13.0 scikit-image>=0.13.0
box2d==2.3.2 box2d>=2.3.2
gym[atari]==0.10.5 gym[atari]>=0.10.5
bokeh==0.13.0 bokeh>=0.13.0
futures==3.1.1 futures>=3.1.1
wxPython==4.0.1 wxPython>=4.0.1
kubernetes==8.0.0b1 kubernetes>=8.0.0b1
redis==2.10.6 redis>=2.10.6
minio==4.0.5 minio>=4.0.5
pytest==3.8.2 pytest>=3.8.2

View File

@@ -63,13 +63,13 @@ if not using_GPU:
# For linux wth no GPU, we install the Intel optimized version of TensorFlow # For linux wth no GPU, we install the Intel optimized version of TensorFlow
if sys.platform == "linux" or sys.platform == "linux2": if sys.platform == "linux" or sys.platform == "linux2":
subprocess.check_call(['pip install ' subprocess.check_call(['pip install '
'https://anaconda.org/intel/tensorflow/1.6.0/download/tensorflow-1.6.0-cp35-cp35m-linux_x86_64.whl'], 'https://storage.googleapis.com/intel-optimized-tensorflow/tensorflow-1.11.0-cp35-cp35m-linux_x86_64.whl'],
shell=True) shell=True)
install_requires.append('tensorflow==1.6.0') install_requires.append('tensorflow>=1.9.0')
extras['mxnet'] = ['mxnet-cu90mkl>=1.3.0']
else:
install_requires.append('tensorflow-gpu==1.9.0')
extras['mxnet'] = ['mxnet-mkl>=1.3.0'] extras['mxnet'] = ['mxnet-mkl>=1.3.0']
else:
install_requires.append('tensorflow-gpu>=1.9.0')
extras['mxnet'] = ['mxnet-cu90mkl>=1.3.0']
all_deps = [] all_deps = []
for group_name in extras: for group_name in extras: