Skip to content

Commit

Permalink
Pin version of setuptools to older one for our build system
Browse files Browse the repository at this point in the history
Since version 69.3.0 the names of the produced build artifacts
changes, but we prefer to keep the old names for compatibility.
  • Loading branch information
PhilippWendler committed Jun 19, 2024
1 parent 8e94a70 commit 57f5f40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
[build-system]
requires = [
# Require versions that support our license files
'setuptools >= 42.0.0',
# but produce the same names for artifacts as we always had.
'setuptools == 69.2.0',
'wheel >= 0.32.0',
]
build-backend = 'setuptools.build_meta'
Expand Down

1 comment on commit 57f5f40

@PhilippWendler
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This unfortunately breaks building on Python 3.7. But due to #986 we can just ignore this.

Please sign in to comment.