Skip to content

Commit ad032db

Browse files
committed
various fixes
1 parent 3978a2f commit ad032db

File tree

6 files changed

+46
-11
lines changed

6 files changed

+46
-11
lines changed

cuda_bindings/docs/source/license.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Software License Agreement
2+
**************************
3+
4+
.. literalinclude:: ../../LICENSE
5+
:language: text

cuda_bindings/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@
77
# is strictly prohibited.
88

99
[build-system]
10-
requires = ["setuptools", "cython", "pyclibrary"]
10+
requires = ["setuptools>=77.0.0", "cython", "pyclibrary"]
1111
build-backend = "setuptools.build_meta"
1212

1313
[project]
1414
name = "cuda-bindings"
1515
description = "Python bindings for CUDA"
1616
authors = [{name = "NVIDIA Corporation", email = "[email protected]"},]
17-
license = {file = "LICENSE"}
17+
license = "LicenseRef-NVIDIA-SOFTWARE-LICENSE"
1818
classifiers = [
1919
"Intended Audience :: Developers",
2020
"Topic :: Database",
2121
"Topic :: Scientific/Engineering",
22-
"License :: Other/Proprietary License",
2322
"Programming Language :: Python",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",

cuda_core/docs/source/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ and other functionalities.
88
:maxdepth: 2
99
:caption: Contents:
1010

11-
release.rst
11+
release
1212
install.md
13-
interoperability.rst
14-
api.rst
15-
contribute.rst
16-
license.rst
13+
interoperability
14+
api
15+
contribute
16+
license
1717

1818

1919
Indices and tables

cuda_core/docs/source/license.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Software License Agreement
2+
**************************
3+
4+
.. literalinclude:: ../../LICENSE
5+
:language: text
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.. currentmodule:: cuda.core.experimental
2+
3+
``cuda.core`` 0.3.0 Release Notes
4+
=================================
5+
6+
Released on MM DD, 2025
7+
8+
Highlights
9+
----------
10+
11+
- Starting this release ``cuda.core`` is licensed under Apache 2.0.
12+
13+
14+
Breaking Changes
15+
----------------
16+
17+
18+
New features
19+
------------
20+
21+
22+
New examples
23+
------------
24+
25+
26+
Fixes and enhancements
27+
----------------------

cuda_python/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
44

55
[build-system]
6-
requires = ["setuptools",]
6+
requires = ["setuptools>=77.0.0",]
77
build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "cuda-python"
1111
description = "CUDA Python: Performance meets Productivity"
1212
readme = {file = "README.md", content-type = "text/markdown"}
1313
authors = [{name = "NVIDIA Corporation", email = "[email protected]"},]
14-
license = {file = "LICENSE"}
14+
license = "LicenseRef-NVIDIA-SOFTWARE-LICENSE"
1515
classifiers = [
1616
"Operating System :: POSIX :: Linux",
1717
"Operating System :: Microsoft :: Windows",
@@ -21,7 +21,6 @@ classifiers = [
2121
"Intended Audience :: Developers",
2222
"Intended Audience :: Science/Research",
2323
"Intended Audience :: End Users/Desktop",
24-
"License :: Other/Proprietary License",
2524
"Programming Language :: Python :: 3 :: Only",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)