-
Notifications
You must be signed in to change notification settings - Fork 32
"uritemplate.py" conflicts with "uritemplate" package #14
New issue
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
Comments
It's a known issue. This library has been made API compatible with the |
Thanks for the reply. I didn't realize this library was API-compatible with the other library. +1 to a merge of the projects--that would definitely avoid a lot of confusion in the future. Best of luck! |
Is there an established way to make sure I have a project that relies on both It's a hack and it works, but it's fragile. Not sure if I'm missing a better way. |
And while I'm at it, thank you for |
You're quite welcome @jklukas. I'm thinking that this has caused enough pain for enough people that I might just vendor uritemplate.py into github3.py at this point. Which version(s) are you relying on? |
I'm using:
|
Also note that Simple has had a job running nightly in prod for > 6 months now that uses There's a screenshot of one of the dashboards fed by this info in https://www.simple.com/engineering/building-analytics-at-simple |
There is a package called uritemplate on the PyPI whose name conflicts with this package. Both packages require you to import
uritemplate
.I ran into this issue because our project requires both
github3.py
(which depends onuritemplate.py
) andgoogle-python-api-client
(which depends onuritemplate
), which led to the following error:I'm not sure what the best solution for this would be. Just thought I'd report it for record-keeping and to see if anyone had any workarounds.
The text was updated successfully, but these errors were encountered: