scikit-build


Namescikit-build JSON
Version 0.17.6 PyPI version JSON
download
home_page
SummaryImproved build system generator for Python C/C++/Fortran/Cython extensions
upload_time2023-05-31 20:24:33
maintainer
docs_urlNone
authorThe scikit-build team
requires_python>=3.7
license
keywords scikit-build
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            

**scikit-build** is a Python build system for CPython C/C++/Fortran/Cython
extensions using CMake.

The scikit-build package is fundamentally just glue between the ``setuptools``
Python module and `CMake`_.

The next generation of scikit-build, `scikit-build-core`_, is currently under development.
This provides a simple, reliable build backend for CMake that does not use
setuptools and provides a lot of new features. Scikit-build-core can also power
a setuptools-based extension system, which will eventually become the backend
for scikit-build (classic). If you do not require extensive customization of
the build process, you should consider trying scikit-build-core instead of
scikit-build.

To get started, see `this example <https://scikit-build.readthedocs.io/en/latest/usage.html#example-of-setup-py-cmakelists-txt-and-pyproject-toml>`_. For more examples, see `scikit-build-sample-projects <https://github.com/scikit-build/scikit-build-sample-projects>`_.




Scikit-build 0.17.6
===================

A small fix release with some new platforms and better testing, including CPython 3.12.0b1.

Bug fixes
---------

* Support added for SunOS by `@mtelka <https://github.com/mtelka>`_ in `#983 <https://github.com/scikit-build/scikit-build/pull/983>`_.
* Support added for AIX (with recent CMake) by `@bhuntsman <https://github.com/bhuntsman>`_ in `#988 <https://github.com/scikit-build/scikit-build/pull/988>`_.

Testing
-------

* Tests now pass on CPython 3.12.0b1 in `#879 <https://github.com/scikit-build/scikit-build/pull/879>`_.
* Tests no longer use ``pytest-virtualenv`` in `#879 <https://github.com/scikit-build/scikit-build/pull/879>`_.
* ``isolated`` marker now includes ``test_distribution`` tests in `#879 <https://github.com/scikit-build/scikit-build/pull/879>`_.
* Tests avoid incorrect ``get_map`` match by `@keszybz <https://github.com/keszybz>`_ in `#990 <https://github.com/scikit-build/scikit-build/pull/990>`_.
* Fedora testing fix by `@LecrisUT <https://github.com/LecrisUT>`_ in `#986 <https://github.com/scikit-build/scikit-build/pull/986>`_ and `#938 <https://github.com/scikit-build/scikit-build/pull/938>`_.

Miscellaneous
-------------

* Docs improvements in `#979 <https://github.com/scikit-build/scikit-build/pull/979>`_.

Scikit-build 0.17.5
===================

A small fix release fixing the passing on of generator specific arguments. This
fixes some cases where the Ninja generator was found but then was unable to
build. NetBSD was reported to work, so was added to the BSD's supported.

Bug fixes
---------

* Generator args were missing for actual compile in `#975 <https://github.com/scikit-build/scikit-build/pull/975>`_.
* Add support for netbsd & pyodide (future) in `#977 <https://github.com/scikit-build/scikit-build/pull/977>`_.



Scikit-build 0.17.4
===================

A followup fix to the issue 0.17.3 tried to fix. We now have a method to
manually test downstream packages, too.

Bug fixes
---------

* Make sure include dir is found even if the lib is not present in `#974 <https://github.com/scikit-build/scikit-build/pull/974>`_.

Scikit-build 0.17.3
===================

A small release related to ``PYTHON_LIBRARY`` handling changes in 0.17.2;
scikit-build 0.17.3 returns an empty string from ``get_python_library`` if no
Python library is present (like on manylinux), where 0.17.2 returned None, and
previous versions returned a non-existent path. Note that adding ``REQUIRED``
to ``find_package(PythonLibs`` will fail, but it is incorrect (you must not
link to ``libPython.so``) and was really just injecting a non-existent path
before.

Bug fixes
---------

* Keep ``get_python_library``  return type string if python lib non-existing
  for now in `#959 <https://github.com/scikit-build/scikit-build/pull/959>`_.
* Avoid 'not found' warning if libs are not found by FindPythonExtensions in `#960 <https://github.com/scikit-build/scikit-build/pull/960>`_.
* FindNumPy should not call FindPythonLibs in `#958 <https://github.com/scikit-build/scikit-build/pull/958>`_.

Scikit-build 0.17.2
===================

Another small release with fixes for non-MSVC Windows platforms.

Bug fixes
---------

* RPM spec fix by `@LecrisUT <https://github.com/LecrisUT>`_ in `#937 <https://github.com/scikit-build/scikit-build/pull/937>`_.
* Validate value before returning library path by `@dlech <https://github.com/dlech>`_ in `#942 <https://github.com/scikit-build/scikit-build/pull/942>`_.
* Only add ``Python_LIBRARY`` on Windows MSVC in `#943 <https://github.com/scikit-build/scikit-build/pull/943>`_ and `#944 <https://github.com/scikit-build/scikit-build/pull/944>`_.
* Slightly nicer traceback for failed compiler in `#947 <https://github.com/scikit-build/scikit-build/pull/947>`_.

Testing
-------
* Hide a few warnings that are expected in `#948 <https://github.com/scikit-build/scikit-build/pull/948>`_.

Scikit-build 0.17.1
===================

This is a small release fixing a few bugs; the primary one being a change that
was triggering a bug in older FindPython. The unused variable messages have
been deactivated to simplify output, as well.

Bug fixes
---------

* Older (<3.24) CMake breaks when lib specified in `#932 <https://github.com/scikit-build/scikit-build/pull/932>`_.
* An error output was missing formatting in `#931 <https://github.com/scikit-build/scikit-build/pull/931>`_.
* Make empty ``CMAKE_OSX_DEPLOYMENT_TARGET`` a warning (bug in conda-forge's
  clang activation fixed upstream) in `#934 <https://github.com/scikit-build/scikit-build/pull/934>`_.
* Remove unused variable warnings by in `#930 <https://github.com/scikit-build/scikit-build/pull/930>`_.

Testing
-------

* Add Fedora packaging with packit automation by `@LecrisUT <https://github.com/LecrisUT>`_ in `#928 <https://github.com/scikit-build/scikit-build/pull/928>`_.
* Fix codecov ci by `@LecrisUT <https://github.com/LecrisUT>`_ in `#929 <https://github.com/scikit-build/scikit-build/pull/929>`_.
* Update some coverage settings in `#933 <https://github.com/scikit-build/scikit-build/pull/933>`_.



Scikit-build 0.17.0
===================

A lot of bug fixes are present in this release, focusing on Windows, PyPy, and
cross compiling. We've also improved the compatibility with default setuptools
behaviors a little, and enabled some things that were previously unavailable,
like overriding the build type via the cmake argument environment variables.
We've expanded our CI matrix to include Windows and macOS PyPy and some Fortran
tests on Linux. This release requires Python 3.7+.

Bug fixes
---------

* Match setuptools behavior for ``include_package_data`` default. by `@vyasr <https://github.com/vyasr>`_ in `#873 <https://github.com/scikit-build/scikit-build/pull/873>`_.
* Misc. fixes for F2PY and PythonExtensions modules by `@benbovy <https://github.com/benbovy>`_ in `#495 <https://github.com/scikit-build/scikit-build/pull/495>`_.
* Provide more useful error if user provides ``CMAKE_INSTALL_PREFIX`` by `@vyasr <https://github.com/vyasr>`_ in `#872 <https://github.com/scikit-build/scikit-build/pull/872>`_.
* Stop assuming that ``.pyx`` files are in the same directory as ``CMakeLists.txt`` by `@vyasr <https://github.com/vyasr>`_ in `#871 <https://github.com/scikit-build/scikit-build/pull/871>`_.
* Allow build type overriding in `#902 <https://github.com/scikit-build/scikit-build/pull/902>`_.
* Detect PyPy library correctly on Windows by user:`gershnik` in `#904 <https://github.com/scikit-build/scikit-build/pull/904>`_.
* Include library for FindPython for better Windows cross-compiles in `#913 <https://github.com/scikit-build/scikit-build/pull/913>`_. Thanks to user:`maxbachmann` for testing.
* Fix logic for default generator when cross-compiling for ARM on Windows in `#917 <https://github.com/scikit-build/scikit-build/pull/917>`_ by `@dlech <https://github.com/dlech>`_.
* Use f2py's ``get_include`` if present in `#877 <https://github.com/scikit-build/scikit-build/pull/877>`_.
* Fix support for cross-compilation exception using ``targetLinkLibrariesWithDynamicLookup`` by `@erykoff <https://github.com/erykoff>`_ in `#901 <https://github.com/scikit-build/scikit-build/pull/901>`_.
* Treat empty ``MACOSX_DEPLOYMENT_TARGET`` as if it was unset in `#918 <https://github.com/scikit-build/scikit-build/pull/918>`_.

Testing
-------

* Add hello fortran sample package + tests by `@benbovy <https://github.com/benbovy>`_ in `#493 <https://github.com/scikit-build/scikit-build/pull/493>`_.
* Add sdist check & fix in `#906 <https://github.com/scikit-build/scikit-build/pull/906>`_.
* Fix some setuptools types in `#888 <https://github.com/scikit-build/scikit-build/pull/888>`_.
* Add PyPy Win & macOS to the CI in `#907 <https://github.com/scikit-build/scikit-build/pull/907>`_.
* Add tests for Python 3.12 Linux alphas in `#922 <https://github.com/scikit-build/scikit-build/pull/922>`_.

Miscellaneous
-------------

* Drop Python 3.6 in `#862 <https://github.com/scikit-build/scikit-build/pull/862>`_.
* Move building backend to hatchling in `#870 <https://github.com/scikit-build/scikit-build/pull/870>`_.
* Avoid mutating function input parameters in `#899 <https://github.com/scikit-build/scikit-build/pull/899>`_.
* Use _compat/typing name in `#869 <https://github.com/scikit-build/scikit-build/pull/869>`_.



Publications
------------

Please use the first citation when referencing scikit-build in scientific publications.

* Jean-Christophe Fillion-Robin, Matt McCormick, Omar Padron, Max Smolens, Michael Grauer, & Michael Sarahan. (2018, July 13). jcfr/scipy_2018_scikit-build_talk: SciPy 2018 Talk | scikit-build: A Build System Generator for CPython C/C++/Fortran/Cython Extensions. Zenodo. https://doi.org/10.5281/zenodo.2565368

* Schreiner, Henry, Rickerby, Joe, Grosse-Kunstleve, Ralf, Jakob, Wenzel, Darbois, Matthieu, Gokaslan, Aaron, Fillion-Robin, Jean-Christophe, & McCormick, Matt. (2022, August 1). Building Binary Extensions with pybind11, scikit-build, and cibuildwheel. https://doi.org/10.25080/majora-212e5952-033


History
-------

PyCMake was created at SciPy 2014 in response to general difficulties building
C++ and Fortran based Python extensions across platforms.  It was renamed to
"scikit-build" in 2016. Scikit-build-core was started in 2022.


Known Issues
------------

These issues are likely to be addressed in upcoming releases, and are
already addressed in `scikit-build-core`_.

* Editable installs do not work with the latest versions of Setuptools (and had
  issues with older versions, too).
* Configuration scikit-build cares about _must_ be specified in ``setup()``
  currently.
* The cache directory (``_skbuild``) may need to be deleted between builds in
  some cases (like rebuilding with a different Python interpreter).
* AIX requires a newer version of CMake than the IBM-supplied CMake 3.22.0
  from the AIX Toolbox for Open Source Software.  We currently recommend
  building CMake from source on AIX.

We are also working on improving scikit-build, so there are some upcoming
changes and deprecations:

* All deprecated setuptools/distutils features are also deprecated in
  scikit-build, like the ``test`` command, ``easy_install``, etc.
* Older versions of CMake (<3.15) are not recommended; a future version will
  remove support for older CMake's (along with providing a better mechanism for
  ensuring a proper CMake is available).

If you need any of these features, please open or find an issue explaining what
and why you need something.

Miscellaneous
-------------

* Free software: MIT license
* Documentation: http://scikit-build.readthedocs.org
* Source code: https://github.com/scikit-build/scikit-build
* Discussions: https://github.com/orgs/scikit-build/discussions
* Scikit-build-core: https://github.com/scikit-build/scikit-build-core


Support for this work was provided by NSF cooperative agreement `OAC-2209877 <https://www.nsf.gov/awardsearch/showAward?AWD_ID=2209877>`_.

.. _scikit-build-core: https://scikit-build-core.readthedocs.io
.. _cmake: https://cmake.org

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "scikit-build",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "scikit-build",
    "author": "The scikit-build team",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/85/05/dc8f28b19f3f06b8a157a47f01f395444f0bae234c4d44674453fa7eeae3/scikit_build-0.17.6.tar.gz",
    "platform": null,
    "description": "\n\n**scikit-build** is a Python build system for CPython C/C++/Fortran/Cython\nextensions using CMake.\n\nThe scikit-build package is fundamentally just glue between the ``setuptools``\nPython module and `CMake`_.\n\nThe next generation of scikit-build, `scikit-build-core`_, is currently under development.\nThis provides a simple, reliable build backend for CMake that does not use\nsetuptools and provides a lot of new features. Scikit-build-core can also power\na setuptools-based extension system, which will eventually become the backend\nfor scikit-build (classic). If you do not require extensive customization of\nthe build process, you should consider trying scikit-build-core instead of\nscikit-build.\n\nTo get started, see `this example <https://scikit-build.readthedocs.io/en/latest/usage.html#example-of-setup-py-cmakelists-txt-and-pyproject-toml>`_. For more examples, see `scikit-build-sample-projects <https://github.com/scikit-build/scikit-build-sample-projects>`_.\n\n\n\n\nScikit-build 0.17.6\n===================\n\nA small fix release with some new platforms and better testing, including CPython 3.12.0b1.\n\nBug fixes\n---------\n\n* Support added for SunOS by `@mtelka <https://github.com/mtelka>`_ in `#983 <https://github.com/scikit-build/scikit-build/pull/983>`_.\n* Support added for AIX (with recent CMake) by `@bhuntsman <https://github.com/bhuntsman>`_ in `#988 <https://github.com/scikit-build/scikit-build/pull/988>`_.\n\nTesting\n-------\n\n* Tests now pass on CPython 3.12.0b1 in `#879 <https://github.com/scikit-build/scikit-build/pull/879>`_.\n* Tests no longer use ``pytest-virtualenv`` in `#879 <https://github.com/scikit-build/scikit-build/pull/879>`_.\n* ``isolated`` marker now includes ``test_distribution`` tests in `#879 <https://github.com/scikit-build/scikit-build/pull/879>`_.\n* Tests avoid incorrect ``get_map`` match by `@keszybz <https://github.com/keszybz>`_ in `#990 <https://github.com/scikit-build/scikit-build/pull/990>`_.\n* Fedora testing fix by `@LecrisUT <https://github.com/LecrisUT>`_ in `#986 <https://github.com/scikit-build/scikit-build/pull/986>`_ and `#938 <https://github.com/scikit-build/scikit-build/pull/938>`_.\n\nMiscellaneous\n-------------\n\n* Docs improvements in `#979 <https://github.com/scikit-build/scikit-build/pull/979>`_.\n\nScikit-build 0.17.5\n===================\n\nA small fix release fixing the passing on of generator specific arguments. This\nfixes some cases where the Ninja generator was found but then was unable to\nbuild. NetBSD was reported to work, so was added to the BSD's supported.\n\nBug fixes\n---------\n\n* Generator args were missing for actual compile in `#975 <https://github.com/scikit-build/scikit-build/pull/975>`_.\n* Add support for netbsd & pyodide (future) in `#977 <https://github.com/scikit-build/scikit-build/pull/977>`_.\n\n\n\nScikit-build 0.17.4\n===================\n\nA followup fix to the issue 0.17.3 tried to fix. We now have a method to\nmanually test downstream packages, too.\n\nBug fixes\n---------\n\n* Make sure include dir is found even if the lib is not present in `#974 <https://github.com/scikit-build/scikit-build/pull/974>`_.\n\nScikit-build 0.17.3\n===================\n\nA small release related to ``PYTHON_LIBRARY`` handling changes in 0.17.2;\nscikit-build 0.17.3 returns an empty string from ``get_python_library`` if no\nPython library is present (like on manylinux), where 0.17.2 returned None, and\nprevious versions returned a non-existent path. Note that adding ``REQUIRED``\nto ``find_package(PythonLibs`` will fail, but it is incorrect (you must not\nlink to ``libPython.so``) and was really just injecting a non-existent path\nbefore.\n\nBug fixes\n---------\n\n* Keep ``get_python_library``  return type string if python lib non-existing\n  for now in `#959 <https://github.com/scikit-build/scikit-build/pull/959>`_.\n* Avoid 'not found' warning if libs are not found by FindPythonExtensions in `#960 <https://github.com/scikit-build/scikit-build/pull/960>`_.\n* FindNumPy should not call FindPythonLibs in `#958 <https://github.com/scikit-build/scikit-build/pull/958>`_.\n\nScikit-build 0.17.2\n===================\n\nAnother small release with fixes for non-MSVC Windows platforms.\n\nBug fixes\n---------\n\n* RPM spec fix by `@LecrisUT <https://github.com/LecrisUT>`_ in `#937 <https://github.com/scikit-build/scikit-build/pull/937>`_.\n* Validate value before returning library path by `@dlech <https://github.com/dlech>`_ in `#942 <https://github.com/scikit-build/scikit-build/pull/942>`_.\n* Only add ``Python_LIBRARY`` on Windows MSVC in `#943 <https://github.com/scikit-build/scikit-build/pull/943>`_ and `#944 <https://github.com/scikit-build/scikit-build/pull/944>`_.\n* Slightly nicer traceback for failed compiler in `#947 <https://github.com/scikit-build/scikit-build/pull/947>`_.\n\nTesting\n-------\n* Hide a few warnings that are expected in `#948 <https://github.com/scikit-build/scikit-build/pull/948>`_.\n\nScikit-build 0.17.1\n===================\n\nThis is a small release fixing a few bugs; the primary one being a change that\nwas triggering a bug in older FindPython. The unused variable messages have\nbeen deactivated to simplify output, as well.\n\nBug fixes\n---------\n\n* Older (<3.24) CMake breaks when lib specified in `#932 <https://github.com/scikit-build/scikit-build/pull/932>`_.\n* An error output was missing formatting in `#931 <https://github.com/scikit-build/scikit-build/pull/931>`_.\n* Make empty ``CMAKE_OSX_DEPLOYMENT_TARGET`` a warning (bug in conda-forge's\n  clang activation fixed upstream) in `#934 <https://github.com/scikit-build/scikit-build/pull/934>`_.\n* Remove unused variable warnings by in `#930 <https://github.com/scikit-build/scikit-build/pull/930>`_.\n\nTesting\n-------\n\n* Add Fedora packaging with packit automation by `@LecrisUT <https://github.com/LecrisUT>`_ in `#928 <https://github.com/scikit-build/scikit-build/pull/928>`_.\n* Fix codecov ci by `@LecrisUT <https://github.com/LecrisUT>`_ in `#929 <https://github.com/scikit-build/scikit-build/pull/929>`_.\n* Update some coverage settings in `#933 <https://github.com/scikit-build/scikit-build/pull/933>`_.\n\n\n\nScikit-build 0.17.0\n===================\n\nA lot of bug fixes are present in this release, focusing on Windows, PyPy, and\ncross compiling. We've also improved the compatibility with default setuptools\nbehaviors a little, and enabled some things that were previously unavailable,\nlike overriding the build type via the cmake argument environment variables.\nWe've expanded our CI matrix to include Windows and macOS PyPy and some Fortran\ntests on Linux. This release requires Python 3.7+.\n\nBug fixes\n---------\n\n* Match setuptools behavior for ``include_package_data`` default. by `@vyasr <https://github.com/vyasr>`_ in `#873 <https://github.com/scikit-build/scikit-build/pull/873>`_.\n* Misc. fixes for F2PY and PythonExtensions modules by `@benbovy <https://github.com/benbovy>`_ in `#495 <https://github.com/scikit-build/scikit-build/pull/495>`_.\n* Provide more useful error if user provides ``CMAKE_INSTALL_PREFIX`` by `@vyasr <https://github.com/vyasr>`_ in `#872 <https://github.com/scikit-build/scikit-build/pull/872>`_.\n* Stop assuming that ``.pyx`` files are in the same directory as ``CMakeLists.txt`` by `@vyasr <https://github.com/vyasr>`_ in `#871 <https://github.com/scikit-build/scikit-build/pull/871>`_.\n* Allow build type overriding in `#902 <https://github.com/scikit-build/scikit-build/pull/902>`_.\n* Detect PyPy library correctly on Windows by user:`gershnik` in `#904 <https://github.com/scikit-build/scikit-build/pull/904>`_.\n* Include library for FindPython for better Windows cross-compiles in `#913 <https://github.com/scikit-build/scikit-build/pull/913>`_. Thanks to user:`maxbachmann` for testing.\n* Fix logic for default generator when cross-compiling for ARM on Windows in `#917 <https://github.com/scikit-build/scikit-build/pull/917>`_ by `@dlech <https://github.com/dlech>`_.\n* Use f2py's ``get_include`` if present in `#877 <https://github.com/scikit-build/scikit-build/pull/877>`_.\n* Fix support for cross-compilation exception using ``targetLinkLibrariesWithDynamicLookup`` by `@erykoff <https://github.com/erykoff>`_ in `#901 <https://github.com/scikit-build/scikit-build/pull/901>`_.\n* Treat empty ``MACOSX_DEPLOYMENT_TARGET`` as if it was unset in `#918 <https://github.com/scikit-build/scikit-build/pull/918>`_.\n\nTesting\n-------\n\n* Add hello fortran sample package + tests by `@benbovy <https://github.com/benbovy>`_ in `#493 <https://github.com/scikit-build/scikit-build/pull/493>`_.\n* Add sdist check & fix in `#906 <https://github.com/scikit-build/scikit-build/pull/906>`_.\n* Fix some setuptools types in `#888 <https://github.com/scikit-build/scikit-build/pull/888>`_.\n* Add PyPy Win & macOS to the CI in `#907 <https://github.com/scikit-build/scikit-build/pull/907>`_.\n* Add tests for Python 3.12 Linux alphas in `#922 <https://github.com/scikit-build/scikit-build/pull/922>`_.\n\nMiscellaneous\n-------------\n\n* Drop Python 3.6 in `#862 <https://github.com/scikit-build/scikit-build/pull/862>`_.\n* Move building backend to hatchling in `#870 <https://github.com/scikit-build/scikit-build/pull/870>`_.\n* Avoid mutating function input parameters in `#899 <https://github.com/scikit-build/scikit-build/pull/899>`_.\n* Use _compat/typing name in `#869 <https://github.com/scikit-build/scikit-build/pull/869>`_.\n\n\n\nPublications\n------------\n\nPlease use the first citation when referencing scikit-build in scientific publications.\n\n* Jean-Christophe Fillion-Robin, Matt McCormick, Omar Padron, Max Smolens, Michael Grauer, & Michael Sarahan. (2018, July 13). jcfr/scipy_2018_scikit-build_talk: SciPy 2018 Talk | scikit-build: A Build System Generator for CPython C/C++/Fortran/Cython Extensions. Zenodo. https://doi.org/10.5281/zenodo.2565368\n\n* Schreiner, Henry, Rickerby, Joe, Grosse-Kunstleve, Ralf, Jakob, Wenzel, Darbois, Matthieu, Gokaslan, Aaron, Fillion-Robin, Jean-Christophe, & McCormick, Matt. (2022, August 1). Building Binary Extensions with pybind11, scikit-build, and cibuildwheel. https://doi.org/10.25080/majora-212e5952-033\n\n\nHistory\n-------\n\nPyCMake was created at SciPy 2014 in response to general difficulties building\nC++ and Fortran based Python extensions across platforms.  It was renamed to\n\"scikit-build\" in 2016. Scikit-build-core was started in 2022.\n\n\nKnown Issues\n------------\n\nThese issues are likely to be addressed in upcoming releases, and are\nalready addressed in `scikit-build-core`_.\n\n* Editable installs do not work with the latest versions of Setuptools (and had\n  issues with older versions, too).\n* Configuration scikit-build cares about _must_ be specified in ``setup()``\n  currently.\n* The cache directory (``_skbuild``) may need to be deleted between builds in\n  some cases (like rebuilding with a different Python interpreter).\n* AIX requires a newer version of CMake than the IBM-supplied CMake 3.22.0\n  from the AIX Toolbox for Open Source Software.  We currently recommend\n  building CMake from source on AIX.\n\nWe are also working on improving scikit-build, so there are some upcoming\nchanges and deprecations:\n\n* All deprecated setuptools/distutils features are also deprecated in\n  scikit-build, like the ``test`` command, ``easy_install``, etc.\n* Older versions of CMake (<3.15) are not recommended; a future version will\n  remove support for older CMake's (along with providing a better mechanism for\n  ensuring a proper CMake is available).\n\nIf you need any of these features, please open or find an issue explaining what\nand why you need something.\n\nMiscellaneous\n-------------\n\n* Free software: MIT license\n* Documentation: http://scikit-build.readthedocs.org\n* Source code: https://github.com/scikit-build/scikit-build\n* Discussions: https://github.com/orgs/scikit-build/discussions\n* Scikit-build-core: https://github.com/scikit-build/scikit-build-core\n\n\nSupport for this work was provided by NSF cooperative agreement `OAC-2209877 <https://www.nsf.gov/awardsearch/showAward?AWD_ID=2209877>`_.\n\n.. _scikit-build-core: https://scikit-build-core.readthedocs.io\n.. _cmake: https://cmake.org\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Improved build system generator for Python C/C++/Fortran/Cython extensions",
    "version": "0.17.6",
    "project_urls": {
        "Bug Tracker": "https://github.com/scikit-build/scikit-build/issues",
        "Changelog": "https://scikit-build.readthedocs.io/en/latest/history.html",
        "Discussions": "https://github.com/orgs/scikit-build/discussions",
        "Documentation": "https://scikit-build.readthedocs.io/",
        "Examples": "https://github.com/scikit-build/scikit-build-sample-projects",
        "Homepage": "https://github.com/scikit-build/scikit-build"
    },
    "split_keywords": [
        "scikit-build"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "faafb3ef8fe0bb96bf7308e1f9d196fc069f0c75d9c74cfaad851e418cc704f4",
                "md5": "a25a882d70f16d890632728d8d080c61",
                "sha256": "18bd55e81841106eec93f30a297df4f301003791c41be46ef6428d58bd42d6b3"
            },
            "downloads": -1,
            "filename": "scikit_build-0.17.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a25a882d70f16d890632728d8d080c61",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 84294,
            "upload_time": "2023-05-31T20:24:32",
            "upload_time_iso_8601": "2023-05-31T20:24:32.093866Z",
            "url": "https://files.pythonhosted.org/packages/fa/af/b3ef8fe0bb96bf7308e1f9d196fc069f0c75d9c74cfaad851e418cc704f4/scikit_build-0.17.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8505dc8f28b19f3f06b8a157a47f01f395444f0bae234c4d44674453fa7eeae3",
                "md5": "93a106577d5ebf3122f5383b97fb6abf",
                "sha256": "b51a51a36b37c42650994b5047912f59b22e3210b23e321f287611f9ef6e5c9d"
            },
            "downloads": -1,
            "filename": "scikit_build-0.17.6.tar.gz",
            "has_sig": false,
            "md5_digest": "93a106577d5ebf3122f5383b97fb6abf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 272208,
            "upload_time": "2023-05-31T20:24:33",
            "upload_time_iso_8601": "2023-05-31T20:24:33.771040Z",
            "url": "https://files.pythonhosted.org/packages/85/05/dc8f28b19f3f06b8a157a47f01f395444f0bae234c4d44674453fa7eeae3/scikit_build-0.17.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-31 20:24:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scikit-build",
    "github_project": "scikit-build",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "scikit-build"
}
        
Elapsed time: 0.07417s