Skip to content

Commit

Permalink
Avoid incompatibility between setuptools >= 65.2 and EDM runtimes (#1722
Browse files Browse the repository at this point in the history
)

There's an incompatibility between setuptools version 65.2 and later and current EDM runtimes. Until that incompatibility is resolved, building Traits (with pip install .) in an EDM environment fails.

As a temporary workaround, we constrain the setuptools version in pyproject.toml.

Should fix #1721.
  • Loading branch information
mdickinson committed Sep 9, 2022
1 parent ca6a52a commit e18d44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ['setuptools', 'wheel']
requires = ['setuptools<65.2', 'wheel']
build-backend = 'setuptools.build_meta'

[tool.black]
Expand Down

0 comments on commit e18d44a

Please sign in to comment.