New versions of ducktape released for all python3 branches #357
stan-is-hate
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all!
We've just released the following versions of ducktape:
These releases contain no new functionality, the only thing that changes is that we've removed
tox
from dependencies.0.11.1 also includes a newer version of jinja2.
The reason for that is a recent breakage under python 3.7 caused by recent update to
virtualenv
:ducktape
requiredtox==3.20.0
tox==3.20.0
requiresvirtualenv>16.0.0
andimportlib-metadata<2
- https://github.com/tox-dev/tox/blob/3.20.0/setup.cfg#L38virtualenv 20.16.3
was released a couple of days ago and it bumped some deps - it now requiresimportlib-metadata>=4.8.3
, making it incompatible withtox==3.20.0
- https://github.com/pypa/virtualenv/blob/20.16.3/setup.cfg#L35We could've bumped the
tox
version, but since we don't actually use it anywhere in our code, we've decided we'd rather get rid of it entirely.Beta Was this translation helpful? Give feedback.
All reactions