Skip to content

Commit

Permalink
fix(setup.py): Fixed version variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanWelsman committed Oct 26, 2022
1 parent 8bf35a0 commit 0d7a187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class color:
args = sys.argv
num_args = len(args)
program_name = args[0]
version = "0.0.1"
version = "0.0.3"
run_pytest_after_setup = False

def run_program():
Expand All @@ -46,7 +46,7 @@ def run_program():

setup(
name = 'mathplug',
version = '0.0.2',
version = version,
description = 'A lightweight Python package which supplies simple math functions.',
long_description = long_description,
long_description_content_type = 'text/markdown',
Expand Down

0 comments on commit 0d7a187

Please sign in to comment.