-
Notifications
You must be signed in to change notification settings - Fork 152
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
pkg_resources usage in setup.py is incompatible with latest Setuptools 82.0.0 so cannot install from sdist or repository with build isolation.
Line 14 in a438a5b
| import pkg_resources |
To Reproduce
In virtualenv, can try installing PyPI sdist or git repository:
❯ pip install --no-binary :all: omegaconf
Collecting omegaconf
Downloading omegaconf-2.3.0.tar.gz (3.3 MB)
...
File "<string>", line 13, in <module>
ModuleNotFoundError: No module named 'pkg_resources'
[end of output]❯ pip install git+https://github.com/omry/omegaconf.git
Collecting git+https://github.com/omry/omegaconf.git
...
ModuleNotFoundError: No module named 'pkg_resources'
[end of output]Expected behavior
Successful installation.
This is needed in Homebrew where we do not use wheels. Seen as a dependency of bbot:
Additional context
- OmegaConf version: 2.3.0
- Python version: 3.14.3
- Operating system: macOS 26
- Please provide a minimal repro
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working