Skip to content

Commit

Permalink
Specify Python 3.7 as minimal Python version (#18755)
Browse files Browse the repository at this point in the history
The cluster objects make use of dataclasses, which have been added with
Python 3.7. Bump minimal required version in the wheels metadata to what
is required today.
  • Loading branch information
agners authored and pull[bot] committed Jul 8, 2022
1 parent 002b0a5 commit 65a82df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/controller/python/build-chip-wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,11 @@ def finalize_options(self):
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=2.7",
python_requires=">=3.7",
packages=packages,
package_dir={
# By default, look in the tmp directory for packages/modules to be included.
Expand Down

0 comments on commit 65a82df

Please sign in to comment.