Skip to content

Commit 0d7a187

Browse files
committed
fix(setup.py): Fixed version variable.
1 parent 8bf35a0 commit 0d7a187

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class color:
3131
args = sys.argv
3232
num_args = len(args)
3333
program_name = args[0]
34-
version = "0.0.1"
34+
version = "0.0.3"
3535
run_pytest_after_setup = False
3636

3737
def run_program():
@@ -46,7 +46,7 @@ def run_program():
4646

4747
setup(
4848
name = 'mathplug',
49-
version = '0.0.2',
49+
version = version,
5050
description = 'A lightweight Python package which supplies simple math functions.',
5151
long_description = long_description,
5252
long_description_content_type = 'text/markdown',

0 commit comments

Comments
 (0)