We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2489ff1 commit 8d62a76Copy full SHA for 8d62a76
scripts/requirements-test.txt
@@ -1,5 +1,6 @@
1
# Keep in sync with extra_require.tests from setup.py
2
-filecheck>=1.0.0
+filecheck>=1.0.0; python_version >= '3.10'
3
+filecheck; python_version < '3.10'
4
lit
5
numpy
6
pytest
setup.py
@@ -804,7 +804,8 @@ def get_git_version_suffix():
804
description="A language and compiler for custom Deep Learning operations",
805
long_description="",
806
install_requires=[
807
- "filecheck>=1.0.0",
+ "filecheck>=1.0.0; python_version >= '3.10'",
808
+ "filecheck; python_version < '3.10'",
809
"setuptools>=78.1.0",
810
"importlib-metadata; python_version < '3.10'",
811
],
0 commit comments