diff --git a/setup.py b/setup.py index b2c2084..e902630 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="testpkg", - version="0.1", + version="0.1.1", packages=find_packages(), install_requires=[], author="Test", diff --git a/testpkg/mod1.py b/testpkg/mod1.py index 2c4fb86..ec08667 100644 --- a/testpkg/mod1.py +++ b/testpkg/mod1.py @@ -1,5 +1,5 @@ def test_add(a, b): - return a+b + return a+b+1 def test_sub(a, b): return a-b \ No newline at end of file