Skip to content

Commit 39b622c

Browse files
committed
Bump to v0.7.0
1 parent e842df9 commit 39b622c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_version(rel_path: str) -> str:
2929
setup(
3030
name="SumsJob",
3131
version=version,
32-
description="A simple Linux command-line utility which submits a job to one of the multiple servers",
32+
description="A simple Linux command-line utility which submits a job to one of the multiple GPU servers",
3333
long_description=long_description,
3434
long_description_content_type="text/markdown",
3535
author="Lu Lu",
@@ -59,9 +59,10 @@ def get_version(rel_path: str) -> str:
5959
include_package_data=True,
6060
entry_points={
6161
"console_scripts": [
62-
"gpuresource=sumsjob.gpuresource:main",
63-
"submit=sumsjob.submit:main",
6462
"sacct=sumsjob.sacct:main",
63+
"scancel=sumsjob.scancel:main",
64+
"sinfo=sumsjob.sinfo:main",
65+
"srun=sumsjob.srun:main",
6566
]
6667
},
6768
)

sumsjob/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.0"
1+
__version__ = "0.7.0"

0 commit comments

Comments
 (0)