CudaPackage: maintainers are listed in the docstring (#17409)
fixes #17396 This prevents the class attribute to be inherited and saves current maintainers from becoming the default maintainers of every Cuda package.
This commit is contained in:
parent
b0506a722e
commit
f4ac3770b4
1 changed files with 2 additions and 1 deletions
|
@ -12,8 +12,9 @@
|
||||||
class CudaPackage(PackageBase):
|
class CudaPackage(PackageBase):
|
||||||
"""Auxiliary class which contains CUDA variant, dependencies and conflicts
|
"""Auxiliary class which contains CUDA variant, dependencies and conflicts
|
||||||
and is meant to unify and facilitate its usage.
|
and is meant to unify and facilitate its usage.
|
||||||
|
|
||||||
|
Maintainers: ax3l, svenevs
|
||||||
"""
|
"""
|
||||||
maintainers = ['ax3l', 'svenevs']
|
|
||||||
|
|
||||||
# https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/index.html#gpu-feature-list
|
# https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/index.html#gpu-feature-list
|
||||||
# https://developer.nvidia.com/cuda-gpus
|
# https://developer.nvidia.com/cuda-gpus
|
||||||
|
|
Loading…
Reference in a new issue