Imported Upstream version 0.5.0 upstream/0.5.0
authorJinWang An <jinwang.an@samsung.com>
Wed, 15 Feb 2023 06:15:35 +0000 (15:15 +0900)
committerJinWang An <jinwang.an@samsung.com>
Wed, 15 Feb 2023 06:15:35 +0000 (15:15 +0900)
PKG-INFO
pysqlite3.egg-info/PKG-INFO
setup.py

index c373185ff0297151b9deeeeaf614142c8be32324..e7ac9f984da24299ffc9a19eace1bdda218272a3 100644 (file)
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pysqlite3
-Version: 0.4.8
+Version: 0.5.0
 Summary: DB-API 2.0 interface for Sqlite 3.x
 Home-page: https://github.com/coleifer/pysqlite3
 Author: Charles Leifer
index c373185ff0297151b9deeeeaf614142c8be32324..e7ac9f984da24299ffc9a19eace1bdda218272a3 100644 (file)
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pysqlite3
-Version: 0.4.8
+Version: 0.5.0
 Summary: DB-API 2.0 interface for Sqlite 3.x
 Home-page: https://github.com/coleifer/pysqlite3
 Author: Charles Leifer
index 89e2dffdef226a6adec94bbd66443f840bf291dd..2b120069bede39b491afc6f01760afee752576f4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ from setuptools import Extension
 # If you need to change anything, it should be enough to change setup.cfg.
 
 PACKAGE_NAME = 'pysqlite3'
-VERSION = '0.4.8'
+VERSION = '0.5.0'
 
 # define sqlite sources
 sources = [os.path.join('src', source)
@@ -159,11 +159,5 @@ def get_setup_args():
     )
 
 
-def main():
-    try:
-        setuptools.setup(**get_setup_args())
-    except BaseException as ex:
-        log.info(str(ex))
-
 if __name__ == "__main__":
-    main()
+    setuptools.setup(**get_setup_args())