Emergency Self-Construct

Results 879 comments of Emergency Self-Construct

Don't think I'll get around to this.

@qm64 thank you very much for reporting this issue, Can you elaborate a bit more on the issue that you are facing, please. Was the script actually not picked up,...

I have been using pybuilder in anaconda envs for many years now. You can just pip install pybuilder into an anaconda environment. I then usually install any important packages such...

FWIW: I am using pybuilder with anaconda on a daily basis and it works fine. I think the issue is probably with the PyCharm configuration, but it's a guess at...

I did have that idea some time ago, but it seemed to tricky to do properly. IIRC TOX also checks the sanity of your distribution by creating it and then...

So the tox plugin for pybuilder would call tox, which would then again call pybuilder in each of it's virtualenvs..

I saw this today: ``` [tox] envlist = py26, py27 [testenv] deps = pybuilder commands = pyb install_dependencies pyb verify `` ```

Sorry, I saw that on the 'master' of a project. As it turns out, this `tox.ini` was a leftover. Someone had commited a `setup.py` and a `tox.ini`. Later on, the...

So, yeah, sorry for the noise, it still seems like tox needs a `setup.py`... What are your thoughts on running tox from pybuilder in the `dist``directory with the autogenerated``setup.py``?

One idea is to write (or autogenerate) a fake setup.py that proxies commands towards pybuilder. It would of course be one big hack. The main problem with tox that I...