Skip to content

Commit

Permalink
chore(api,shared-data): Require Python >=3.10, not >=3.8 (#14867)
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring authored Apr 11, 2024
1 parent a81cc18 commit ee6ff25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ def get_version():
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
Expand Down Expand Up @@ -87,7 +85,7 @@ def read(*parts):

if __name__ == "__main__":
setup(
python_requires=">=3.8",
python_requires=">=3.10",
name=DISTNAME,
description=DESCRIPTION,
license=LICENSE,
Expand Down
4 changes: 1 addition & 3 deletions shared-data/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ def get_version():
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
Expand All @@ -151,7 +149,7 @@ def get_version():

if __name__ == "__main__":
setup(
python_requires=">=3.8",
python_requires=">=3.10",
name=DISTNAME,
description=DESCRIPTION,
license=LICENSE,
Expand Down

0 comments on commit ee6ff25

Please sign in to comment.