Skip to content

Commit

Permalink
Fix spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Jan 8, 2025
1 parent 8b4c8a3 commit f699fd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setuptools/_static.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class Dict(dict, Static):
_prevent_modification(Dict, _method, "`dict(value)`")


class SpeficierSet(packaging.specifiers.SpecifierSet, Static):
class SpecifierSet(packaging.specifiers.SpecifierSet, Static):
"""Not exactly a built-in type but useful for ``requires-python``"""


Expand Down
2 changes: 1 addition & 1 deletion setuptools/config/setupcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ def parsers(self):
'packages': self._parse_packages,
'entry_points': self._parse_file_in_root,
'py_modules': parse_list,
'python_requires': _static.SpeficierSet, # Core Metadata
'python_requires': _static.SpecifierSet, # Core Metadata
'cmdclass': parse_cmdclass,
}

Expand Down

0 comments on commit f699fd8

Please sign in to comment.