You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the development version results in ModuleNotFoundError due to missing dependency on setuptools.
Release versions (at least latest 2.1.5) do not have this problem.
Since I have already fixed this issue, I will send a PR later.
Steps to reproduce
% rye init
% rye add pygrib --path /path/to/repo
% rye sync
% rye run python -c 'import pygrib'Traceback (most recent call last): File "<string>", line 1, in <module> File "/path/to/project/.venv/lib/python3.12/site-packages/pygrib/__init__.py", line 2, in <module> from ._pygrib import * File "src/pygrib/_pygrib.pyx", line 12, in init pygrib._pygribModuleNotFoundError: No module named 'pkg_resources'
The text was updated successfully, but these errors were encountered:
Using the development version results in
ModuleNotFoundError
due to missing dependency on setuptools.Release versions (at least latest 2.1.5) do not have this problem.
Since I have already fixed this issue, I will send a PR later.
Steps to reproduce
The text was updated successfully, but these errors were encountered: