-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
17 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Rick's AMDGPU Utilities (DEPRECATED) | ||
|
||
This release of AMDGPU Utilities is replaced by rickslab-gpu-utils, which now supports | ||
additional vendors' GPUs. The amdgpu-util version will no longer be updated, as | ||
development efforts will be focused on rickslab-gpu-utils. | ||
|
||
## Install the latest: [rickslab-gpu-utils](https://pypi.org/project/rickslab-gpu-utils/) | ||
|
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,20 +1,23 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import sys | ||
import os | ||
import pathlib | ||
from setuptools import setup | ||
|
||
if sys.version_info < (3, 6): | ||
print('ricks-amdgpu-utils requires at least Python 3.6.') | ||
sys.exit(1) | ||
|
||
VERSION = '3.3.11' | ||
VERSION = '3.3.14' | ||
with open(os.path.join(pathlib.Path(__file__).parent, 'READMEPYPI.md'), 'r') as file_ptr: | ||
long_description = file_ptr.read() | ||
|
||
setup(name='ricks-amdgpu-utils', | ||
version=VERSION, | ||
description='Ricks AMD GPU Utilities (Deprecated)', | ||
long_description=('This release of GPU Utilities is replaced by rickslab-gpu-utils, which now supports.' | ||
'additional vendors GPUs. The amdgpu-util version will no longer be updated, as' | ||
'development efforts will be focused on rickslab-gpu-utils'), | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='RueiKe', | ||
platforms='posix', | ||
author_email='[email protected]', | ||
|