Skip to content

Commit

Permalink
- Changed version number
Browse files Browse the repository at this point in the history
  • Loading branch information
evtyz committed Jul 12, 2020
1 parent 1a71262 commit f6715ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shapevolve/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Shapevolve: A genetic algorithm to recreate artworks using simple shapes, with Python 3."""

__version__ = "v1.0-alpha"
__version__ = "0.1"
2 changes: 1 addition & 1 deletion shapevolve/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

def main():
"""Run the application."""
parser = ArgumentParser(description=f"Circlevolve CLI, {__version__}")
parser = ArgumentParser(description=f"Circlevolve CLI, version {__version__}")
parser.add_argument("image", type=str, help="Path to base image for evolution")
parser.add_argument("--saved-genome", default=None, type=str, help="Path to saved genome for continued evolution")
parser.add_argument("--num-shapes", default=1000, type=int, help="Number of shapes to draw with")
Expand Down

0 comments on commit f6715ba

Please sign in to comment.