Gianluca Gippetto

Results 27 comments of Gianluca Gippetto

This always gives an error after you've produced the doc in dist/docs, right? `Checking distribution dist/docs: InvalidDistribution: Unknown distribution format: 'docs'`

@ionelmc It seems that AppVeyor plays well with tox now: https://www.appveyor.com/docs/lang/python/ ```yml --- environment: matrix: - TOXENV: py27 - TOXENV: py35 - TOXENV: py36 - TOXENV: py37 build: off install:...

I've no stats, but I guess python 32 bit is quite rare nowadays. I'd personally rip out it (by default, at least). If someone wants it, adding x86 into the...

Leaving that out, is it really necessary to test a pure Python package on _both_ x86 and x64? What's the probability that something working on x64 won't work on x86...

I have no time, sorry :[

I've just run `bumpversion --new-version 0.6.1-dev --no-tag patch` with `current_version = 0.6.0`. Bumpversion replaced `0.6.0` with just `0.6.1` in all relevant files, even though setup.cfg was correctly updated with `current_version...

Thank you! > The only constraint is that they have to be working snippets in the interpreter. This is actually a pretty strong constraint, which I think underrated a bit....

I think the 2nd solution suggested by @espdev is pretty reasonable. Otherwise, [shameless plug] you may consider using [Cloup](https://github.com/janluke/cloup) (a set of click extensions): ```python from pathlib import Path import...