From f44ba19be39506daebf78b372552afc1fb572430 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Mon, 13 May 2024 23:47:23 +0800 Subject: [PATCH] fix tests --- include/pocketpy/common.h | 2 +- scripts/run_tests.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/include/pocketpy/common.h b/include/pocketpy/common.h index 4bb4be47..5c50517c 100644 --- a/include/pocketpy/common.h +++ b/include/pocketpy/common.h @@ -20,7 +20,7 @@ #include #include -#define PK_VERSION "1.5.0" +#define PK_VERSION "2.0.0" #include "config.h" #include "export.h" diff --git a/scripts/run_tests.py b/scripts/run_tests.py index e2b8cc44..cc53b8ca 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -64,6 +64,7 @@ class A: def get(self): return self.x + print('ans_1:', add(1, 2)) print('ans_2:', A('abc').get()) exit()