From eaa1190f4768cfb41a27c029fe620dfe8866d940 Mon Sep 17 00:00:00 2001 From: Charlie Date: Fri, 27 Dec 2024 01:00:55 -0800 Subject: [PATCH] test new version (wrong version, test_add is wrong) --- setup.py | 2 +- testpkg/mod1.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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