Allan Lewis

Results 34 comments of Allan Lewis

What's the status of this issue? It seems that Zappa does work with v1 and maybe also v2. Is it just a matter of configuring the CI to test against...

Presumably the optional dependencies can be included using `setuptools`' "extras" mechanism?

> I've looked at https://github.com/jazzband/pip-tools/actions/runs/3175334504/jobs/5173249582#step:11:37 and was confused by it complaining about the actions/checkout action. So I scrolled up and, to my horror, saw it using the `@master` version. That...

Some tests are failing on this branch, I'll see if I can find time to investigate.

I've dropped DRF 3.11 and 3.12 from this PR, although I suspect the incompatibility is only in this repo's test suite and isn't fundamental. There are still some tests failing...

I'm using something like this in my code, where I'm using Python 2.7 with `enum34==1.1.6`: ```py @click.option( '--enum-val', type=click.Choice(MyEnum.__members__), callback=lambda c, p, v: getattr(MyEnum, v) if v else None) ```...

@yoyonel you could replace the `lambda` with `attrgetter('name')` 🙂