From 092a514bb04af4c54744d4594f9ffb4866e97bab Mon Sep 17 00:00:00 2001 From: henry Date: Mon, 9 Oct 2023 16:16:00 -0500 Subject: [PATCH] update test sample setuptools setup.py --- tests/test_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_integration.py b/tests/test_integration.py index 4996d53..69a66d4 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -17,7 +17,6 @@ def test_conan_integration(tmp_path, monkeypatch): setup( name='dummy', - version='1.0', ext_modules=[ Pybind11Extension( "dummy.spam", @@ -37,6 +36,7 @@ def test_conan_integration(tmp_path, monkeypatch): pyproject.write_text(""" [project] name = "dummy" +version = "1.0" """) conanfile = source_root / "conanfile.py"