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
mypy is complaining that locust 2.14.1 is "missing library stubs or py.typed marker". I checked and, indeed, the py.typed file is in 2.14.0 but not 2.14.1.
Expected behavior
Wheel contains locust/py.typed
Actual behavior
Wheel does not contain locust/py.typed
Steps to reproduce
$ python -m venv venv
$ . venv/bin/activate
$ python -m pip install locust==2.14.0
$ ls venv/lib/python3.*/site-packages/locust/py.typed
venv/.../py.typed
$ python -m pip install locust==2.14.1
$ ls venv/lib/python3.*/site-packages/locust/py.typed
ls: cannot access 'venv/.../py.typed': No such file or directory
The text was updated successfully, but these errors were encountered:
Describe the bug
mypy is complaining that locust 2.14.1 is "missing library stubs or py.typed marker". I checked and, indeed, the
py.typed
file is in 2.14.0 but not 2.14.1.Expected behavior
Wheel contains
locust/py.typed
Actual behavior
Wheel does not contain
locust/py.typed
Steps to reproduce
The text was updated successfully, but these errors were encountered: