Alan D. Snow

Results 400 comments of Alan D. Snow

Wekzeug 1.0+ works fine with django.

https://github.com/pyproj4/pyproj/blob/527462072036b6eb6ae228777cad9761aa57735c/setup.py#L94-L106 This might help: ``` "compiler_directives": {"embedsignature": True}, ```

Makes sense. I would vote for something like option B as it is nice to be able to look up usage via the code.

> I think I remember seeing some recent gdal-dev or GitHub discussion of a gdal-config (or equivalent) for Windows. Sounds interesting. If you find it, it would be interesting to...

@sgillies would you be in opposed to a PR with the linting & pre-commit config files?

> are you going to go for the same approach as in pyproj Yep, that is the plan. Sounds like it is time to add the config files. Feel free...

@sgillies, the plan for this issue is to add configuration files without actually running linting on any of the files. Then, as PRs are made, the linting can be run...

@sgillies, thoughts about a minimal pylint setup to check for imports? ```bash python -m pylint --disable=all --enable=undefined-variable,unused-import rasterio/ ``` ``` ************* Module rasterio.profiles rasterio/profiles.py:4:0: W0611: Unused import warnings (unused-import) *************...

There are things I like about this MR: - simplifies code However, we do lose clarity: - The error: `rasterio.errors.TransformError: Input coordinates must be of equal length` is a useful...