Christoph Wiedemann

Results 11 issues of Christoph Wiedemann

Thanks for this very nice package. Just a recommendation - a binary wheel for windows available from pypi would make the installation a lot easier.

bug

# Summary Not sure if this is really a pytest-cov issue or a PySide6 issue, but I'm reporting here first. Attached is a simple test project structure. pytest crashes with...

Currently, the orbit function clips the elevation angle to +- 90 degrees. self.opts['elevation'] = np.clip(self.opts['elevation'] + elev, -90, 90) When using the 3D view, this is sometimes annoying, because the...

openGL

Personally, I don't like the left-over build directories from enscons (these are caused by the `"#build..."` references in `__init__.py`). I'd love to see a convenient option to auto-clean these directories...

The setuptools add existing LICENSE files to the dist-info data (in addition to eventually available license="MIT" arguments given in the setup() function). Is this actually possible with enscons? It seems...

as suggested in https://github.com/dholth/enscons/issues/36 Example: in SConstruct, add ````python for k in ARGUMENTS: print(k, "->", ARGUMENTS[k]) ```` if building a wheel with `pip wheel python-sample/ --config-settings 'a=b' --verbose --verbose --verbose`...

Hi @dholth, first of all many thanks for this project. I'm currently searching for alternatives for our current setup.py based python packaging (due to the deprecation of setuptools command line...

instead of the default uint8.

Hi, we have a long running test suite which consists of a single test function run on different input files (the input files are passed via @pytest.mark.parametrize). The function runs...

looks like something changed regarding the toolchain naming. I had to change derive_toolchain_dir(args) to: ``` @@ -454,6 +454,8 @@ def derive_toolchain_dir(args): return parts[1] + '_' + parts[0][-2:] else: return parts[1]...