-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update type annotations Update setup for 311 wip Fixup path ref Update test requirements for 311 Forgot to bump version number Update CCI More verbosity in tests wip add docs got pyproject ignore Does changing package_dir help? readd keywords Try to fix setup.py Fix find-packages dir wip wip
- Loading branch information
Showing
21 changed files
with
329 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
# For testing doctests in binary extension modules | ||
scikit-build>=0.11.1 | ||
cmake>=3.21.2 | ||
ninja>=1.10.2 | ||
pybind11>=2.7.1 | ||
|
||
scikit-build>=0.16.1 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+ | ||
scikit-build>=0.11.1 ; python_version < '3.11' # Python <=3.10 | ||
|
||
ninja>=1.11.1 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+ | ||
ninja>=1.10.2 ; python_version < '3.11' # Python <=3.10 | ||
|
||
pybind11>=2.10.3 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+ | ||
pybind11>=2.7.1 ; python_version < '3.11' # Python <=3.10 | ||
|
||
cmake>=3.25.0 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+ | ||
cmake>=3.21.2 ; python_version < '3.11' # Python <=3.10 |
Oops, something went wrong.