mirror of
https://github.com/apache/impala.git
synced 2025-12-22 11:28:09 -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>
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
import re
|
|
from distutils.core import setup, Extension
|
|
|
|
|
|
kwds = {}
|
|
try:
|
|
kwds['long_description'] = open('README.rst').read()
|
|
except IOError:
|
|
pass
|
|
|
|
# Read version from bitarray/bitarray.h
|
|
pat = re.compile(r'#define\s+BITARRAY_VERSION\s+"(\S+)"', re.M)
|
|
data = open('bitarray/bitarray.h').read()
|
|
kwds['version'] = pat.search(data).group(1)
|
|
|
|
|
|
setup(
|
|
name = "bitarray",
|
|
author = "Ilan Schnell",
|
|
author_email = "ilanschnell@gmail.com",
|
|
url = "https://github.com/ilanschnell/bitarray",
|
|
license = "PSF",
|
|
classifiers = [
|
|
"License :: OSI Approved :: Python Software Foundation License",
|
|
"Development Status :: 6 - Mature",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: C",
|
|
"Programming Language :: Python :: 2",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Topic :: Utilities",
|
|
],
|
|
description = "efficient arrays of booleans -- C extension",
|
|
packages = ["bitarray"],
|
|
package_data = {"bitarray": ["*.h", "*.pickle",
|
|
"py.typed", # see PEP 561
|
|
"*.pyi"]},
|
|
ext_modules = [Extension(name = "bitarray._bitarray",
|
|
sources = ["bitarray/_bitarray.c"]),
|
|
Extension(name = "bitarray._util",
|
|
sources = ["bitarray/_util.c"])],
|
|
**kwds
|
|
)
|