Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions NinjaUrls.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

#-----------------------------------------------------------------------------
# Ninja sources
set(unix_source_url "https://github.com/Kitware/ninja/archive/v1.10.2.g51db2.kitware.jobserver-1.tar.gz")
set(unix_source_sha256 "549c31ee596566b952c600e23eb9b8d39a4112cd5fdeb2e5a83370669176da40")
set(unix_source_url "https://github.com/Kitware/ninja/archive/v1.11.1.g95dee.kitware.jobserver-1.tar.gz")
set(unix_source_sha256 "7ba84551f5b315b4270dc7c51adef5dff83a2154a3665a6c9744245c122dd0db")

set(windows_source_url "https://github.com/Kitware/ninja/archive/v1.10.2.g51db2.kitware.jobserver-1.zip")
set(windows_source_sha256 "2dfd74ac583340869d5e236892d782f96bf70533706c1a2d7c968c43ded474bc")
set(windows_source_url "https://github.com/Kitware/ninja/archive/v1.11.1.g95dee.kitware.jobserver-1.zip")
set(windows_source_sha256 "d605f36bce5cf50799ad3a56e7d388d7c0cf6731db40f46334e076c7e036bfaa")
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Ninja Python Distributions

`Ninja <http://www.ninja-build.org>`_ is a small build system with a focus on speed.

The latest Ninja python wheels provide `ninja 1.10.2.g51db2.kitware.jobserver-1 <https://ninja-build.org/manual.html>`_ executable
The latest Ninja python wheels provide `ninja 1.11.1.g95dee.kitware.jobserver-1 <https://ninja-build.org/manual.html>`_ executable
and `ninja_syntax.py` for generating `.ninja` files.

.. image:: https://raw.githubusercontent.com/scikit-build/ninja-python-distributions/master/ninja-python-distributions-logo.png
Expand Down
16 changes: 8 additions & 8 deletions docs/update_ninja_version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ Classic procedure:
2. Execute `scripts/update_ninja_version.py` command line tool with the desired
``X.Y.Z`` Ninja version available for download. For example::

$ release=1.10.2.g51db2.kitware.jobserver-1
$ release=1.11.1.g95dee.kitware.jobserver-1
$ python scripts/update_ninja_version.py ${release}

Collecting URLs and SHA256s from 'https://github.com/Kitware/ninja/archive/v1.10.0.gfb670.kitware.jobserver-1'
Downloading https://github.com/Kitware/ninja/archive/v1.10.2.g51db2.kitware.jobserver-1.tar.gz
Downloading https://github.com/Kitware/ninja/archive/v1.10.2.g51db2.kitware.jobserver-1.tar.gz - done
Downloading https://github.com/Kitware/ninja/archive/v1.10.2.g51db2.kitware.jobserver-1.zip
Downloading https://github.com/Kitware/ninja/archive/v1.10.2.g51db2.kitware.jobserver-1.zip - done
Downloading https://github.com/Kitware/ninja/archive/v1.11.1.g95dee.kitware.jobserver-1.tar.gz
Downloading https://github.com/Kitware/ninja/archive/v1.11.1.g95dee.kitware.jobserver-1.tar.gz - done
Downloading https://github.com/Kitware/ninja/archive/v1.11.1.g95dee.kitware.jobserver-1.zip
Downloading https://github.com/Kitware/ninja/archive/v1.11.1.g95dee.kitware.jobserver-1.zip - done
Collecting URLs and SHA256s from 'https://github.com/Kitware/ninja/archive/v1.10.0.gfb670.kitware.jobserver-1' - done
Updating 'NinjaUrls.cmake' with CMake version 1.10.2.g51db2.kitware.jobserver-1
Updating 'NinjaUrls.cmake' with CMake version 1.10.2.g51db2.kitware.jobserver-1 - done
Updating 'NinjaUrls.cmake' with CMake version 1.11.1.g95dee.kitware.jobserver-1
Updating 'NinjaUrls.cmake' with CMake version 1.11.1.g95dee.kitware.jobserver-1 - done
Updating README.rst
Updating README.rst - done
Updating docs/update_ninja_version.rst
Expand All @@ -51,7 +51,7 @@ Classic procedure:
3. Create a topic named `update-to-ninja-X.Y.Z` and commit the changes.
For example::

release=1.10.2.g51db2.kitware.jobserver-1
release=1.11.1.g95dee.kitware.jobserver-1
git checkout -b update-to-ninja-${release}
git add NinjaUrls.cmake README.rst docs/update_ninja_version.rst tests/test_distribution.py
git commit -m "Update to Ninja ${release}"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def _check_ninja_install(virtualenv):
expected_version = "1.10.2.git.kitware.jobserver-1"
expected_version = "1.11.1.git.kitware.jobserver-1"

for executable_name in ["ninja"]:
output = virtualenv.run(
Expand Down