Skip to content

Commit

Permalink
misc: Update python versions used for pyvelox
Browse files Browse the repository at this point in the history
The current minimum is python 3.7. but that has passed EOL.
This change sets the minimum at the oldest supported version 3.9.
  • Loading branch information
czentgr committed Jan 23, 2025
1 parent 5e238f4 commit 481c35b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit 481c35b

Please sign in to comment.