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 8b4c8a3 commit f699fd8Copy full SHA for f699fd8
setuptools/_static.py
@@ -140,7 +140,7 @@ class Dict(dict, Static):
140
_prevent_modification(Dict, _method, "`dict(value)`")
141
142
143
-class SpeficierSet(packaging.specifiers.SpecifierSet, Static):
+class SpecifierSet(packaging.specifiers.SpecifierSet, Static):
144
"""Not exactly a built-in type but useful for ``requires-python``"""
145
146
setuptools/config/setupcfg.py
@@ -657,7 +657,7 @@ def parsers(self):
657
'packages': self._parse_packages,
658
'entry_points': self._parse_file_in_root,
659
'py_modules': parse_list,
660
- 'python_requires': _static.SpeficierSet, # Core Metadata
+ 'python_requires': _static.SpecifierSet, # Core Metadata
661
'cmdclass': parse_cmdclass,
662
}
663
0 commit comments