dessa-oss / atlas

An Open Source, Self-Hosted Platform For Applied Deep Learning Development
http://www.docs.atlas.dessa.com
Apache License 2.0
291 stars 44 forks source link

Update README.md with badges to show all pipeline statuses. #167

Closed mohammedri closed 4 years ago

mohammedri commented 4 years ago

Update README.md with badges to show all pipeline statuses.

mohammedri commented 4 years ago

Github Actions is failing due to:


ImportError: cannot import name 'Context' from 'docker' (/opt/hostedtoolcache/Python/3.7.7/x64/lib/python3.7/site-packages/docker/__init__.py)```
amackillop commented 4 years ago

Github Actions is failing due to:

ImportError: cannot import name 'Context' from 'docker' (/opt/hostedtoolcache/Python/3.7.7/x64/lib/python3.7/site-packages/docker/__init__.py)```

Investigating

amackillop commented 4 years ago

Tried things out locally and everything works as expected. The only difference is that the pipeline installs docker-compose via python while I use my system install. The problem is that docker-compose released 7 hours ago and is probably no longer compatible with our pinned docker requirement. We can pin docker-compose to the last version (1.25.5) and that should fix it.

amackillop commented 4 years ago

I verified that installing the latest docker-compose causes the fail to happen locally while installing version 1.25.5 succeeds.

mohammedri commented 4 years ago

Thanks @amackillop !