Skip to content

Commit

Permalink
bump version to 8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed May 3, 2019
1 parent 9ef1297 commit bf9bfc7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion pynvml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .nvml import *

__version__ = '8.0.0'
__version__ = '8.0.1'
9 changes: 0 additions & 9 deletions pynvml/smi.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,11 @@

"""
nvidia_smi
[email protected]
Sample code that attempts to reproduce the output of nvidia-smi -q -x
For many cases the output should match.
Each query parameter is documented within nvdia-smi --help-query-gpu
Can be used as a library or a command line script
To Run:
$ python nvidia_smi.py
$ python nvidia_smi.py "--help"
$ python nvidia_smi.py "--help_query_gpu"
$ python nvidia_smi.py "pci.bus_id,memory.total,memory.free"
From Code:
DeviceQuery()
DeviceQuery("--help")
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
# DistributionMetadata.download_url = None

setup(name='pynvml',
version='8.0.0',
version='8.0.1',
python_requires='>=3.6',
description='Python Bindings for the NVIDIA Management Library',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=['notebooks', 'docs', 'tests']),
package_data={package_name: ['README.md','help_query_gpu.txt']},
package_data={'pynvml': ['README.md','help_query_gpu.txt']},
license="BSD",
url="https://www.nvidia.com/",
author="NVIDIA Corporation",
Expand Down

0 comments on commit bf9bfc7

Please sign in to comment.