Max Klein
Max Klein
I'm running into the exact same problem, and fixed it almost the exact way that @souzapd did: ``` git clone https://github.com/RJT1990/pyflux.git cd pyflux pip install . ``` This has the...
@joerick I took this one on. See #211. Feedback would be much appreciated
Apparently, variable-definition-in-loop was a feature added to the C language as part of the C99 standard. Whereas even the most modern version of `icc` for some questionable reason defaults to...
Probably will need something in a CMake file like: ```cmake if(${CMAKE_C_COMPILER_ID} MATCHES "Intel") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") endif(${CMAKE_C_COMPILER_ID} MATCHES "Intel") ``` [relevant cmake docs](https://cmake.org/cmake/help/latest/variable/CMAKE_LANG_COMPILER_ID.html) ### Edit: Most of the relevant code...
@certik I did a fix PR at #271. Can you please try it out?
@certik It's been a while since I've had personal access to the intel compiler suite, so I have no actual way of testing this PR out myself. However, I'm pretty...
I would be curious to find out if the labextension-install-via-`setupy.py` in `HEAD` works with `poetry`. From the paths you shared above, it seems like it should.
Weird then that `nbdime` installs correctly, since its labextension gets installed via a very similar protocol in its own `setup.py`
I saw some very similar failures a couple of months ago: https://github.com/phosphorjs/phosphor/issues/441#issue-507427386 I can confirm that on my machine (OS X 10.14, Firefox 71) I still see the same set...
@pplonski I was able to reproduce the pathing issue you're seeing with the tests. It turns out to be due to the upgrade from Webpack `v2` => `v4` that was...