Skip to content

Commit 58d3fc6

Browse files
committed
prep for deprecation
1 parent fa8d3d1 commit 58d3fc6

4 files changed

Lines changed: 17 additions & 6 deletions

File tree

GPUmodules/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__credits__ = ['Craig Echt - Testing, Debug, and Verification']
2323
__license__ = 'GNU General Public License'
2424
__program_name__ = 'amdgpu-utils'
25-
__version__ = 'v3.3.11'
25+
__version__ = 'v3.3.14'
2626
__maintainer__ = 'RueiKe'
2727
__status__ = 'Development - Extended'
2828
__docformat__ = 'reStructuredText'

READMEPYPI.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Rick's AMDGPU Utilities (DEPRECATED)
2+
3+
This release of AMDGPU Utilities is replaced by rickslab-gpu-utils, which now supports
4+
additional vendors' GPUs. The amdgpu-util version will no longer be updated, as
5+
development efforts will be focused on rickslab-gpu-utils.
6+
7+
## Install the latest: [rickslab-gpu-utils](https://pypi.org/project/rickslab-gpu-utils/)
8+

amdgpu-chk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ __copyright__ = 'Copyright (C) 2019 RicksLab'
2323
__credits__ = ['Craig Echt - Testing, Debug, Verification, and Documentation']
2424
__license__ = 'GNU General Public License'
2525
__program_name__ = 'amdgpu-chk'
26-
__version__ = 'v3.3.11'
26+
__version__ = 'v3.3.14'
2727
__maintainer__ = 'RueiKe'
2828
__status__ = 'Stable Release'
2929
__docformat__ = 'reStructuredText'

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
#!/usr/bin/env python3
22

33
import sys
4+
import os
5+
import pathlib
46
from setuptools import setup
57

68
if sys.version_info < (3, 6):
79
print('ricks-amdgpu-utils requires at least Python 3.6.')
810
sys.exit(1)
911

10-
VERSION = '3.3.11'
12+
VERSION = '3.3.14'
13+
with open(os.path.join(pathlib.Path(__file__).parent, 'READMEPYPI.md'), 'r') as file_ptr:
14+
long_description = file_ptr.read()
1115

1216
setup(name='ricks-amdgpu-utils',
1317
version=VERSION,
1418
description='Ricks AMD GPU Utilities (Deprecated)',
15-
long_description=('This release of GPU Utilities is replaced by rickslab-gpu-utils, which now supports.'
16-
'additional vendors GPUs. The amdgpu-util version will no longer be updated, as'
17-
'development efforts will be focused on rickslab-gpu-utils'),
19+
long_description=long_description,
20+
long_description_content_type='text/markdown',
1821
author='RueiKe',
1922
platforms='posix',
2023
author_email='rueikes.homelab@gmail.com',

0 commit comments

Comments
 (0)