swapniljariwala opened a new issue #19433: URL: https://github.com/apache/superset/issues/19433
A clear and concise description of what the bug is. #### How to reproduce the bug ``` git clone [email protected]:your-username/superset.git cd superset python3 -m venv venv # setup a python3 virtualenv source venv/bin/activate # Install external dependencies pip install -e . ``` ### Expected results Normal installation ### Actual results Installation failing ```python ERROR: Could not find a version that satisfies the requirement sqloxide==0.1.15 (from apache-superset) (from versions: 0.1.0, 0.1.1) ERROR: No matching distribution found for sqloxide==0.1.15 ``` ### Environment No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 10 (buster) Release: 10 Codename: buster ### Additional context Probable issue: in `setup.py` ```python install_requires=[ .... "sqloxide==0.1.15", ] ``` The said version of sqloxide is not available on pypi -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
