Skip to content

Commit

Permalink
[Release] Set Conductor version to 0.1.0
Browse files Browse the repository at this point in the history
This commit marks the first release of Conductor.
  • Loading branch information
geoffxy committed Jan 10, 2021
1 parent db3f038 commit c2a2f78
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
]

CLASSIFIERS = [
"Private :: Do Not Upload",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down
4 changes: 2 additions & 2 deletions src/conductor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__version__ = "0.0.0.dev0"
__version__ = "0.1.0"

__author__ = "Geoffrey Yu"
__email__ = "[email protected]"

__description__ = "A simple, elegant, and opinionated tool that orchestrates your research computing."
__description__ = "A simple and elegant research computing orchestrator."
5 changes: 2 additions & 3 deletions src/conductor/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@

def main():
parser = argparse.ArgumentParser(
description="Conductor: A simple, elegant, and opinionated tool that "
"orchestrates your research computing.",
description="Conductor: A simple and elegant research computing orchestrator.",
)
parser.add_argument(
"-v",
Expand All @@ -32,7 +31,7 @@ def main():
args = parser.parse_args()

if args.version:
print(conductor.__version__)
print("Conductor", conductor.__version__)
return

if "func" not in args:
Expand Down

0 comments on commit c2a2f78

Please sign in to comment.