Commit 937e3f0 1 parent a2eddd5 commit 937e3f0 Copy full SHA for 937e3f0
File tree 4 files changed +64
-7
lines changed
4 files changed +64
-7
lines changed Original file line number Diff line number Diff line change 1
1
2
2
3
+ 2022-06-13, Version 3.1.2
4
+ ===========================
5
+
6
+ * setup.py upgrade : better error handling while installation (Arnab Mukherjee)
7
+
8
+ * Code fix for issue #413 (Arnab Mukherjee)
9
+
10
+ * Code fix for issue #468 (Arnab Mukherjee)
11
+
12
+ * Code change for issue #720 (Arnab Mukherjee)
13
+
14
+ * documentation updates (Arnab Mukherjee)
15
+
16
+ * add custom clidriver bin path to ibm_db.py file (Alexandre Duverger)
17
+
18
+ * doc: update for issue #733 (Bimal Jha)
19
+
20
+ * fix: for issue #708 (Bimal Jha)
21
+
22
+ * doc: update about MacOS M1 Chip system (Bimal Jha)
23
+
24
+ * Add issue template (Bimal Jha)
25
+
26
+ * Add support for installing clidriver using another URL or artifactory URL. (#727 ) (MarcinMaciaszek)
27
+
28
+ * updating the CHANGES.md file (Arnab Mukherjee)
29
+
30
+
3
31
2022-01-11, Version 3.1.1
4
32
=========================
5
33
Original file line number Diff line number Diff line change 1
1
2
2
3
+ 2022-06-13, Version 3.1.2
4
+ ===========================
5
+
6
+ * setup.py upgrade : better error handling while installation (Arnab Mukherjee)
7
+
8
+ * Code fix for issue #413 (Arnab Mukherjee)
9
+
10
+ * Code fix for issue #468 (Arnab Mukherjee)
11
+
12
+ * Code change for issue #720 (Arnab Mukherjee)
13
+
14
+ * documentation updates (Arnab Mukherjee)
15
+
16
+ * add custom clidriver bin path to ibm_db.py file (Alexandre Duverger)
17
+
18
+ * doc: update for issue #733 (Bimal Jha)
19
+
20
+ * fix: for issue #708 (Bimal Jha)
21
+
22
+ * doc: update about MacOS M1 Chip system (Bimal Jha)
23
+
24
+ * Add issue template (Bimal Jha)
25
+
26
+ * Add support for installing clidriver using another URL or artifactory URL. (#727 ) (MarcinMaciaszek)
27
+
28
+ * updating the CHANGES.md file (Arnab Mukherjee)
29
+
30
+
3
31
2022-01-11, Version 3.1.1
4
32
=========================
5
33
Original file line number Diff line number Diff line change 22
22
+--------------------------------------------------------------------------+
23
23
*/
24
24
25
- #define MODULE_RELEASE "3.1.1 "
25
+ #define MODULE_RELEASE "3.1.2 "
26
26
27
27
#include <Python.h>
28
28
#include <datetime.h>
Original file line number Diff line number Diff line change 24
24
from setuptools .command .install import install
25
25
26
26
PACKAGE = 'ibm_db'
27
- VERSION = '3.1.1 '
27
+ VERSION = '3.1.2 '
28
28
LICENSE = 'Apache License 2.0'
29
29
readme = os .path .join (os .path .dirname (__file__ ),'README.md' )
30
30
@@ -114,8 +114,8 @@ def _checkPythonHeaderFile():
114
114
else :
115
115
_printAndExit (_errormessage ("noPythonDevel" ))
116
116
117
-
118
- _getinstalledDb2Path ()
117
+ if sys . version_info >= ( 3 , ):
118
+ _getinstalledDb2Path ()
119
119
120
120
if ('IBM_DB_HOME' in os .environ ):
121
121
ibm_db_home = os .getenv ('IBM_DB_HOME' )
@@ -454,9 +454,10 @@ def _setDllPath():
454
454
else :
455
455
ext_modules = _ext_modules (ibm_db_include , library , ibm_db_lib )
456
456
457
- if ('win32' not in sys .platform ):
458
- _checkGcc ()
459
- _checkPythonHeaderFile ()
457
+ if ('win32' not in sys .platform ):
458
+ if sys .version_info >= (3 , ):
459
+ _checkGcc ()
460
+ _checkPythonHeaderFile ()
460
461
461
462
setup ( name = PACKAGE ,
462
463
version = VERSION ,
You can’t perform that action at this time.
0 commit comments