Skip to content

Commit

Permalink
Remove "setuptools" as a build dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Dec 20, 2024
1 parent a2e9638 commit a1e9025
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build_system/targets/packaging/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, build_unit: BuildUnit, module: PythonPackageModule):
:param build_unit: The build unit from which the program should be run
:param module: The module, the program should be applied to
"""
super().__init__('build', '--no-isolation', '--wheel', module.root_directory)
super().__init__('build', '--wheel', module.root_directory)
self.print_arguments(True)
self.add_dependencies('wheel', 'setuptools')
self.add_dependencies('wheel')
self.set_build_unit(build_unit)
1 change: 0 additions & 1 deletion build_system/targets/packaging/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
build >= 1.2, < 1.3
setuptools
wheel >= 0.45, < 0.46

0 comments on commit a1e9025

Please sign in to comment.