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 7a1b8cd commit 6d20c04Copy full SHA for 6d20c04
setup.py
@@ -76,7 +76,13 @@
76
# PEP440-compliant, and it always references the alibuild commit that
77
# aliBuild was built from.
78
use_scm_version={'write_to': 'alibuild_helpers/_version.py'},
79
- setup_requires=['setuptools_scm'],
+ setup_requires=[
80
+ # The 6.* series removed support for Python 2.7.
81
+ 'setuptools_scm<6.0.0' if sys.version_info < (3, 0) else
82
+ # The 7.* series removed support for Python 3.6.
83
+ 'setuptools_scm<7.0.0' if sys.version_info < (3, 7) else
84
+ 'setuptools_scm'
85
+ ],
86
87
# List run-time dependencies here. These will be installed by pip when
88
# your project is installed. For an analysis of "install_requires" vs pip's
0 commit comments