Skip to content

Commit f1dcd81

Browse files
committed
setup: require Python 3.8+
1 parent 655b12e commit f1dcd81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def get_version():
7878
raise Exception("could not find version string")
7979

8080

81-
# TODO check for Python 3.8.
8281
setuptools.setup(
8382
name="oxidized_importer",
8483
version=get_version(),
@@ -87,6 +86,7 @@ def get_version():
8786
url="https://github.com/indygreg/PyOxidizer",
8887
description="Python importer implemented in Rust",
8988
license="MPL 2.0",
89+
python_requires=">=3.8",
9090
classifiers=["Intended Audience :: Developers", "Programming Language :: Rust",],
9191
ext_modules=[RustExtension("oxidized_importer")],
9292
cmdclass={"build_ext": RustBuildExt},

0 commit comments

Comments
 (0)