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
After installing the CMRESHandler with pip additional package is installed.
After executing pip install CMRESHandler==1.0.0 2 additional packages installed in site packages VENV/lib/python3.6/site-packages/
First is "cmreslogging" (the good one) and second "tests" with content ls VENV/lib/python3.6/site-packages/tests/ __init__.py __pycache__ test_cmreshandler.py test_cmresserializer.py
This "tests" site package breaks any project which has its own "tests" package.
Suggestion is to fix setup.py to avoid "tests" package to be installed.
Something like packages=['cmreslogging'] should help.
The text was updated successfully, but these errors were encountered:
After installing the CMRESHandler with pip additional package is installed.
After executing
pip install CMRESHandler==1.0.0
2 additional packages installed in site packages VENV/lib/python3.6/site-packages/First is "cmreslogging" (the good one) and second "tests" with content
ls VENV/lib/python3.6/site-packages/tests/ __init__.py __pycache__ test_cmreshandler.py test_cmresserializer.py
This "tests" site package breaks any project which has its own "tests" package.
Suggestion is to fix setup.py to avoid "tests" package to be installed.
Something like
packages=['cmreslogging']
should help.The text was updated successfully, but these errors were encountered: