Skip to content

Commit 937e3f0

Browse files
committed
release changes for 3.1.2
1 parent a2eddd5 commit 937e3f0

File tree

4 files changed

+64
-7
lines changed

4 files changed

+64
-7
lines changed

CHANGES.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11

22

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+
331
2022-01-11, Version 3.1.1
432
=========================
533

IBM_DB/ibm_db/CHANGES.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11

22

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+
331
2022-01-11, Version 3.1.1
432
=========================
533

IBM_DB/ibm_db/ibm_db.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
+--------------------------------------------------------------------------+
2323
*/
2424

25-
#define MODULE_RELEASE "3.1.1"
25+
#define MODULE_RELEASE "3.1.2"
2626

2727
#include <Python.h>
2828
#include <datetime.h>

IBM_DB/ibm_db/setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from setuptools.command.install import install
2525

2626
PACKAGE = 'ibm_db'
27-
VERSION = '3.1.1'
27+
VERSION = '3.1.2'
2828
LICENSE = 'Apache License 2.0'
2929
readme = os.path.join(os.path.dirname(__file__),'README.md')
3030

@@ -114,8 +114,8 @@ def _checkPythonHeaderFile():
114114
else:
115115
_printAndExit(_errormessage("noPythonDevel"))
116116

117-
118-
_getinstalledDb2Path()
117+
if sys.version_info >= (3, ):
118+
_getinstalledDb2Path()
119119

120120
if ('IBM_DB_HOME' in os.environ):
121121
ibm_db_home = os.getenv('IBM_DB_HOME')
@@ -454,9 +454,10 @@ def _setDllPath():
454454
else:
455455
ext_modules = _ext_modules(ibm_db_include, library, ibm_db_lib)
456456

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()
460461

461462
setup( name = PACKAGE,
462463
version = VERSION,

0 commit comments

Comments
 (0)