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
{{ message }}
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
Describe the current behavior
Running python setup.py install in a virtual environment fails to install. This is due to errors about install pyrl and version problems with pillow and chardet. After fixing the aforementioned issues, tests fail because of missing pytest dependency.
Describe the expected behavior
Creating a virtual environment and running python setup.py install should work out of the box with no errors. Tests should also work without getting an issue about missing dependency.
System Information
Describe the current behavior
Running
python setup.py install
in a virtual environment fails to install. This is due to errors about install pyrl and version problems with pillow and chardet. After fixing the aforementioned issues, tests fail because of missing pytest dependency.Describe the expected behavior
Creating a virtual environment and running
python setup.py install
should work out of the box with no errors. Tests should also work without getting an issue about missing dependency.Standalone code to reproduce the issue
virtualenv --clear --python=python3.7 venv source venv/bin/activate python setup.py install
Below is my fix for the setup.py
The text was updated successfully, but these errors were encountered: