Skip to content

Commit

Permalink
prep for deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricks-Lab committed Jun 26, 2020
1 parent fa8d3d1 commit 58d3fc6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion GPUmodules/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
__credits__ = ['Craig Echt - Testing, Debug, and Verification']
__license__ = 'GNU General Public License'
__program_name__ = 'amdgpu-utils'
__version__ = 'v3.3.11'
__version__ = 'v3.3.14'
__maintainer__ = 'RueiKe'
__status__ = 'Development - Extended'
__docformat__ = 'reStructuredText'
Expand Down
8 changes: 8 additions & 0 deletions READMEPYPI.md
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/)

2 changes: 1 addition & 1 deletion amdgpu-chk
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ __copyright__ = 'Copyright (C) 2019 RicksLab'
__credits__ = ['Craig Echt - Testing, Debug, Verification, and Documentation']
__license__ = 'GNU General Public License'
__program_name__ = 'amdgpu-chk'
__version__ = 'v3.3.11'
__version__ = 'v3.3.14'
__maintainer__ = 'RueiKe'
__status__ = 'Stable Release'
__docformat__ = 'reStructuredText'
Expand Down
11 changes: 7 additions & 4 deletions setup.py
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]',
Expand Down

0 comments on commit 58d3fc6

Please sign in to comment.