-
Notifications
You must be signed in to change notification settings - Fork 58
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
"Programming Language :: Python :: 3.10"
#194
Conversation
Should we add |
The current state of the art is captured fairly well in the pyproject.toml files of any of the core RAPIDS repos e.g. cudf or raft. This part of the scikit-build documentation lists which parameters need to stay in setup.py. Everything else can go into pyproject.toml. The only addendum is, don't use MANIFEST.in files for now (see scikit-build/scikit-build#886). |
…to manage versions, update dependencies.yaml. (#232) Modernizes kvikio's Python build system to help with CUDA 12 migration. Some of these changes were made for other RAPIDS repos in separate PRs over the course of time but I am doing them all together in this PR to help kvikio catch up to the state of other repos. Major changes: - Removed versioneer. - Uses `pyproject.toml` for as much metadata as possible. - Updates/copies/fixes/centralizes linter configurations for isort, mypy, etc. Closes #194. Addresses some things mentioned in #186. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Mads R. B. Kristensen (https://github.com/madsbk) - Lawrence Mitchell (https://github.com/wence-) URL: #232
No description provided.