Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ninja==1.11.1.2 build fails when built with --no-binary=ninja (or --no-binary=:all:) #274

Closed
TimotheusBachinger opened this issue Nov 25, 2024 · 12 comments · Fixed by #276
Closed

Comments

@TimotheusBachinger
Copy link

TimotheusBachinger commented Nov 25, 2024

Since ninja==1.11.1.2, we cannot built numpy anymore from source as it will fail with:

LookupError: https://files.pythonhosted.org/packages/b4/49/4f1a79f99f4c3eb5d22f943bba14832923bb44423254d5089d38a9f6da63/ninja-1.11.1.2.tar.gz (from https://pypi.org/simple/ninja/) (requires-python:>=3.7) is already being built: ninja>=1.8.2 from https://files.pythonhosted.org/packages/b4/49/4f1a79f99f4c3eb5d22f943bba14832923bb44423254d5089d38a9f6da63/ninja-1.11.1.2.tar.gz

numpy does not pin ninja in its build dependencies, which explains why the build is now failing:
https://github.com/numpy/numpy/blob/b1e6ccd14b173b922f5d6a11bb252f4141dc42cd/requirements/build_requirements.txt#L3

Do you have any idea what causes this?

TimotheusBachinger added a commit to TimotheusBachinger/numpy that referenced this issue Nov 25, 2024
@johningve
Copy link

I'm also having issues with this new version. It seems like ninja is calling itself recursively:

image

@mayeut
Copy link
Contributor

mayeut commented Nov 25, 2024

@TimotheusBachinger, it seems like the bootstrapping issue mentioned in scikit-build/cmake-python-distributions#503 (comment)

ninja requires cmake and cmake is requiring ninja.
Installing the system cmake should solve the issue.

Any reason you're not getting / using binary wheels ? (specific platform maybe ?)

@johningve, this doesn't seem like the same issue, can you please open a different issue with the reproducer please ?

@TimotheusBachinger
Copy link
Author

@mayeut thanks for pointing into that direction - this could really have caused the issue in our case (and due to heavy caching by bazel, to use it looked like the new ninja version...)

@TimotheusBachinger
Copy link
Author

I am re-opening the issue again as the cmake theory was a dead end for us.
Our quick fix for now it to use a constrain when building from source: Checkmk/checkmk@0316464

For us it is 100% the new version of ninja==1.11.1.2 which leds to the build failure.

@mayeut
Copy link
Contributor

mayeut commented Nov 26, 2024

@TimotheusBachinger,

In order to better understand the problem and provide a fix:

Any reason you're not getting / using binary wheels ? Force build from source or specific platform maybe ?

@TimotheusBachinger
Copy link
Author

@mayeut we're building for around 12 different platforms (debian, ubuntu, sles, centos, alma...) therefore we're building from source, yes (--no-binary=":all:")

@mayeut
Copy link
Contributor

mayeut commented Nov 26, 2024

ok, so I have an idea where the issue is coming from in that case. I will try something after day work to reproduce and hopefully fix this.
It's still a bootstrapping issue which this time should be handled by the new build system used by Ninja PyPI distribution.

@TimotheusBachinger
Copy link
Author

@mayeut sounds good, thanks for the effort and no hurry. We're fine with the constraints workaround.

@mayeut
Copy link
Contributor

mayeut commented Nov 26, 2024

Here's a quick status:
The build backend switched over to scikit-build-core. scikit-build-core is aware of platforms where binary wheels are available for ninja and will insert a dependency on ninja in the build requirements if a satisfying version is not found on the system.
In a --no-binary=":all:" (or just --no-binary=ninja) condition, trying to request ninja while building ninja triggers a recursive build of ninja (caught by the build frontend: ... is already being built: ninja>=1.8.2 ...).

I'll propose something a bit better than what's already there in #276 and let our resident expert review this.

@mayeut mayeut changed the title Building numpy fails with newest ninja==1.11.1.2 ninja==1.11.1.2 build fails when built --no-binary=ninja (or --no-binary=:all:) Nov 26, 2024
@mayeut mayeut changed the title ninja==1.11.1.2 build fails when built --no-binary=ninja (or --no-binary=:all:) ninja==1.11.1.2 build fails when built with --no-binary=ninja (or --no-binary=:all:) Nov 26, 2024
@cdce8p
Copy link

cdce8p commented Nov 27, 2024

I'm seeing the same issue when trying to build ninja itself. A reproducer in case that's useful

docker pull python:3.13.0
docker run -it --rm python:3.13.0 bash

pip install -v --no-binary ninja ninja==1.11.1.2

A temporary workaround is to use --no-build-isolation.

docker run -it --rm python:3.13.0 bash

pip install scikit-build-core "hatch-fancy-pypi-readme>=22.3" setuptools-scm
pip install -v --no-binary ninja --no-build-isolation ninja==1.11.1.2

@harmstyler
Copy link

Is there any progress on this? Seems like there's an open Pull Request. Does this need extra help?

@mayeut
Copy link
Contributor

mayeut commented Dec 15, 2024

This should be fixed with version 1.11.1.3 now available on PyPI

CheckmkCI pushed a commit to Checkmk/checkmk that referenced this issue Dec 17, 2024
Should be resolved upstream, see
scikit-build/ninja-python-distributions#274 (comment)

This reverts commit 0316464.

Change-Id: I58df35d344e80a42b79f859f3b3c8fb5752076e4
@mayeut mayeut unpinned this issue Dec 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants