Skip to content

Commit

Permalink
misc: Update python versions used for pyvelox (facebookincubator#12157)
Browse files Browse the repository at this point in the history
Summary:
The current minimum is python 3.7. but that has passed EOL. This change sets the minimum at the oldest supported version 3.9.

Pull Request resolved: facebookincubator#12157

Reviewed By: kgpai

Differential Revision: D68863807

Pulled By: bikramSingh91

fbshipit-source-id: 46cc43b4b418b3eb8c3681cd7548e5f4a3f68f13
  • Loading branch information
czentgr authored and facebook-github-bot committed Jan 31, 2025
1 parent 4bd1221 commit 256ed01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
- "scripts/setup-ubuntu.sh"
- "scripts/setup-helper-functions.sh"
- ".github/workflows/scheduled.yml"
- "setup.py"

push:
branches:
Expand Down
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 256ed01

Please sign in to comment.