We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The installation instructions at the top of README.md suggest this installation command:
README.md
pip install "pycozo[embedded,requests,pandas]"
But when I run it on the command line, I get this warning:
C:\...\pycozo> pip install "pycozo[requests]" WARNING: pycozo 0.7.6 does not provide the extra 'requests'
This is because setup.py names the extra client instead of requests:
setup.py
client
requests
extras_require={ 'pandas': ['pandas', 'ipython'], 'embedded': ['cozo-embedded==' + VERSION], 'client': ['requests'] },
I can easily put together a pull request for this, but I'm unsure whether you'd prefer to rename the extra or adjust the documentation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The installation instructions at the top of
README.md
suggest this installation command:But when I run it on the command line, I get this warning:
This is because
setup.py
names the extraclient
instead ofrequests
:I can easily put together a pull request for this, but I'm unsure whether you'd prefer to rename the extra or adjust the documentation.
The text was updated successfully, but these errors were encountered: