test new version (wrong version, test_add is wrong)

This commit is contained in:
George 2024-12-27 01:00:55 -08:00
parent eb9b49c962
commit eaa1190f47
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup( setup(
name="testpkg", name="testpkg",
version="0.1", version="0.1.1",
packages=find_packages(), packages=find_packages(),
install_requires=[], install_requires=[],
author="Test", author="Test",

View File

@ -1,5 +1,5 @@
def test_add(a, b): def test_add(a, b):
return a+b return a+b+1
def test_sub(a, b): def test_sub(a, b):
return a-b return a-b