mirror of
https://github.com/apache/impala.git
synced 2025-12-22 19:35:22 -05:00
We are going to publish impala-shell release 4.1.0a1 on PyPi. This patch upgrades following three python libraries which are used for generating egg files when building impala-shell tarball. upgrade bitarray from 1.2.1 to 2.3.0 upgrade prettytable from 0.7.1 to 0.7.2 upgrade thrift_sasl from 0.4.2 to 0.4.3 Updates shell/packaging/requirements.txt for the versions of dependent Python libraries. Testing: - Ran core tests. - Built impala-shell package impala_shell-4.1.0a1.tar.gz, installed impala-shell package from local impala_shell-4.1.0a1.tar.gz, verified impala-shell was installed in ~/.local/lib/python2.7/site-packages. Verified the version of installed impala-shell and dependent Python libraries as expected. - Set IMPALA_SHELL_HOME as ~/.local/lib/python2.7/site-packages/ impala_shell, copied over egg files under installed impala-shell python package so we can run the end-to-end unit tests against the impala-shell installed with the package downloaded from PyPi. Passed end-to-end impala-shell unit tests. - Verified the impala-shell tarball generated by shell/make_shell_tarball.sh. Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a Reviewed-on: http://gerrit.cloudera.org:8080/17826 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
26 lines
881 B
Python
26 lines
881 B
Python
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
from prettytable import __version__ as version
|
|
|
|
setup(
|
|
name='prettytable',
|
|
version=version,
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.4',
|
|
'Programming Language :: Python :: 2.5',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Topic :: Text Processing'
|
|
],
|
|
license="BSD (3 clause)",
|
|
description='A simple Python library for easily displaying tabular data in a visually appealing ASCII table format',
|
|
author='Luke Maurits',
|
|
author_email='luke@maurits.id.au',
|
|
url='http://code.google.com/p/prettytable',
|
|
py_modules=['prettytable'],
|
|
test_suite = "prettytable_test"
|
|
)
|