DWesl
DWesl
## PR Summary Add a Cygwin run to GHA, as suggested by https://github.com/matplotlib/matplotlib/issues/22997#issuecomment-1120064419 ## PR Checklist **Tests and Styling** - [ ] Has pytest style unit tests (and `pytest` passes)....
I have an experiment design that does not include all combinations of its categorical variables, and ran into some difficulties getting a full-rank design matrix for `statsmodels`. I included a...
```python >>> import numpy as np >>> import numpy.linalg as la >>> import pandas as pd >>> import formulaic >>> index_vals = tuple("abc") >>> level_names = list("AB") >>> n_samples =...
This adds a CI job for my development platform, which will hopefully avoid issues like #2196 and #2446. This also avoids installing test plugins (or any plugins if `--without-plugin-dir` is...
Use recent mechanisms to declare NumPy a build-time dependency, note that it's also required at run-time, and add some more metadata I could guess from the documentation, and try to...
My compiler complained about a rank mismatch, so I copied the declarations from the called functions to the calling functions. Edit: Refocused to be just the Fortran updates, since I...
Quiet the compiler warnings in registry.exe TYPE: bug fix KEYWORDS: compiler warnings, snprintf, initial values, string length SOURCE: "Daniel Wesloh (Pennsylvania State University Department of Meteorology and Atmospheric Science)" DESCRIPTION...
I got mildly annoyed getting my package manager to cooperate with the makefile, so I set up an autotools build system and changed the tests to support TAP. I have...
Fork failures are not uncommon on Cygwin, which causes an exception in the constructor. Unfortunately, cleaning up the partially-initialized instance calls the `__del__` method, which then raises another exception because...
https://github.com/python-pillow/Pillow/issues/7158#issuecomment-1546746716 and https://github.com/pypa/setuptools/blob/e76db4408e40a5c0a218ef6f652454f69c5aca59/setuptools/_distutils/ccompiler.py#L1055-L1058 suggest that Cygwin uses `UnixCCompiler` rather than `CygwinCCompiler` by default, so `UnixCCompiler` would also need to know how to find shared libraries, import libraries, and static libraries...