Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
version = 69.0.3
version = 69.0.3+site
author = Python Packaging Authority
author_email = [email protected]
description = Easily download, build, install, upgrade, and uninstall Python packages
Expand Down
2 changes: 1 addition & 1 deletion setuptools/command/build_clib.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def build_libraries(self, libraries):
"'sources' must be present and must be "
"a list of source filenames" % lib_name
)
sources = sorted(list(sources))
sources = list(sources)

log.info("building '%s' library", lib_name)

Expand Down

0 comments on commit 68ab8d2

Please sign in to comment.