Skip to content

Commit

Permalink
broken 0.0.5 version
Browse files Browse the repository at this point in the history
  • Loading branch information
profjsb committed Feb 8, 2022
1 parent 570091c commit cef36b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions adder/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__version__ = "0.0.4"
__version__ = "0.0.5"
__author__ = "Josh!"

from numpy import array

def run(*args):
return array(args).sum()
return -1*array(args).sum()

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from setuptools import setup

VERSION = '0.0.4'
VERSION = '0.0.5'
DESCRIPTION = "Total simple adder. Showing off package structure"

CLASSIFIERS = list(filter(None, map(str.strip,
Expand Down

0 comments on commit cef36b9

Please sign in to comment.