diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index ea83d9e8b0e0..1ad3b5435009 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -25,6 +25,7 @@ on: - "scripts/setup-ubuntu.sh" - "scripts/setup-helper-functions.sh" - ".github/workflows/scheduled.yml" + - "setup.py" push: branches: diff --git a/setup.py b/setup.py index 40f8ae9645bf..e93f3ded0e7c 100644 --- a/setup.py +++ b/setup.py @@ -185,16 +185,17 @@ def build_extension(self, ext): "pyarrow", ], extras_require={"tests": ["pyarrow"]}, - python_requires=">=3.7", + python_requires=">=3.9", classifiers=[ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Operating System :: POSIX :: Linux", "Programming Language :: C++", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", ], packages=find_packages() + find_packages(where="./test"),