| Bug #68614 | Issue with python 2.6 | ||
|---|---|---|---|
| Submitted: | 8 Mar 2013 11:17 | Modified: | 6 Aug 2013 6:02 |
| Reporter: | Remi Collet | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Utilities | Severity: | S3 (Non-critical) |
| Version: | 1.2.1 | OS: | Linux (Enterprise Linux 6) |
| Assigned to: | CPU Architecture: | Any | |
[8 Mar 2013 11:17]
Remi Collet
[6 Jun 2013 7:08]
MySQL Verification Team
Hello Remi, Thank you for the report. Verified as described. Thanks, Umesh
[6 Jun 2013 7:15]
MySQL Verification Team
Note: 1.3.1
This version indeed check Python version at the time of setup
cat more setup.py
..
# Check required Python version
if sys.version_info[0:2] not in [(2, 6), (2, 7)]:
log.error("MySQL Utilities requires Python v2.6 or v2.7")
sys.exit(1)
