Chris Billington

Results 87 comments of Chris Billington

We are testing this, and came across an issue with the web API for uploading instruments. The flask app fails to start: ```bash root@koheron:~# journalctl -u uwsgi.service -f -- Logs...

I'm looking for something like this too. My use case is making sdists in CI. `pip wheel` with its PEP 518 support means I no longer need to install build...

Thanks @sbidoul, looks like I should use pep517 until the discussion about where the 'build an sdist according to PEP 517' tool belongs is settled. Maybe pep517 should be renamed...

> (Alas, pyproject is taken on PyPI.) Ah, unluckly. Even if the author were happy to relinquish it (it doesn't look active, though the author's other projects are), it'd be...

It looks like a real project to me, and seems to predate the PEPs introducing `pyproject.toml` so doesn't look like intentional name-squatting. It's just unmaintained.

My problem is completely addressed by `python -m pep517.build -s .`, which other than the awkward name of the `pep517` project has no drawbacks that I've encountered. I'm not in...

To work around this issue, I've been compositing the original image over two differently-coloured solid backgrounds, upscaling those two alpha-free images separately, then doing some [pixel maths](https://imagemagick.org/Usage/masking/#two_background) on the upscaled...

For clarification: miniconda does have installers with a 3.9 base environment available, but the download link on [the main download page](https://docs.conda.io/en/latest/miniconda.html) is for 3.8, and the `Miniconda3-latest-*.{sh,exe}` [downloads](https://repo.anaconda.com/miniconda/) have 3.8.5...

Me too, though I am specifying miniconda-version as "latest". Is the intention that one needs to be specific and not just specify "latest"? ```yaml - name: Install Miniconda uses: conda-incubator/setup-miniconda@v2...

Thanks for the info @ktbarrett. Is there a way to say "use the most recent version number"? That's what I actually want. I mistakenly thought that's what "latest" meant, and...