diff --git a/pyproject.toml b/pyproject.toml index 0e5f1d20f..1f9d23fbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,9 +13,6 @@ testpaths = ["python/tests"] [tool.cibuildwheel] build-verbosity = 0 before-all = [ - "dnf install -y perl-CPAN", - "export PERL_MM_USE_DEFAULT=1", - "cpan -n Pod::Html", "yum install -y bzip2-devel libffi-devel zlib-devel wget python3-devel perl-IPC-Cmd perl-Test-Simple", "cd /usr/src && wget https://www.openssl.org/source/openssl-3.1.0.tar.gz", "tar -zxf openssl-3.1.0.tar.gz && rm openssl-3.1.0.tar.gz && cd /usr/src/openssl-3.1.0", @@ -33,15 +30,11 @@ before-build = [ "mkdir -p build/ukv", ] -skip = ["*musllinux*", "*i686*", "pp*", "cp36-*", "cp37-*", "cp38-*"] +skip = ["*musllinux*", "*i686*", "pp*", "cp36-*", "cp311-*"] -test-command = "pytest {project}/python/tests/" -test-requires = ["pandas"] -test-extras = ["test"] +# test-command = "pytest {project}/python/tests/" +# test-requires = ["pandas"] +# test-extras = ["test"] [tool.cibuildwheel.linux] -manylinux-x86_64-image = "manylinux_2_28" -manylinux-aarch64-image = "manylinux_2_28" - -archs = ["x86_64", "aarch64"] repair-wheel-command = "auditwheel repair --lib-sdir . -w {dest_dir} {wheel}" diff --git a/setup.py b/setup.py index 01b76ae5a..79882cca7 100644 --- a/setup.py +++ b/setup.py @@ -172,6 +172,8 @@ def run(self): 'Programming Language :: C++', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -195,5 +197,5 @@ def run(self): 'pyarrow>=10.0.0,<11' ], extras_require={'test': 'pytest'}, - python_requires='>=3.9', + python_requires='>=3.7', )