danielfm / pybreaker

Python implementation of the Circuit Breaker pattern.
BSD 3-Clause "New" or "Revised" License
512 stars 74 forks source link

Fix travis build #37

Closed jshiell closed 5 years ago

jshiell commented 5 years ago

The Travis build is broken at present due to two issues:

a) Tornado 5 has dropped Python 3.3 support b) redis & fakeredis have both seen updates that cause dependency version conflicts

This fixes (a) by applying similar behaviour as is already in place for Python 3.2, and (b) by locking the dependency versions to those used in the last successful builds.

danielfm commented 5 years ago

Thanks for the fix!