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
I'd like to use other core api version like 2.0, I tried below code, but without luck:
2.0
from stashy.client import StashClient import stashy StashClient.core_api_version = '2.0' s= stashy.connect('http://git.example.com', 'admin', 'foobar') s.admin.groups.url()
s.admin.groups.url() still returns 1.0
s.admin.groups.url()
1.0
The text was updated successfully, but these errors were encountered:
I found the core_api_path is still api/1.0. So workaround is to override core_api_path instead of core_api_version
core_api_path
api/1.0
core_api_version
Sorry, something went wrong.
No branches or pull requests
I'd like to use other core api version like
2.0
,I tried below code, but without luck:
s.admin.groups.url()
still returns1.0
The text was updated successfully, but these errors were encountered: