Roberto Di Remigio Eikås

Results 54 issues of Roberto Di Remigio Eikås

Let's fix CI, which is currently rotten and useless for incoming PRs. ## Description - [X] Use Poetry to manage Python requirements - [ ] Move to GitHub actions for...

After days working on it, we have no idea why Recipe 5 in Chapter 11 suddenly started failing on Appveyor. See #487 for the numerous attempts.

testing
appveyor-ci

Found out in #442. The libraries are found in the image if I use GCC, rather than PGI. I think CMake sets slightly different paths, but I am unsure how...

low-priority
circle-ci

I am trying to debug a C++ Python extension. I am trying to use `lldb` with `lldb -- python`, but I get: ``` (lldb) target create "python" error: '/nix/store/4128wqa19fs4h840wc01mg2xcw3dvyn3-python3-3.9.9-env/bin/python' doesn't...

- Set up Azure pipeline to test clang-cl - Fix various `CMakeLists.txt` for new compiler. This is the [Azure build log](https://dev.azure.com/robertodr/xtensor-python/_build/results?buildId=100) You'll need an Azure free account and set up...

First off, very nice project! @gabrielelanaro I've followed your tutorial [here](http://gabrielelanaro.github.io/blog/2015/01/14/visualizing-molecular-orbitals-ipython-notebook.html) to set up a notebook for a class on the Hückel method. I can render the notebook on my...

I think not all is well (yet) for the JupyterLab extension. Identical code for rendering a surface from a cube file works differently in the notebook and lab interfaces. Here...

bug
jupyterlab

I am trying and failing to create an environment with Numpy linked to MKL. This is my `pyproject.toml`: ``` [tool.poetry] name = "example" version = "0.1.0" description = "" authors...

Fixes linking failure with gold, where linker flags are mangled. For example, I was getting this: ``` -Wl,-z,nodelete;-Wl,-no-undefined ``` where it should really be: ``` -Wl,-z,nodelete -Wl,-no-undefined ```