You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As described on StackOverflow, this is a result of our babelized projects specifying a build-system in pyproject.toml. The requirements listed in the build-system section are installed from PyPI with pip but, unfortunately, these requirements are incompatible with the conda compilers.
The text was updated successfully, but these errors were encountered:
#72 fixes this issue in our continuous integration tests. The fix is to first install the build-system with conda and then pip-install the project. That is,
We get the following error when compiling a C, C++, or Fortran babelized project with Python 3.8 on Linux,
As described on StackOverflow, this is a result of our babelized projects specifying a build-system in pyproject.toml. The requirements listed in the build-system section are installed from PyPI with pip but, unfortunately, these requirements are incompatible with the conda compilers.
The text was updated successfully, but these errors were encountered: